summaryrefslogtreecommitdiff
path: root/libavcodec/ivi_common.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-06-02 22:55:51 +0200
committerDiego Biurrun <diego@biurrun.de>2011-06-03 00:44:03 +0200
commit2366462429d9cc7ed9715c037f204fcefeff8ea4 (patch)
treee216d1cb8646b081d98d4eb71ffcdfbf422ef9a6 /libavcodec/ivi_common.c
parentdf96f22d8f2b0b40d5511cde1c4cbb4a6f824c32 (diff)
Replace #ifdef + av_log() combinations by av_dlog().
Diffstat (limited to 'libavcodec/ivi_common.c')
-rw-r--r--libavcodec/ivi_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ivi_common.c b/libavcodec/ivi_common.c
index ac4c68e05f..2b684e8b9e 100644
--- a/libavcodec/ivi_common.c
+++ b/libavcodec/ivi_common.c
@@ -418,8 +418,8 @@ int ff_ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile)
break;
pos = band->scan[scan_pos];
- if (IVI_DEBUG && !val)
- av_log(NULL, AV_LOG_ERROR, "Val = 0 encountered!\n");
+ if (!val)
+ av_dlog(NULL, "Val = 0 encountered!\n");
q = (base_tab[pos] * quant) >> 9;
if (q > 1)