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

stefano subversion
Sat Feb 6 01:05:38 CET 2010


Author: stefano
Date: Sat Feb  6 01:05:38 2010
New Revision: 21649

Log:
Remove unused variable ref_clock, fix the warning:
ffplay.c: In function ?compute_frame_delay?:
ffplay.c:1064: warning: unused variable ?ref_clock?

Modified:
   trunk/ffplay.c

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	Sat Feb  6 00:24:08 2010	(r21648)
+++ trunk/ffplay.c	Sat Feb  6 01:05:38 2010	(r21649)
@@ -1061,7 +1061,7 @@ static void stream_pause(VideoState *is)
 
 static double compute_frame_delay(double frame_current_pts, VideoState *is)
 {
-    double actual_delay, delay, sync_threshold, ref_clock, diff;
+    double actual_delay, delay, sync_threshold, diff;
 
     /* compute nominal delay */
     delay = frame_current_pts - is->frame_last_pts;



More information about the ffmpeg-cvslog mailing list