Commit b37754ce authored by michael's avatar michael

dumping funny numbers from first zygo i frame header


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2450 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b93601fd
......@@ -4380,7 +4380,22 @@ 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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment