Commit 046a79cd authored by michaelni's avatar michaelni

c frame size debug stuff


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1905 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 29bd1849
......@@ -222,12 +222,23 @@ static int fourxm_read_packet(AVFormatContext *s,
switch (fourcc_tag) {
case ifrm_TAG:
printf (" %cfrm chunk\n", (char)(fourcc_tag >> 24) & 0xFF);
url_fseek(pb, size, SEEK_CUR);
break;
case pfrm_TAG:
case cfrm_TAG:
printf (" %cfrm chunk\n", (char)(fourcc_tag >> 24) & 0xFF);
url_fseek(pb, size, SEEK_CUR);
break;
case cfrm_TAG:{
get_le32(pb);
int id= get_le32(pb);
int whole= get_le32(pb);
static int stats[1000];
stats[id] += size - 12;
printf(" cfrm chunk id:%d size:%d whole:%d until now:%d\n", id, size, whole, stats[id]);
url_fseek(pb, size-12, SEEK_CUR);
break;
}
case snd__TAG:
printf (" snd_ chunk, ");
track_number = get_le32(pb);
......
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