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:
wm4 2015-05-15 13:40:43 +02:00
parent 9251fa125f
commit 372b85b9d2
1 changed files with 1 additions and 1 deletions

View File

@ -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)