summaryrefslogtreecommitdiffstats
path: root/video/out/wayland_common.h
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2020-08-16 16:29:00 -0500
committerDudemanguy <random342@airmail.cc>2020-08-16 16:29:00 -0500
commit486516f723d3159c82c75b15a2eefed366542b77 (patch)
treef483150f77212987b1fa166814dc42e4f8e330ec /video/out/wayland_common.h
parente9cde72536b60fc1bad304aa02a4638f63de258b (diff)
downloadmpv-486516f723d3159c82c75b15a2eefed366542b77.tar.bz2
mpv-486516f723d3159c82c75b15a2eefed366542b77.tar.xz
wayland: don't rely on presentation discarded
When using presentation time, we have to be sure to update the ust when no presentation events are received to make sure playback is still smooth and in sync. Part of the recent presentation time refactor was to use the presentation discarded event to signal that the window is hidden. Evidently, this doesn't work the same everywhere for whatever reason (drivers?? hardware??) and at least one user experienced issues with playback getting out of sync since (presumably) the discarded event didn't occur when hiding the window. Instead, let's just go back to the old way of checking if the last_ust is equal to the ust value of the last member in the wayland sync queue. Fixes #8010.
Diffstat (limited to 'video/out/wayland_common.h')
-rw-r--r--video/out/wayland_common.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/video/out/wayland_common.h b/video/out/wayland_common.h
index 7bfe0e85e0..895db3393d 100644
--- a/video/out/wayland_common.h
+++ b/video/out/wayland_common.h
@@ -107,7 +107,6 @@ struct vo_wayland_state {
/* Presentation Feedback */
struct vo_wayland_sync *sync;
int sync_size;
- bool presentation_discarded;
int64_t user_sbc;
int64_t last_ust;
int64_t last_msc;