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

@@ -355,9 +355,9 @@ int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, URLContext *fd,
len = avio_close_dyn_buf(pb, &buf);
if ((len > 0) && buf) {
int av_unused result;
av_dlog(s->ic, "sending %d bytes of RR\n", len);
av_log(s->ic, AV_LOG_TRACE, "sending %d bytes of RR\n", len);
result = ffurl_write(fd, buf, len);
av_dlog(s->ic, "result from ffurl_write: %d\n", result);
av_log(s->ic, AV_LOG_TRACE, "result from ffurl_write: %d\n", result);
av_free(buf);
}
return 0;