diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-21 12:40:41 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1 (patch) | |
tree | b006de89e1eed325843629e86d659f20e377f6bf /libavformat/mxfenc.c | |
parent | 11d4e92ed929f092c6ecc8775b0ba340ccd7179d (diff) | |
download | ffmpeg-72eaba5e4ffeba16ec0a7ee7a042b3205840b1d1.tar.gz |
avformat: Convert some commented-out printf/av_log instances to av_dlog
Diffstat (limited to 'libavformat/mxfenc.c')
-rw-r--r-- | libavformat/mxfenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 3d32be354a..995e411273 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -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; |