Skip to content
Snippets Groups Projects
Commit e54c052b authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/mpeg4videodec: print run/level/index values

parent 6df33c49
No related branches found
No related tags found
No related merge requests found
......@@ -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)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment