diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-04 01:00:26 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-04 01:04:03 +0200 |
commit | 38c9ebd2a97a1298e4c5cc9d01d88d69c55be695 (patch) | |
tree | f1fe24134054a00bd323709a8ec574f8e7909a3f | |
parent | 730d079bf756c40f4a3c4624388db11d1be3475f (diff) | |
download | ffmpeg-38c9ebd2a97a1298e4c5cc9d01d88d69c55be695.tar.gz |
ffv1dec: print more information for -debug 1
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ffv1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 8eb20fe07b..46293524fb 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -1991,7 +1991,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac } if(avctx->debug&FF_DEBUG_PICT_INFO) - av_log(avctx, AV_LOG_DEBUG, "keyframe:%d coder:%d\n", p->key_frame, f->ac); + av_log(avctx, AV_LOG_DEBUG, "ver:%d keyframe:%d coder:%d ec:%d slices:%d\n", + f->version, p->key_frame, f->ac, f->ec, f->slice_count); buf_p= buf + buf_size; for(i=f->slice_count-1; i>=0; i--){ |