ffplay: Fix non-compiling debug printf and replace it by av_dlog.
This commit is contained in:
parent
4de83b7b6d
commit
8543f0f923
7
ffplay.c
7
ffplay.c
@ -1062,10 +1062,9 @@ static double compute_target_time(double frame_current_pts, VideoState *is)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
is->frame_timer += delay;
|
is->frame_timer += delay;
|
||||||
#if defined(DEBUG_SYNC)
|
|
||||||
printf("video: delay=%0.3f actual_delay=%0.3f pts=%0.3f A-V=%f\n",
|
av_dlog(NULL, "video: delay=%0.3f pts=%0.3f A-V=%f\n",
|
||||||
delay, actual_delay, frame_current_pts, -diff);
|
delay, frame_current_pts, -diff);
|
||||||
#endif
|
|
||||||
|
|
||||||
return is->frame_timer;
|
return is->frame_timer;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user