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

@ -2310,7 +2310,7 @@ static int rtmp_parse_result(URLContext *s, RTMPContext *rt, RTMPPacket *pkt)
switch (pkt->type) {
case RTMP_PT_BYTES_READ:
av_dlog(s, "received bytes read report\n");
av_log(s, AV_LOG_TRACE, "received bytes read report\n");
break;
case RTMP_PT_CHUNK_SIZE:
if ((ret = handle_chunk_size(s, pkt)) < 0)