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

michael subversion
Mon Feb 1 13:31:28 CET 2010


Author: michael
Date: Mon Feb  1 13:31:28 2010
New Revision: 21592

Log:
Reset frame_last_delay to 0.
This avoids a few ms delay for the first frame after a seek in theory.

Modified:
   trunk/ffplay.c

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	Mon Feb  1 13:30:14 2010	(r21591)
+++ trunk/ffplay.c	Mon Feb  1 13:31:28 2010	(r21592)
@@ -1363,7 +1363,7 @@ static int video_thread(void *arg)
             is->last_dts_for_fault_detection=
             is->last_pts_for_fault_detection= INT64_MIN;
             is->frame_last_pts= AV_NOPTS_VALUE;
-            is->frame_last_delay = 40e-3;
+            is->frame_last_delay = 0;
 
             continue;
         }



More information about the ffmpeg-cvslog mailing list