Browse Source

ffv1dec: print more information for -debug 1

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
38c9ebd2a9
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/ffv1.c

+ 2
- 1
libavcodec/ffv1.c View File

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


Loading…
Cancel
Save