diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-21 12:41:40 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-01 10:24:28 +0200 |
commit | 1218777ffd152287244349d4ff9e1cbc84fa2c54 (patch) | |
tree | e2c8f97065c7ca67151019d6e1dd84a6d3bdd7fe /libavcodec/vc1dec.c | |
parent | 9c6cf7f2c9d326281e3eefa67673aabaa9d69940 (diff) | |
download | ffmpeg-1218777ffd152287244349d4ff9e1cbc84fa2c54.tar.gz |
avcodec: Convert some commented-out printf/av_log instances to av_dlog
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index 986e4adc5e..310172a84d 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -5622,7 +5622,8 @@ static int vc1_decode_frame(AVCodecContext *avctx, void *data, s->linesize >>= 1; s->uvlinesize >>= 1; } -//av_log(s->avctx, AV_LOG_INFO, "Consumed %i/%i bits\n", get_bits_count(&s->gb), s->gb.size_in_bits); + av_dlog(s->avctx, "Consumed %i/%i bits\n", + get_bits_count(&s->gb), s->gb.size_in_bits); // if (get_bits_count(&s->gb) > buf_size * 8) // return -1; ff_er_frame_end(s); |