aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-03 05:43:32 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-03 05:43:32 +0200
commit695f0869395ef3db624dca9d117dd40c74a7c3b1 (patch)
treec9b62d84066eb13f18a7b9b6732a5282af8b20af /libavcodec/ffv1.c
parentdf824548d031dbfc5fa86ea9e0c652bd086b55c4 (diff)
downloadandroid_external_ffmpeg-695f0869395ef3db624dca9d117dd40c74a7c3b1.tar.gz
android_external_ffmpeg-695f0869395ef3db624dca9d117dd40c74a7c3b1.tar.bz2
android_external_ffmpeg-695f0869395ef3db624dca9d117dd40c74a7c3b1.zip
ffv1dec: print bps for pict debug too
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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--){