[FFmpeg-cvslog] flashsv: convert a debug av_log into av_dlog
Diego Biurrun
git at videolan.org
Thu Jul 7 00:15:07 CEST 2011
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Jun 30 15:03:45 2011 +0200| [9b576e4d124474272c2abeb322df3fd5602f00b8] | committer: Diego Biurrun
flashsv: convert a debug av_log into av_dlog
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9b576e4d124474272c2abeb322df3fd5602f00b8
---
libavcodec/flashsv.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c
index 37bff0a..e3ddb74 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 |
More information about the ffmpeg-cvslog
mailing list