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/imc.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/imc.c')
-rw-r--r-- | libavcodec/imc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imc.c b/libavcodec/imc.c index 262f4f75cc..8e6b5bfb31 100644 --- a/libavcodec/imc.c +++ b/libavcodec/imc.c @@ -742,7 +742,7 @@ static int imc_get_coeffs(IMCContext *q, IMCChannel *chctx) cw = 0; if (get_bits_count(&q->gb) + cw_len > 512) { - // av_log(NULL, 0, "Band %i coeff %i cw_len %i\n", i, j, cw_len); + av_dlog(NULL, "Band %i coeff %i cw_len %i\n", i, j, cw_len); return AVERROR_INVALIDDATA; } |