Commit 1b4f2fb1 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/snowdec: also print qbias and mvscale in debug output

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2fb388fc
......@@ -446,8 +446,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
//keyframe flag duplication mess FIXME
if(avctx->debug&FF_DEBUG_PICT_INFO)
av_log(avctx, AV_LOG_ERROR,
"keyframe:%d qlog:%d decomposition_type:%d decomposition_count:%d\n",
s->keyframe, s->qlog,
"keyframe:%d qlog:%d qbias: %d mvscale: %d "
"decomposition_type:%d decomposition_count:%d\n",
s->keyframe, s->qlog, s->qbias, s->mv_scale,
s->spatial_decomposition_type,
s->spatial_decomposition_count
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment