Mercurial > mplayer.hg
annotate libmpdemux/asfheader.c @ 4340:8a6f0b482acb
added support for i420 and iyuv
author | alex |
---|---|
date | Thu, 24 Jan 2002 18:13:54 +0000 |
parents | c67d50d4a889 |
children | 266cb1a68519 |
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" |
2338 | 15 #include "stheader.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
16 |
1342 | 17 #include "asf.h" |
833 | 18 |
1342 | 19 #ifdef ARCH_X86 |
20 #define ASF_LOAD_GUID_PREFIX(guid) (*(uint32_t *)(guid)) | |
21 #else | |
22 #define ASF_LOAD_GUID_PREFIX(guid) \ | |
23 ((guid)[3] << 24 | (guid)[2] << 16 | (guid)[1] << 8 | (guid)[0]) | |
24 #endif | |
1 | 25 |
1342 | 26 #define ASF_GUID_PREFIX_audio_stream 0xF8699E40 |
27 #define ASF_GUID_PREFIX_video_stream 0xBC19EFC0 | |
28 #define ASF_GUID_PREFIX_audio_conceal_none 0x49f1a440 | |
29 #define ASF_GUID_PREFIX_audio_conceal_interleave 0xbfc3cd50 | |
30 #define ASF_GUID_PREFIX_header 0x75B22630 | |
31 #define ASF_GUID_PREFIX_data_chunk 0x75b22636 | |
32 #define ASF_GUID_PREFIX_index_chunk 0x33000890 | |
33 #define ASF_GUID_PREFIX_stream_header 0xB7DC0791 | |
34 #define ASF_GUID_PREFIX_header_2_0 0xD6E229D1 | |
35 #define ASF_GUID_PREFIX_file_header 0x8CABDCA1 | |
36 #define ASF_GUID_PREFIX_content_desc 0x75b22633 | |
4333
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
37 #define ASF_GUID_PREFIX_stream_group 0x7bf875ce |
1 | 38 |
39 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
40 static ASF_header_t asfh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
41 static ASF_obj_header_t objh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
42 static ASF_file_header_t fileh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
43 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
|
44 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
|
45 |
1 | 46 unsigned char* asf_packet=NULL; |
47 int asf_scrambling_h=1; | |
48 int asf_scrambling_w=1; | |
49 int asf_scrambling_b=1; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
50 int asf_packetsize=0; |
1 | 51 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
52 //int i; |
1 | 53 |
833 | 54 // the variable string is modify in this function |
55 void pack_asf_string(char* string, int length) { | |
56 int i,j; | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
57 if( string==NULL ) return; |
833 | 58 for( i=0, j=0; i<length && string[i]!='\0'; i+=2, j++) { |
59 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
|
60 } |
833 | 61 string[j]='\0'; |
62 } | |
63 | |
64 // the variable string is modify in this function | |
65 void print_asf_string(const char* name, char* string, int length) { | |
66 pack_asf_string(string, length); | |
1567 | 67 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
|
68 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
69 |
1342 | 70 static char* asf_chunk_type(unsigned char* guid) { |
71 static char tmp[60]; | |
72 char *p; | |
73 int i; | |
74 | |
75 switch(ASF_LOAD_GUID_PREFIX(guid)){ | |
76 case ASF_GUID_PREFIX_audio_stream: | |
77 return "guid_audio_stream"; | |
78 case ASF_GUID_PREFIX_video_stream: | |
79 return "guid_video_stream"; | |
80 case ASF_GUID_PREFIX_audio_conceal_none: | |
81 return "guid_audio_conceal_none"; | |
82 case ASF_GUID_PREFIX_audio_conceal_interleave: | |
83 return "guid_audio_conceal_interleave"; | |
84 case ASF_GUID_PREFIX_header: | |
85 return "guid_header"; | |
86 case ASF_GUID_PREFIX_data_chunk: | |
87 return "guid_data_chunk"; | |
88 case ASF_GUID_PREFIX_index_chunk: | |
89 return "guid_index_chunk"; | |
90 case ASF_GUID_PREFIX_stream_header: | |
91 return "guid_stream_header"; | |
92 case ASF_GUID_PREFIX_header_2_0: | |
93 return "guid_header_2_0"; | |
94 case ASF_GUID_PREFIX_file_header: | |
95 return "guid_file_header"; | |
96 case ASF_GUID_PREFIX_content_desc: | |
97 return "guid_content_desc"; | |
98 default: | |
99 strcpy(tmp, "unknown guid "); | |
100 p = tmp + strlen(tmp); | |
101 for (i = 0; i < 16; i++) { | |
102 if ((1 << i) & ((1<<4) | (1<<6) | (1<<8))) *p++ = '-'; | |
103 sprintf(p, "%02x", guid[i]); | |
104 p += 2; | |
105 } | |
106 return tmp; | |
1 | 107 } |
108 } | |
109 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
110 int asf_check_header(demuxer_t *demuxer){ |
1 | 111 unsigned char asfhdrguid[16]={0x30,0x26,0xB2,0x75,0x8E,0x66,0xCF,0x11,0xA6,0xD9,0x00,0xAA,0x00,0x62,0xCE,0x6C}; |
112 stream_read(demuxer->stream,(char*) &asfh,sizeof(asfh)); // header obj | |
1342 | 113 le2me_ASF_header_t(&asfh); // swap to machine endian |
1 | 114 // for(i=0;i<16;i++) printf(" %02X",temp[i]);printf("\n"); |
115 // for(i=0;i<16;i++) printf(" %02X",asfhdrguid[i]);printf("\n"); | |
116 if(memcmp(asfhdrguid,asfh.objh.guid,16)){ | |
1567 | 117 mp_msg(MSGT_HEADER,MSGL_V,"ASF_check: not ASF guid!\n"); |
1 | 118 return 0; // not ASF guid |
119 } | |
120 if(asfh.cno>256){ | |
1567 | 121 mp_msg(MSGT_HEADER,MSGL_V,"ASF_check: invalid subchunks_no %d\n",(int) asfh.cno); |
1 | 122 return 0; // invalid header??? |
123 } | |
124 return 1; | |
125 } | |
126 | |
601 | 127 extern void print_wave_header(WAVEFORMATEX *h); |
128 extern void print_video_header(BITMAPINFOHEADER *h); | |
129 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
130 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
|
131 static unsigned char buffer[1024]; |
1 | 132 |
133 #if 1 | |
340 | 134 //printf("ASF file! (subchunks: %d)\n",asfh.cno); |
1 | 135 while(!stream_eof(demuxer->stream)){ |
136 int pos,endpos; | |
137 pos=stream_tell(demuxer->stream); | |
138 stream_read(demuxer->stream,(char*) &objh,sizeof(objh)); | |
1342 | 139 le2me_ASF_obj_header_t(&objh); |
1 | 140 if(stream_eof(demuxer->stream)) break; // EOF |
141 endpos=pos+objh.size; | |
142 // for(i=0;i<16;i++) printf("%02X ",objh.guid[i]); | |
340 | 143 //printf("0x%08X [%s] %d\n",pos, asf_chunk_type(objh.guid),(int) objh.size); |
1342 | 144 switch(ASF_LOAD_GUID_PREFIX(objh.guid)){ |
145 case ASF_GUID_PREFIX_stream_header: | |
1 | 146 stream_read(demuxer->stream,(char*) &streamh,sizeof(streamh)); |
1342 | 147 le2me_ASF_stream_header_t(&streamh); |
148 if(verbose){ | |
1567 | 149 mp_msg(MSGT_HEADER,MSGL_V,"stream type: %s\n",asf_chunk_type(streamh.type)); |
150 mp_msg(MSGT_HEADER,MSGL_V,"stream concealment: %s\n",asf_chunk_type(streamh.concealment)); | |
151 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); | |
152 mp_msg(MSGT_HEADER,MSGL_V,"unk1: %lX unk2: %X\n",(unsigned long)streamh.unk1,(unsigned int)streamh.unk2); | |
153 mp_msg(MSGT_HEADER,MSGL_V,"FILEPOS=0x%X\n",stream_tell(demuxer->stream)); | |
1342 | 154 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
155 if(streamh.type_size>1024 || streamh.stream_size>1024){ |
1567 | 156 mp_msg(MSGT_HEADER,MSGL_FATAL,"FATAL: header size bigger than 1024 bytes!\n" |
157 "Please contact mplayer authors, and upload/send this file.\n"); | |
1631 | 158 return 0; |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
159 } |
1 | 160 // type-specific data: |
161 stream_read(demuxer->stream,(char*) buffer,streamh.type_size); | |
1342 | 162 switch(ASF_LOAD_GUID_PREFIX(streamh.type)){ |
163 case ASF_GUID_PREFIX_audio_stream: { | |
1289 | 164 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
|
165 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
|
166 memcpy(sh_audio->wf,buffer,streamh.type_size); |
1342 | 167 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
|
168 if(verbose>=1) print_wave_header(sh_audio->wf); |
1342 | 169 if(ASF_LOAD_GUID_PREFIX(streamh.concealment)==ASF_GUID_PREFIX_audio_conceal_interleave){ |
1 | 170 stream_read(demuxer->stream,(char*) buffer,streamh.stream_size); |
171 asf_scrambling_h=buffer[0]; | |
172 asf_scrambling_w=(buffer[2]<<8)|buffer[1]; | |
173 asf_scrambling_b=(buffer[4]<<8)|buffer[3]; | |
174 asf_scrambling_w/=asf_scrambling_b; | |
175 } else { | |
176 asf_scrambling_b=asf_scrambling_h=asf_scrambling_w=1; | |
177 } | |
1567 | 178 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 | 179 //if(demuxer->audio->id==-1) demuxer->audio->id=streamh.stream_no & 0x7F; |
1 | 180 break; |
291 | 181 } |
1342 | 182 case ASF_GUID_PREFIX_video_stream: { |
1289 | 183 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
|
184 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
|
185 // 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
|
186 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
|
187 memcpy(sh_video->bih,&buffer[4+4+1+2],len); |
1342 | 188 le2me_BITMAPINFOHEADER(sh_video->bih); |
426 | 189 //sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; |
190 //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
|
191 if(verbose>=1) print_video_header(sh_video->bih); |
1 | 192 //asf_video_id=streamh.stream_no & 0x7F; |
426 | 193 //if(demuxer->video->id==-1) demuxer->video->id=streamh.stream_no & 0x7F; |
1 | 194 break; |
291 | 195 } |
1 | 196 } |
197 // stream-specific data: | |
198 // stream_read(demuxer->stream,(char*) buffer,streamh.stream_size); | |
199 break; | |
1342 | 200 // case ASF_GUID_PREFIX_header_2_0: return "guid_header_2_0"; |
201 case ASF_GUID_PREFIX_file_header: // guid_file_header | |
1 | 202 stream_read(demuxer->stream,(char*) &fileh,sizeof(fileh)); |
1342 | 203 le2me_ASF_file_header_t(&fileh); |
4288
b84e9861461c
Changed the asf_file_header_t struct to read all the fields properly.
bertrand
parents:
3070
diff
changeset
|
204 //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); |
b84e9861461c
Changed the asf_file_header_t struct to read all the fields properly.
bertrand
parents:
3070
diff
changeset
|
205 mp_msg(MSGT_HEADER,MSGL_V,"ASF: packets: %d flags: %d max_packet_size: %d min_packet_size: %d max_bitrate: %d preroll: %d\n",(int)fileh.num_packets,(int)fileh.flags,(int)fileh.min_packet_size,(int)fileh.max_packet_size,(int)fileh.max_bitrate,(int)fileh.preroll); |
b84e9861461c
Changed the asf_file_header_t struct to read all the fields properly.
bertrand
parents:
3070
diff
changeset
|
206 asf_packetsize=fileh.max_packet_size; |
587
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; |
1754 | 212 mp_msg(MSGT_HEADER,MSGL_V,"Found movie at 0x%X - 0x%X\n",(int)demuxer->movi_start,(int)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 |
3070 | 218 { |
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); |
1567 | 222 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
|
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); |
3070 | 227 if(verbose) |
228 print_asf_string(" Title: ", string, contenth.title_size); | |
229 else | |
230 pack_asf_string(string, contenth.title_size); | |
231 demux_info_add(demuxer, "name", string); | |
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); |
3070 | 237 if(verbose) |
238 print_asf_string(" Author: ", string, contenth.author_size); | |
239 else | |
240 pack_asf_string(string, contenth.author_size); | |
241 demux_info_add(demuxer, "author", string); | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
242 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
243 // extract the copyright |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
244 if( contenth.copyright_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
245 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
|
246 stream_read(demuxer->stream, string, contenth.copyright_size); |
3070 | 247 if(verbose) |
248 print_asf_string(" Copyright: ", string, contenth.copyright_size); | |
249 else | |
250 pack_asf_string(string, contenth.copyright_size); | |
251 demux_info_add(demuxer, "copyright", string); | |
843
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 // extract the comment |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
254 if( contenth.comment_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
255 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
|
256 stream_read(demuxer->stream, string, contenth.comment_size); |
3070 | 257 if(verbose) |
258 print_asf_string(" Comment: ", string, contenth.comment_size); | |
259 else | |
260 pack_asf_string(string, contenth.comment_size); | |
261 demux_info_add(demuxer, "comments", string); | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
262 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
263 // extract the rating |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
264 if( contenth.rating_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
265 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
|
266 stream_read(demuxer->stream, string, contenth.rating_size); |
3070 | 267 if(verbose) |
268 print_asf_string(" Rating: ", string, contenth.rating_size); | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
269 } |
1567 | 270 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
|
271 free(string); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
272 break; |
3070 | 273 } |
4333
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
274 case ASF_GUID_PREFIX_stream_group: { |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
275 uint16_t stream_count, stream_id, i; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
276 uint32_t max_bitrate; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
277 char *object=NULL, *ptr=NULL; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
278 printf("============ ASF Stream group == START ===\n"); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
279 printf(" object size = %d\n", objh.size); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
280 object = (char*)malloc(objh.size); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
281 if( object==NULL ) { |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
282 printf("Memory allocation failed\n"); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
283 return 0; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
284 } |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
285 stream_read( demuxer->stream, object, objh.size ); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
286 // FIXME: We need some endian handling below... |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
287 ptr = object; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
288 stream_count = *(uint16_t*)ptr; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
289 ptr += sizeof(uint16_t); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
290 printf(" stream count=[0x%x][%u]\n", stream_count, stream_count ); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
291 for( i=0 ; i<stream_count && ptr<((char*)object+objh.size) ; i++ ) { |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
292 stream_id = *(uint16_t*)ptr; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
293 ptr += sizeof(uint16_t); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
294 printf(" stream id=[0x%x][%u]\n", stream_id, stream_id ); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
295 max_bitrate = *(uint32_t*)ptr; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
296 ptr += sizeof(uint32_t); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
297 printf(" max bitrate=[0x%x][%u]\n", max_bitrate, max_bitrate ); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
298 } |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
299 printf("============ ASF Stream group == END ===\n"); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
300 free( object ); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
301 break; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
302 } |
1 | 303 } // switch GUID |
692 | 304 |
1342 | 305 if(ASF_LOAD_GUID_PREFIX(objh.guid)==ASF_GUID_PREFIX_data_chunk) break; // movi chunk |
692 | 306 |
1 | 307 if(!stream_seek(demuxer->stream,endpos)) break; |
308 } // while EOF | |
309 | |
310 #if 0 | |
311 if(verbose){ | |
312 printf("ASF duration: %d\n",(int)fileh.duration); | |
313 printf("ASF start pts: %d\n",(int)fileh.start_timestamp); | |
314 printf("ASF end pts: %d\n",(int)fileh.end_timestamp); | |
315 } | |
316 #endif | |
317 | |
318 #endif | |
319 return 1; | |
320 } |