avformat: Convert some commented-out printf/av_log instances to av_dlog

This commit is contained in:
Diego Biurrun
2012-08-21 12:40:41 +02:00
parent 11d4e92ed9
commit 72eaba5e4f
9 changed files with 61 additions and 29 deletions

View File

@@ -1856,7 +1856,7 @@ static int mxf_interleave_get_packet(AVFormatContext *s, AVPacket *out, AVPacket
}
*out = pktl->pkt;
//av_log(s, AV_LOG_DEBUG, "out st:%d dts:%lld\n", (*out).stream_index, (*out).dts);
av_dlog(s, "out st:%d dts:%lld\n", (*out).stream_index, (*out).dts);
s->packet_buffer = pktl->next;
if(s->streams[pktl->pkt.stream_index]->last_in_packet_buffer == pktl)
s->streams[pktl->pkt.stream_index]->last_in_packet_buffer= NULL;