1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-13 02:16:40 +00:00
mpv/DOCS
xylosper 5b4d587ede vo_opengl_cb: introduce frame queue
The previous implementation of opengl-cb kept only latest flipped frame.
This can cause massive frame drops because rendering is done asynchronously
and only the latest frame can be rendered.

This commit introduces frame queue and releated options to opengl-cb.

frame-queue-size: the maximum size of frame queue (1-100, default: 1)
frame-drop-mode: behavior when frame queue is full (pop, clear, default: pop)

The frame queue holds delayed frames and drops frames if the frame queue is
overflowed with next method:

'pop' mode: drops all the oldest frames overflown.
'clear' mode: drops all frames in queue and clear it.

With default options(frame-queue-size=1:frame-drop-mode=pop),
opengl-cb behaves in the same way as previous implementation effectively.

For frame-queue-size > 1, opengl-cb tries to calls update() without waiting
next flip_page() in order to consume queued frames.

Signed-off-by: wm4 <wm4@nowhere>
2015-01-08 18:50:25 +01:00
..
client_api_examples DOCS/client_api_examples: add an alternative qml example 2015-01-08 02:40:30 +01:00
man vo_opengl_cb: introduce frame queue 2015-01-08 18:50:25 +01:00
client-api-changes.rst client API: add function to create new mpv_handles from existing ones 2014-12-31 20:50:06 +01:00
compile-windows.md DOCS: add instructions for building with MSYS2 2015-01-08 19:29:55 +11:00
contribute.md
edl-mpv.rst
encoding.rst
release-policy.md
tech-overview.txt
waf-buildsystem.rst