mirror of https://github.com/mpv-player/mpv
vo: remove suspicious line
pts can never be 0 or negative. If there is no frame, some code below catches this case by checking hasframe.
This commit is contained in:
parent
9251fa125f
commit
372b85b9d2
|
@ -604,7 +604,7 @@ static bool render_frame(struct vo *vo)
|
|||
int64_t duration = in->frame_duration;
|
||||
struct mp_image *img = in->frame_queued;
|
||||
|
||||
if (!img && (!in->vsync_timed || in->paused || pts <= 0))
|
||||
if (!img && (!in->vsync_timed || in->paused))
|
||||
goto nothing_done;
|
||||
|
||||
if (in->vsync_timed && !in->hasframe)
|
||||
|
|
Loading…
Reference in New Issue