diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-03-21 21:04:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-21 21:05:00 +0100 |
commit | 1b4f2fb165a3494c20f95b203a8beef1a1d4435d (patch) | |
tree | 7d94df4158d4fdd8fc20ee63727da888638a7add | |
parent | 2fb388fc9d0f3a232cf405b44c9a33c5660c12e9 (diff) | |
download | ffmpeg-1b4f2fb165a3494c20f95b203a8beef1a1d4435d.tar.gz |
avcodec/snowdec: also print qbias and mvscale in debug output
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/snowdec.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/snowdec.c b/libavcodec/snowdec.c index 9d48b7bea0..7287a2e64c 100644 --- a/libavcodec/snowdec.c +++ b/libavcodec/snowdec.c @@ -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 ); |