summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-12-14 14:45:57 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-12-14 14:45:57 +0000
commit3a3ee96cd131366ff76c3133956e49a1eccfd6a2 (patch)
treed2f02a921480cdb267c34cfb4ce43f8393df0979 /ffplay.c
parent492322fcccf964f7c9359155fc7810d15f2efc77 (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index f7ff48d2e8..a802cc1483 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -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;
}