[FFmpeg-cvslog] avcodec/snowdec: also print qbias and mvscale in debug output
Michael Niedermayer
git at videolan.org
Fri Mar 21 21:46:14 CET 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Mar 21 21:04:02 2014 +0100| [1b4f2fb165a3494c20f95b203a8beef1a1d4435d] | committer: Michael Niedermayer
avcodec/snowdec: also print qbias and mvscale in debug output
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1b4f2fb165a3494c20f95b203a8beef1a1d4435d
---
libavcodec/snowdec.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavcodec/snowdec.c b/libavcodec/snowdec.c
index 9d48b7b..7287a2e 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
);
More information about the ffmpeg-cvslog
mailing list