diff options
author | Michael Niedermayer | 2008-12-14 14:45:57 +0000 |
---|---|---|
committer | Michael Niedermayer | 2008-12-14 14:45:57 +0000 |
commit | 3a3ee96cd131366ff76c3133956e49a1eccfd6a2 (patch) | |
tree | d2f02a921480cdb267c34cfb4ce43f8393df0979 /ffplay.c | |
parent | 492322fcccf964f7c9359155fc7810d15f2efc77 (diff) |
Fix files with fps between 0.5 and 0.1.
Fixes issue749
Originally committed as revision 16123 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1024,7 +1024,7 @@ static void video_refresh_timer(void *opaque) /* compute nominal delay */ delay = vp->pts - is->frame_last_pts; - if (delay <= 0 || delay >= 2.0) { + if (delay <= 0 || delay >= 10.0) { /* if incorrect delay, use previous one */ delay = is->frame_last_delay; } |