diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-06 00:05:38 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-06 00:05:38 +0000 |
commit | 570da52bacbf778700adf83348a87b8a406d41df (patch) | |
tree | e8e37721bf37576ba17109072274baecceb821a8 | |
parent | 62bb4ca19956430ae3407a4926c464c7bcbb9691 (diff) | |
download | ffmpeg-570da52bacbf778700adf83348a87b8a406d41df.tar.gz |
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
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |