mirror of
https://github.com/mpv-player/mpv
synced 2025-04-04 23:40:47 +00:00
vo: remove frame timing check from vo_still_displaying()
This timing dependency does not guarantee that we will wake up in the future, depending on processing times.
This commit is contained in:
parent
44c398c3e1
commit
ef11d31c3a
@ -1182,16 +1182,9 @@ void vo_seek_reset(struct vo *vo)
|
||||
bool vo_still_displaying(struct vo *vo)
|
||||
{
|
||||
struct vo_internal *in = vo->in;
|
||||
pthread_mutex_lock(&vo->in->lock);
|
||||
int64_t now = mp_time_us();
|
||||
int64_t frame_end = 0;
|
||||
if (in->current_frame) {
|
||||
frame_end = in->current_frame->pts + MPMAX(in->current_frame->duration, 0);
|
||||
if (in->current_frame->display_synced)
|
||||
frame_end = in->current_frame->num_vsyncs > 0 ? INT64_MAX : 0;
|
||||
}
|
||||
bool working = now < frame_end || in->rendering || in->frame_queued;
|
||||
pthread_mutex_unlock(&vo->in->lock);
|
||||
pthread_mutex_lock(&in->lock);
|
||||
bool working = in->rendering || in->frame_queued;
|
||||
pthread_mutex_unlock(&in->lock);
|
||||
return working && in->hasframe;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user