From 570da52bacbf778700adf83348a87b8a406d41df Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 6 Feb 2010 00:05:38 +0000 Subject: [PATCH] =?utf8?q?Remove=20unused=20variable=20ref=5Fclock,=20fix?= =?utf8?q?=20the=20warning:=20ffplay.c:=20In=20function=20=E2=80=98compute?= =?utf8?q?=5Fframe=5Fdelay=E2=80=99:=20ffplay.c:1064:=20warning:=20unused?= =?utf8?q?=20variable=20=E2=80=98ref=5Fclock=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 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 724a17b..67c77ba 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; -- 2.7.4