Commit 31dddf7d authored by stefano's avatar stefano

Remove unused variable ref_clock, fix the warning:

ffplay.c: In function ‘compute_frame_delay’:
ffplay.c:1064: warning: unused variable ‘ref_clock’


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21649 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 348e23e6
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment