aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-10-29 17:30:13 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-29 17:30:13 +0000
commit9df1d2490d61c273a3ac9573c49cf4d20b4d750e (patch)
tree77a49edced7bf462d6b95e19653df5e5363b21ed
parent43a13e7247852d413bfadd5220222b8e3bbe1003 (diff)
downloadffmpeg-9df1d2490d61c273a3ac9573c49cf4d20b4d750e.tar.gz
dumping funny numbers from first zygo i frame header
Originally committed as revision 2450 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/h263.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index ac373cce06..4746dbff90 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -4380,8 +4380,23 @@ int h263_decode_picture_header(MpegEncContext *s)
s->h263_plus ? "+" : ""
);
}
+#if 1
+ if (s->pict_type == I_TYPE && s->avctx->codec_tag == ff_get_fourcc("ZYGO")){
+ int i,j;
+ for(i=0; i<85; i++) printf("%d", get_bits1(&s->gb));
+ printf("\n");
+ for(i=0; i<13; i++){
+ for(j=0; j<3; j++){
+ int v= get_bits(&s->gb, 8);
+ v |= get_sbits(&s->gb, 8)<<8;
+ printf(" %5d", v);
+ }
+ printf("\n");
+ }
+ for(i=0; i<50; i++) printf("%d", get_bits1(&s->gb));
+ }
+#endif
-
return 0;
}