mirror of
https://github.com/mpv-player/mpv
synced 2024-12-28 18:12:22 +00:00
video: enable framedropping by default
This commit is contained in:
parent
5b64f5ad35
commit
761037dcc6
@ -438,11 +438,11 @@ Video
|
|||||||
The argument selects the drop methods, and can be one of the following:
|
The argument selects the drop methods, and can be one of the following:
|
||||||
|
|
||||||
<no>
|
<no>
|
||||||
Disable any framedropping (default).
|
Disable any framedropping.
|
||||||
<vo>
|
<vo>
|
||||||
Drop late frames on video output. This still decodes and filters all
|
Drop late frames on video output (default). This still decodes and
|
||||||
frames, but doesn't render them on the VO. It tries to query the
|
filters all frames, but doesn't render them on the VO. It tries to query
|
||||||
display FPS (X11 only, not correct on multi-monitor systems), or
|
the display FPS (X11 only, not correct on multi-monitor systems), or
|
||||||
assumes infinite display FPS if that fails. Drops are indicated in
|
assumes infinite display FPS if that fails. Drops are indicated in
|
||||||
the terminal status line as ``D: `` field. If the decoder is too slow,
|
the terminal status line as ``D: `` field. If the decoder is too slow,
|
||||||
in theory all frames would have to be dropped (because all frames are
|
in theory all frames would have to be dropped (because all frames are
|
||||||
|
@ -609,6 +609,7 @@ const struct MPOpts mp_default_opts = {
|
|||||||
.correct_pts = 1,
|
.correct_pts = 1,
|
||||||
.user_pts_assoc_mode = 1,
|
.user_pts_assoc_mode = 1,
|
||||||
.initial_audio_sync = 1,
|
.initial_audio_sync = 1,
|
||||||
|
.frame_dropping = 1,
|
||||||
.term_osd = 2,
|
.term_osd = 2,
|
||||||
.term_osd_bar_chars = "[-+-]",
|
.term_osd_bar_chars = "[-+-]",
|
||||||
.consolecontrols = 1,
|
.consolecontrols = 1,
|
||||||
|
Loading…
Reference in New Issue
Block a user