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