avcodec/mpeg4videodec: print run/level/index values

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-05-09 01:29:57 +02:00
parent 6df33c4926
commit e54c052bee
1 changed files with 1 additions and 0 deletions

View File

@ -1167,6 +1167,7 @@ static inline int mpeg4_decode_block(Mpeg4DecContext *ctx, int16_t *block,
level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
LAST_SKIP_BITS(re, &s->gb, 1);
}
tprintf(s->avctx, "Block: run:%d, level:%d, index:%d EOB:%d\n", run&63, level, i&63, i>62);
if (i > 62) {
i -= 192;
if (i & (~63)) {