Mercurial > mplayer.hg
annotate asfheader.c @ 1477:8b7ede5849f4
ehh. yet anouther silly a_pts bug
author | arpi |
---|---|
date | Fri, 10 Aug 2001 01:00:34 +0000 |
parents | 1728d249c783 |
children | b895f95e7657 |
rev | line source |
---|---|
1 | 1 // .asf fileformat docs from http://divx.euro.ru |
2 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
3 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
4 #include <stdio.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
5 #include <stdlib.h> |
1430 | 6 #include <unistd.h> |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
7 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
8 extern int verbose; // defined in mplayer.c |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
9 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
10 #include "stream.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
11 #include "demuxer.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
12 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
13 #include "wine/mmreg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
14 #include "wine/avifmt.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
15 #include "wine/vfw.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
16 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
17 #include "codec-cfg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
18 #include "stheader.h" |
1342 | 19 #include "aviheader.h" |
20 #include "asf.h" | |
833 | 21 |
1342 | 22 #ifdef ARCH_X86 |
23 #define ASF_LOAD_GUID_PREFIX(guid) (*(uint32_t *)(guid)) | |
24 #else | |
25 #define ASF_LOAD_GUID_PREFIX(guid) \ | |
26 ((guid)[3] << 24 | (guid)[2] << 16 | (guid)[1] << 8 | (guid)[0]) | |
27 #endif | |
1 | 28 |
1342 | 29 #define ASF_GUID_PREFIX_audio_stream 0xF8699E40 |
30 #define ASF_GUID_PREFIX_video_stream 0xBC19EFC0 | |
31 #define ASF_GUID_PREFIX_audio_conceal_none 0x49f1a440 | |
32 #define ASF_GUID_PREFIX_audio_conceal_interleave 0xbfc3cd50 | |
33 #define ASF_GUID_PREFIX_header 0x75B22630 | |
34 #define ASF_GUID_PREFIX_data_chunk 0x75b22636 | |
35 #define ASF_GUID_PREFIX_index_chunk 0x33000890 | |
36 #define ASF_GUID_PREFIX_stream_header 0xB7DC0791 | |
37 #define ASF_GUID_PREFIX_header_2_0 0xD6E229D1 | |
38 #define ASF_GUID_PREFIX_file_header 0x8CABDCA1 | |
39 #define ASF_GUID_PREFIX_content_desc 0x75b22633 | |
1 | 40 |
41 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
42 static ASF_header_t asfh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
43 static ASF_obj_header_t objh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
44 static ASF_file_header_t fileh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
45 static ASF_stream_header_t streamh; |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
46 static ASF_content_description_t contenth; |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
47 |
1 | 48 unsigned char* asf_packet=NULL; |
49 int asf_scrambling_h=1; | |
50 int asf_scrambling_w=1; | |
51 int asf_scrambling_b=1; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
52 int asf_packetsize=0; |
1 | 53 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
54 //int i; |
1 | 55 |
833 | 56 // the variable string is modify in this function |
57 void pack_asf_string(char* string, int length) { | |
58 int i,j; | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
59 if( string==NULL ) return; |
833 | 60 for( i=0, j=0; i<length && string[i]!='\0'; i+=2, j++) { |
61 string[j]=string[i]; | |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
62 } |
833 | 63 string[j]='\0'; |
64 } | |
65 | |
66 // the variable string is modify in this function | |
67 void print_asf_string(const char* name, char* string, int length) { | |
68 pack_asf_string(string, length); | |
69 printf("%s%s\n", name, string); | |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
70 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
71 |
1342 | 72 static char* asf_chunk_type(unsigned char* guid) { |
73 static char tmp[60]; | |
74 char *p; | |
75 int i; | |
76 | |
77 switch(ASF_LOAD_GUID_PREFIX(guid)){ | |
78 case ASF_GUID_PREFIX_audio_stream: | |
79 return "guid_audio_stream"; | |
80 case ASF_GUID_PREFIX_video_stream: | |
81 return "guid_video_stream"; | |
82 case ASF_GUID_PREFIX_audio_conceal_none: | |
83 return "guid_audio_conceal_none"; | |
84 case ASF_GUID_PREFIX_audio_conceal_interleave: | |
85 return "guid_audio_conceal_interleave"; | |
86 case ASF_GUID_PREFIX_header: | |
87 return "guid_header"; | |
88 case ASF_GUID_PREFIX_data_chunk: | |
89 return "guid_data_chunk"; | |
90 case ASF_GUID_PREFIX_index_chunk: | |
91 return "guid_index_chunk"; | |
92 case ASF_GUID_PREFIX_stream_header: | |
93 return "guid_stream_header"; | |
94 case ASF_GUID_PREFIX_header_2_0: | |
95 return "guid_header_2_0"; | |
96 case ASF_GUID_PREFIX_file_header: | |
97 return "guid_file_header"; | |
98 case ASF_GUID_PREFIX_content_desc: | |
99 return "guid_content_desc"; | |
100 default: | |
101 strcpy(tmp, "unknown guid "); | |
102 p = tmp + strlen(tmp); | |
103 for (i = 0; i < 16; i++) { | |
104 if ((1 << i) & ((1<<4) | (1<<6) | (1<<8))) *p++ = '-'; | |
105 sprintf(p, "%02x", guid[i]); | |
106 p += 2; | |
107 } | |
108 return tmp; | |
1 | 109 } |
110 } | |
111 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
112 int asf_check_header(demuxer_t *demuxer){ |
1 | 113 unsigned char asfhdrguid[16]={0x30,0x26,0xB2,0x75,0x8E,0x66,0xCF,0x11,0xA6,0xD9,0x00,0xAA,0x00,0x62,0xCE,0x6C}; |
114 stream_read(demuxer->stream,(char*) &asfh,sizeof(asfh)); // header obj | |
1342 | 115 le2me_ASF_header_t(&asfh); // swap to machine endian |
1 | 116 // for(i=0;i<16;i++) printf(" %02X",temp[i]);printf("\n"); |
117 // for(i=0;i<16;i++) printf(" %02X",asfhdrguid[i]);printf("\n"); | |
118 if(memcmp(asfhdrguid,asfh.objh.guid,16)){ | |
119 if(verbose) printf("ASF_check: not ASF guid!\n"); | |
120 return 0; // not ASF guid | |
121 } | |
122 if(asfh.cno>256){ | |
123 if(verbose) printf("ASF_check: invalid subchunks_no %d\n",(int) asfh.cno); | |
124 return 0; // invalid header??? | |
125 } | |
126 return 1; | |
127 } | |
128 | |
601 | 129 extern void print_wave_header(WAVEFORMATEX *h); |
130 extern void print_video_header(BITMAPINFOHEADER *h); | |
131 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
132 int read_asf_header(demuxer_t *demuxer){ |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
133 static unsigned char buffer[1024]; |
1 | 134 |
135 #if 1 | |
340 | 136 //printf("ASF file! (subchunks: %d)\n",asfh.cno); |
1 | 137 while(!stream_eof(demuxer->stream)){ |
138 int pos,endpos; | |
139 pos=stream_tell(demuxer->stream); | |
140 stream_read(demuxer->stream,(char*) &objh,sizeof(objh)); | |
1342 | 141 le2me_ASF_obj_header_t(&objh); |
1 | 142 if(stream_eof(demuxer->stream)) break; // EOF |
143 endpos=pos+objh.size; | |
144 // for(i=0;i<16;i++) printf("%02X ",objh.guid[i]); | |
340 | 145 //printf("0x%08X [%s] %d\n",pos, asf_chunk_type(objh.guid),(int) objh.size); |
1342 | 146 switch(ASF_LOAD_GUID_PREFIX(objh.guid)){ |
147 case ASF_GUID_PREFIX_stream_header: | |
1 | 148 stream_read(demuxer->stream,(char*) &streamh,sizeof(streamh)); |
1342 | 149 le2me_ASF_stream_header_t(&streamh); |
150 if(verbose){ | |
151 printf("stream type: %s\n",asf_chunk_type(streamh.type)); | |
152 printf("stream concealment: %s\n",asf_chunk_type(streamh.concealment)); | |
153 printf("type: %d bytes, stream: %d bytes ID: %d\n",(int)streamh.type_size,(int)streamh.stream_size,(int)streamh.stream_no); | |
154 printf("unk1: %lX unk2: %X\n",(unsigned long)streamh.unk1,(unsigned int)streamh.unk2); | |
155 printf("FILEPOS=0x%X\n",stream_tell(demuxer->stream)); | |
156 } | |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
157 if(streamh.type_size>1024 || streamh.stream_size>1024){ |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
158 printf("FATAL: header size bigger than 1024 bytes!\n"); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
159 printf("Please contact mplayer authors, and upload/send this file.\n"); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
160 exit(1); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
161 } |
1 | 162 // type-specific data: |
163 stream_read(demuxer->stream,(char*) buffer,streamh.type_size); | |
1342 | 164 switch(ASF_LOAD_GUID_PREFIX(streamh.type)){ |
165 case ASF_GUID_PREFIX_audio_stream: { | |
1289 | 166 sh_audio_t* sh_audio=new_sh_audio(demuxer,streamh.stream_no & 0x7F); |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
167 sh_audio->wf=calloc((streamh.type_size<sizeof(WAVEFORMATEX))?sizeof(WAVEFORMATEX):streamh.type_size,1); |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
168 memcpy(sh_audio->wf,buffer,streamh.type_size); |
1342 | 169 le2me_WAVEFORMATEX(sh_audio->wf); |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
170 if(verbose>=1) print_wave_header(sh_audio->wf); |
1342 | 171 if(ASF_LOAD_GUID_PREFIX(streamh.concealment)==ASF_GUID_PREFIX_audio_conceal_interleave){ |
1 | 172 stream_read(demuxer->stream,(char*) buffer,streamh.stream_size); |
173 asf_scrambling_h=buffer[0]; | |
174 asf_scrambling_w=(buffer[2]<<8)|buffer[1]; | |
175 asf_scrambling_b=(buffer[4]<<8)|buffer[3]; | |
176 asf_scrambling_w/=asf_scrambling_b; | |
177 } else { | |
178 asf_scrambling_b=asf_scrambling_h=asf_scrambling_w=1; | |
179 } | |
340 | 180 printf("ASF: audio scrambling: %d x %d x %d\n",asf_scrambling_h,asf_scrambling_w,asf_scrambling_b); |
426 | 181 //if(demuxer->audio->id==-1) demuxer->audio->id=streamh.stream_no & 0x7F; |
1 | 182 break; |
291 | 183 } |
1342 | 184 case ASF_GUID_PREFIX_video_stream: { |
1289 | 185 sh_video_t* sh_video=new_sh_video(demuxer,streamh.stream_no & 0x7F); |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
186 int len=streamh.type_size-(4+4+1+2); |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
187 // sh_video->bih=malloc(chunksize); memset(sh_video->bih,0,chunksize); |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
188 sh_video->bih=calloc((len<sizeof(BITMAPINFOHEADER))?sizeof(BITMAPINFOHEADER):len,1); |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
189 memcpy(sh_video->bih,&buffer[4+4+1+2],len); |
1342 | 190 le2me_BITMAPINFOHEADER(sh_video->bih); |
426 | 191 //sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; |
192 //sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
193 if(verbose>=1) print_video_header(sh_video->bih); |
1 | 194 //asf_video_id=streamh.stream_no & 0x7F; |
426 | 195 //if(demuxer->video->id==-1) demuxer->video->id=streamh.stream_no & 0x7F; |
1 | 196 break; |
291 | 197 } |
1 | 198 } |
199 // stream-specific data: | |
200 // stream_read(demuxer->stream,(char*) buffer,streamh.stream_size); | |
201 break; | |
1342 | 202 // case ASF_GUID_PREFIX_header_2_0: return "guid_header_2_0"; |
203 case ASF_GUID_PREFIX_file_header: // guid_file_header | |
1 | 204 stream_read(demuxer->stream,(char*) &fileh,sizeof(fileh)); |
1342 | 205 le2me_ASF_file_header_t(&fileh); |
340 | 206 if(verbose) printf("ASF: packets: %d flags: %d pack_size: %d frame_size: %d\n",(int)fileh.packets,(int)fileh.flags,(int)fileh.packetsize,(int)fileh.frame_size); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
207 asf_packetsize=fileh.packetsize; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
208 asf_packet=malloc(asf_packetsize); // !!! |
1 | 209 break; |
1342 | 210 case ASF_GUID_PREFIX_data_chunk: // guid_data_chunk |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
211 demuxer->movi_start=stream_tell(demuxer->stream)+26; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
212 demuxer->movi_end=endpos; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
213 if(verbose>=1) printf("Found movie at 0x%X - 0x%X\n",demuxer->movi_start,demuxer->movi_end); |
1 | 214 break; |
215 | |
1342 | 216 // case ASF_GUID_PREFIX_index_chunk: return "guid_index_chunk"; |
1 | 217 |
1342 | 218 case ASF_GUID_PREFIX_content_desc: // Content description |
838 | 219 if(verbose){ |
1003
26579d6e6c38
Initialisation of ptr string to NULL to avoid gcc warning.
bertrand
parents:
848
diff
changeset
|
220 char *string=NULL; |
838 | 221 stream_read(demuxer->stream,(char*) &contenth,sizeof(contenth)); |
1342 | 222 le2me_ASF_content_description_t(&contenth); |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
223 // extract the title |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
224 if( contenth.title_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
225 string=(char*)malloc(contenth.title_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
226 stream_read(demuxer->stream, string, contenth.title_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
227 print_asf_string("\n Title: ", string, contenth.title_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
228 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
229 // extract the author |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
230 if( contenth.author_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
231 string=(char*)realloc((void*)string, contenth.author_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
232 stream_read(demuxer->stream, string, contenth.author_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
233 print_asf_string(" Author: ", string, contenth.author_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
234 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
235 // extract the copyright |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
236 if( contenth.copyright_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
237 string=(char*)realloc((void*)string, contenth.copyright_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
238 stream_read(demuxer->stream, string, contenth.copyright_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
239 print_asf_string(" Copyright: ", string, contenth.copyright_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
240 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
241 // extract the comment |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
242 if( contenth.comment_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
243 string=(char*)realloc((void*)string, contenth.comment_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
244 stream_read(demuxer->stream, string, contenth.comment_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
245 print_asf_string(" Comment: ", string, contenth.comment_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
246 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
247 // extract the rating |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
248 if( contenth.rating_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
249 string=(char*)realloc((void*)string, contenth.rating_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
250 stream_read(demuxer->stream, string, contenth.rating_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
251 print_asf_string(" Rating: ", string, contenth.rating_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
252 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
253 printf("\n"); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
254 free(string); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
255 } |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
256 break; |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
257 |
1 | 258 } // switch GUID |
692 | 259 |
1342 | 260 if(ASF_LOAD_GUID_PREFIX(objh.guid)==ASF_GUID_PREFIX_data_chunk) break; // movi chunk |
692 | 261 |
1 | 262 if(!stream_seek(demuxer->stream,endpos)) break; |
263 } // while EOF | |
264 | |
265 #if 0 | |
266 if(verbose){ | |
267 printf("ASF duration: %d\n",(int)fileh.duration); | |
268 printf("ASF start pts: %d\n",(int)fileh.start_timestamp); | |
269 printf("ASF end pts: %d\n",(int)fileh.end_timestamp); | |
270 } | |
271 #endif | |
272 | |
273 #endif | |
274 return 1; | |
275 } |