summaryrefslogtreecommitdiff
path: root/libavcodec/ivi.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-03-16 08:57:36 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-04-19 12:41:59 +0100
commit6a85dfc830f51f1f5c2d36d4182d265c1ea3ba25 (patch)
treee7c2aefd4766229b73aef86bf3312563f70a658c /libavcodec/ivi.c
parent1a3eb042c704dea190c644def5b32c9cee8832b8 (diff)
lavc: Replace av_dlog and tprintf with internal macros
Diffstat (limited to 'libavcodec/ivi.c')
-rw-r--r--libavcodec/ivi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ivi.c b/libavcodec/ivi.c
index ce1e5aae28..6086e2e681 100644
--- a/libavcodec/ivi.c
+++ b/libavcodec/ivi.c
@@ -563,7 +563,7 @@ static int ivi_decode_coded_blocks(GetBitContext *gb, IVIBandDesc *band,
pos = band->scan[scan_pos];
if (!val)
- av_dlog(avctx, "Val = 0 encountered!\n");
+ ff_dlog(avctx, "Val = 0 encountered!\n");
q = (base_tab[pos] * quant) >> 9;
if (q > 1)
@@ -964,7 +964,7 @@ static int decode_band(IVI45DecContext *ctx,
(ctx->planes[0].bands[0].mb_size >> 3) - (band->mb_size >> 3));
if (result < 0)
break;
- av_dlog(avctx, "Empty tile encountered!\n");
+ ff_dlog(avctx, "Empty tile encountered!\n");
} else {
tile->data_size = ivi_dec_tile_data_size(&ctx->gb);
if (!tile->data_size) {