summaryrefslogtreecommitdiff
path: root/libavcodec/flashsv.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-06-30 15:03:45 +0200
committerDiego Biurrun <diego@biurrun.de>2011-07-06 13:21:26 +0200
commit9b576e4d124474272c2abeb322df3fd5602f00b8 (patch)
treee40ef2039a48fc387d97b5919c43aa6bfb91902e /libavcodec/flashsv.c
parent39884ab0356677c1673da1ebc3d906137cdeb8d2 (diff)
flashsv: convert a debug av_log into av_dlog
Diffstat (limited to 'libavcodec/flashsv.c')
-rw-r--r--libavcodec/flashsv.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c
index 37bff0a9ea..e3ddb74cee 100644
--- a/libavcodec/flashsv.c
+++ b/libavcodec/flashsv.c
@@ -153,10 +153,9 @@ static int flashsv_decode_frame(AVCodecContext *avctx, void *data,
return AVERROR_INVALIDDATA;
}
- av_log(avctx, AV_LOG_DEBUG,
- "image: %dx%d block: %dx%d num: %dx%d part: %dx%d\n",
- s->image_width, s->image_height, s->block_width, s->block_height,
- h_blocks, v_blocks, h_part, v_part);
+ av_dlog(avctx, "image: %dx%d block: %dx%d num: %dx%d part: %dx%d\n",
+ s->image_width, s->image_height, s->block_width, s->block_height,
+ h_blocks, v_blocks, h_part, v_part);
s->frame.reference = 1;
s->frame.buffer_hints = FF_BUFFER_HINTS_VALID |