mirror of
https://github.com/mpv-player/mpv
synced 2025-03-19 18:05:21 +00:00
stats: add support for video-sync=display
This commit is contained in:
parent
f22361727e
commit
47016bf45e
@ -112,6 +112,7 @@ function add_video(s)
|
||||
append_property(s, sec, "avsync", {prefix="A-V:"})
|
||||
if append_property(s, sec, "drop-frame-count", {prefix="Dropped:"}) then
|
||||
append_property(s, sec, "vo-drop-frame-count", {prefix="VO:", nl=""})
|
||||
append_property(s, sec, "vo-missed-frame-count", {prefix="Missed:", nl=""})
|
||||
end
|
||||
if append_property(s, sec, "fps", {prefix="FPS:", suffix=" (specified)"}) then
|
||||
append_property(s, sec, "estimated-vf-fps",
|
||||
@ -120,6 +121,10 @@ function add_video(s)
|
||||
append_property(s, sec, "estimated-vf-fps",
|
||||
{prefix="FPS:", suffix=" (estimated)"})
|
||||
end
|
||||
if append_property(s, sec, "video-speed-correction", {prefix="DS:"}) then
|
||||
append_property(s, sec, "audio-speed-correction",
|
||||
{prefix="/", nl="", indent=" ", prefix_sep=" ", no_prefix_markup=true})
|
||||
end
|
||||
if append_property(s, sec, "video-params/w", {prefix="Native Resolution:"}) then
|
||||
append_property(s, sec, "video-params/h",
|
||||
{prefix="x", nl="", indent=" ", prefix_sep=" ", no_prefix_markup=true})
|
||||
|
Loading…
Reference in New Issue
Block a user