summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-02-06 00:05:38 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-02-06 00:05:38 +0000
commit570da52bacbf778700adf83348a87b8a406d41df (patch)
treee8e37721bf37576ba17109072274baecceb821a8 /ffplay.c
parent62bb4ca19956430ae3407a4926c464c7bcbb9691 (diff)
Remove unused variable ref_clock, fix the warning:
ffplay.c: In function ‘compute_frame_delay’: ffplay.c:1064: warning: unused variable ‘ref_clock’ Originally committed as revision 21649 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
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;