comparison 4xm.c @ 140:0617a3812600 libavformat

10l
author michaelni
date Sun, 25 May 2003 23:55:47 +0000
parents d5ac5007713c
children d2d2ec541148
comparison
equal deleted inserted replaced
139:d5ac5007713c 140:0617a3812600
228 case pfrm_TAG: 228 case pfrm_TAG:
229 printf (" %cfrm chunk\n", (char)(fourcc_tag >> 24) & 0xFF); 229 printf (" %cfrm chunk\n", (char)(fourcc_tag >> 24) & 0xFF);
230 url_fseek(pb, size, SEEK_CUR); 230 url_fseek(pb, size, SEEK_CUR);
231 break; 231 break;
232 case cfrm_TAG:{ 232 case cfrm_TAG:{
233 get_le32(pb); 233 int unknown= get_le32(pb);
234 int id= get_le32(pb); 234 int id= get_le32(pb);
235 int whole= get_le32(pb); 235 int whole= get_le32(pb);
236 static int stats[1000]; 236 static int stats[1000];
237 stats[id] += size - 12; 237 stats[id] += size - 12;
238 printf(" cfrm chunk id:%d size:%d whole:%d until now:%d\n", id, size, whole, stats[id]); 238 printf(" cfrm chunk id:%d size:%d whole:%d until now:%d\n", id, size, whole, stats[id]);