summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg12.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-31 20:33:22 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-31 20:55:02 +0100
commit49ec0d8ed2462f0d4e8294b9eeb3a735c83f0319 (patch)
tree7cee994d4f850573e6221d7633316a5514a3c179 /libavcodec/mpeg12.c
parent343900a14777315fe31002334141a9d9616c6022 (diff)
mpeg12: print invalid cbp value
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r--libavcodec/mpeg12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index 16f9a3d7ef..1410de5467 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -1061,7 +1061,7 @@ static int mpeg_decode_mb(MpegEncContext *s, DCTELEM block[12][64])
s->dsp.clear_blocks(s->block[6]);
}
if (cbp <= 0) {
- av_log(s->avctx, AV_LOG_ERROR, "invalid cbp at %d %d\n", s->mb_x, s->mb_y);
+ av_log(s->avctx, AV_LOG_ERROR, "invalid cbp %d at %d %d\n", cbp, s->mb_x, s->mb_y);
return -1;
}