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