Replace av_dlog with normal av_log at trace level

This applies to every library where performance is not critical.
This commit is contained in:
Vittorio Giovara
2015-03-16 08:57:35 +00:00
parent c253340ae6
commit 1a3eb042c7
44 changed files with 366 additions and 365 deletions

View File

@@ -199,7 +199,7 @@ static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt)
/* wait based on the frame rate */
curtime = av_gettime();
delay = fbdev->time_frame - curtime;
av_dlog(avctx,
av_log(avctx, AV_LOG_TRACE,
"time_frame:%"PRId64" curtime:%"PRId64" delay:%"PRId64"\n",
fbdev->time_frame, curtime, delay);
if (delay > 0) {