Mercurial > libavcodec.hg
comparison h263.c @ 1584:3615999a7284 libavcodec
dumping funny numbers from first zygo i frame header
author | michael |
---|---|
date | Wed, 29 Oct 2003 17:30:13 +0000 |
parents | 853d2107ce5b |
children | 3d1d0490e5a6 |
comparison
equal
deleted
inserted
replaced
1583:853d2107ce5b | 1584:3615999a7284 |
---|---|
4378 s->umvplus ? "UMV" : "", | 4378 s->umvplus ? "UMV" : "", |
4379 s->h263_long_vectors ? "LONG" : "", | 4379 s->h263_long_vectors ? "LONG" : "", |
4380 s->h263_plus ? "+" : "" | 4380 s->h263_plus ? "+" : "" |
4381 ); | 4381 ); |
4382 } | 4382 } |
4383 | 4383 #if 1 |
4384 | 4384 if (s->pict_type == I_TYPE && s->avctx->codec_tag == ff_get_fourcc("ZYGO")){ |
4385 int i,j; | |
4386 for(i=0; i<85; i++) printf("%d", get_bits1(&s->gb)); | |
4387 printf("\n"); | |
4388 for(i=0; i<13; i++){ | |
4389 for(j=0; j<3; j++){ | |
4390 int v= get_bits(&s->gb, 8); | |
4391 v |= get_sbits(&s->gb, 8)<<8; | |
4392 printf(" %5d", v); | |
4393 } | |
4394 printf("\n"); | |
4395 } | |
4396 for(i=0; i<50; i++) printf("%d", get_bits1(&s->gb)); | |
4397 } | |
4398 #endif | |
4399 | |
4385 return 0; | 4400 return 0; |
4386 } | 4401 } |
4387 | 4402 |
4388 static void mpeg4_decode_sprite_trajectory(MpegEncContext * s) | 4403 static void mpeg4_decode_sprite_trajectory(MpegEncContext * s) |
4389 { | 4404 { |