mirror of https://github.com/mpv-player/mpv
vo: fix unpausing with display-sync
Currently, vo.c will always continue to render the currently queued frame, which sets last_flip, which in turn confuses vo_get_delay(), which in turn will show a bogus A/V desync message on unpause. So just reset it again on unpause.
This commit is contained in:
parent
cf3b34f17a
commit
c7d82dd25c
|
@ -868,11 +868,9 @@ void vo_set_paused(struct vo *vo, bool paused)
|
|||
pthread_mutex_lock(&in->lock);
|
||||
if (in->paused != paused) {
|
||||
in->paused = paused;
|
||||
if (in->paused) {
|
||||
if (in->dropped_frame)
|
||||
in->request_redraw = true;
|
||||
in->last_flip = 0;
|
||||
}
|
||||
if (in->paused && in->dropped_frame)
|
||||
in->request_redraw = true;
|
||||
in->last_flip = 0;
|
||||
}
|
||||
pthread_mutex_unlock(&in->lock);
|
||||
vo_control(vo, paused ? VOCTRL_PAUSE : VOCTRL_RESUME, NULL);
|
||||
|
|
Loading…
Reference in New Issue