[FFmpeg-cvslog] r16123 - trunk/ffplay.c

michael subversion
Sun Dec 14 15:45:58 CET 2008


Author: michael
Date: Sun Dec 14 15:45:57 2008
New Revision: 16123

Log:
Fix files with fps between 0.5 and 0.1.
Fixes issue749


Modified:
   trunk/ffplay.c

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	(original)
+++ trunk/ffplay.c	Sun Dec 14 15:45:57 2008
@@ -1024,7 +1024,7 @@ static void video_refresh_timer(void *op
 
             /* 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;
             }




More information about the ffmpeg-cvslog mailing list