aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r--libavcodec/ffv1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 7c68b2f602..c080294e24 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -2082,8 +2082,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, "ver:%d keyframe:%d coder:%d ec:%d slices:%d\n",
- f->version, p->key_frame, f->ac, f->ec, f->slice_count);
+ av_log(avctx, AV_LOG_DEBUG, "ver:%d keyframe:%d coder:%d ec:%d slices:%d bps:%d\n",
+ f->version, p->key_frame, f->ac, f->ec, f->slice_count, f->avctx->bits_per_raw_sample);
buf_p= buf + buf_size;
for(i=f->slice_count-1; i>=0; i--){