summaryrefslogtreecommitdiffstats
path: root/video/out/wayland_common.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-11-02 16:03:03 -0500
committerDudemanguy <random342@airmail.cc>2023-11-06 15:44:45 +0000
commitf629d7a2ff67902c2ac5ed1a91dd7ade5164e723 (patch)
tree7c696f007b987765df5dc4af445a5328ddbe2055 /video/out/wayland_common.c
parent261f51b475e17459274b24ae8a0515d7ac969cd0 (diff)
downloadmpv-f629d7a2ff67902c2ac5ed1a91dd7ade5164e723.tar.bz2
mpv-f629d7a2ff67902c2ac5ed1a91dd7ade5164e723.tar.xz
present_sync: rename function to present_sync_update_values
This had to have been a mistake. It was just confusing.
Diffstat (limited to 'video/out/wayland_common.c')
-rw-r--r--video/out/wayland_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index e0f8cde208..6fb3a0a339 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -1159,7 +1159,7 @@ static void feedback_presented(void *data, struct wp_presentation_feedback *fbac
int64_t sec = (uint64_t) tv_sec_lo + ((uint64_t) tv_sec_hi << 32);
int64_t ust = MP_TIME_S_TO_NS(sec) + (uint64_t) tv_nsec;
int64_t msc = (uint64_t) seq_lo + ((uint64_t) seq_hi << 32);
- present_update_sync_values(wl->present, ust, msc);
+ present_sync_update_values(wl->present, ust, msc);
}
static void feedback_discarded(void *data, struct wp_presentation_feedback *fback)