1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-24 18:31:50 +02:00

flashsv: convert a debug av_log into av_dlog

This commit is contained in:
Diego Biurrun 2011-06-30 15:03:45 +02:00
parent 39884ab035
commit 9b576e4d12

View File

@ -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 |