mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-27 10:51:31 +08:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user