From 570da52bacbf778700adf83348a87b8a406d41df Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 6 Feb 2010 00:05:38 +0000 Subject: Remove unused variable ref_clock, fix the warning: ffplay.c: In function ‘compute_frame_delay’: ffplay.c:1064: warning: unused variable ‘ref_clock’ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 21649 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffplay.c b/ffplay.c index 724a17b50e..67c77ba4f3 100644 --- a/ffplay.c +++ b/ffplay.c @@ -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; -- cgit v1.2.3