Mercurial > mplayer.hg
annotate libmpdemux/asfheader.c @ 4486:e69bed07cb27
further work on the RoQ audio decoder
author | melanson |
---|---|
date | Sat, 02 Feb 2002 22:45:39 +0000 |
parents | 266cb1a68519 |
children | 354048e506ab |
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]; |
4349
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
132 int audio_streams=0; |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
133 int video_streams=0; |
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){ | |
1567 | 151 mp_msg(MSGT_HEADER,MSGL_V,"stream type: %s\n",asf_chunk_type(streamh.type)); |
152 mp_msg(MSGT_HEADER,MSGL_V,"stream concealment: %s\n",asf_chunk_type(streamh.concealment)); | |
153 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); | |
154 mp_msg(MSGT_HEADER,MSGL_V,"unk1: %lX unk2: %X\n",(unsigned long)streamh.unk1,(unsigned int)streamh.unk2); | |
155 mp_msg(MSGT_HEADER,MSGL_V,"FILEPOS=0x%X\n",stream_tell(demuxer->stream)); | |
1342 | 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){ |
1567 | 158 mp_msg(MSGT_HEADER,MSGL_FATAL,"FATAL: header size bigger than 1024 bytes!\n" |
159 "Please contact mplayer authors, and upload/send this file.\n"); | |
1631 | 160 return 0; |
816
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); |
4349
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
167 ++audio_streams; |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
168 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
|
169 memcpy(sh_audio->wf,buffer,streamh.type_size); |
1342 | 170 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
|
171 if(verbose>=1) print_wave_header(sh_audio->wf); |
1342 | 172 if(ASF_LOAD_GUID_PREFIX(streamh.concealment)==ASF_GUID_PREFIX_audio_conceal_interleave){ |
1 | 173 stream_read(demuxer->stream,(char*) buffer,streamh.stream_size); |
174 asf_scrambling_h=buffer[0]; | |
175 asf_scrambling_w=(buffer[2]<<8)|buffer[1]; | |
176 asf_scrambling_b=(buffer[4]<<8)|buffer[3]; | |
177 asf_scrambling_w/=asf_scrambling_b; | |
178 } else { | |
179 asf_scrambling_b=asf_scrambling_h=asf_scrambling_w=1; | |
180 } | |
1567 | 181 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 | 182 //if(demuxer->audio->id==-1) demuxer->audio->id=streamh.stream_no & 0x7F; |
1 | 183 break; |
291 | 184 } |
1342 | 185 case ASF_GUID_PREFIX_video_stream: { |
1289 | 186 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
|
187 int len=streamh.type_size-(4+4+1+2); |
4349
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
188 ++video_streams; |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
189 // 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
|
190 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
|
191 memcpy(sh_video->bih,&buffer[4+4+1+2],len); |
1342 | 192 le2me_BITMAPINFOHEADER(sh_video->bih); |
426 | 193 //sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; |
194 //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
|
195 if(verbose>=1) print_video_header(sh_video->bih); |
1 | 196 //asf_video_id=streamh.stream_no & 0x7F; |
426 | 197 //if(demuxer->video->id==-1) demuxer->video->id=streamh.stream_no & 0x7F; |
1 | 198 break; |
291 | 199 } |
1 | 200 } |
201 // stream-specific data: | |
202 // stream_read(demuxer->stream,(char*) buffer,streamh.stream_size); | |
203 break; | |
1342 | 204 // case ASF_GUID_PREFIX_header_2_0: return "guid_header_2_0"; |
205 case ASF_GUID_PREFIX_file_header: // guid_file_header | |
1 | 206 stream_read(demuxer->stream,(char*) &fileh,sizeof(fileh)); |
1342 | 207 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
|
208 //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
|
209 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
|
210 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
|
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 |
3070 | 222 { |
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); |
3070 | 231 if(verbose) |
232 print_asf_string(" Title: ", string, contenth.title_size); | |
233 else | |
234 pack_asf_string(string, contenth.title_size); | |
235 demux_info_add(demuxer, "name", string); | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
236 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
237 // extract the author |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
238 if( contenth.author_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
239 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
|
240 stream_read(demuxer->stream, string, contenth.author_size); |
3070 | 241 if(verbose) |
242 print_asf_string(" Author: ", string, contenth.author_size); | |
243 else | |
244 pack_asf_string(string, contenth.author_size); | |
245 demux_info_add(demuxer, "author", string); | |
843
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 copyright |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
248 if( contenth.copyright_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.copyright_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.copyright_size); |
3070 | 251 if(verbose) |
252 print_asf_string(" Copyright: ", string, contenth.copyright_size); | |
253 else | |
254 pack_asf_string(string, contenth.copyright_size); | |
255 demux_info_add(demuxer, "copyright", string); | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
256 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
257 // extract the comment |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
258 if( contenth.comment_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
259 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
|
260 stream_read(demuxer->stream, string, contenth.comment_size); |
3070 | 261 if(verbose) |
262 print_asf_string(" Comment: ", string, contenth.comment_size); | |
263 else | |
264 pack_asf_string(string, contenth.comment_size); | |
265 demux_info_add(demuxer, "comments", string); | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
266 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
267 // extract the rating |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
268 if( contenth.rating_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
269 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
|
270 stream_read(demuxer->stream, string, contenth.rating_size); |
3070 | 271 if(verbose) |
272 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
|
273 } |
1567 | 274 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
|
275 free(string); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
276 break; |
3070 | 277 } |
4333
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
278 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
|
279 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
|
280 uint32_t max_bitrate; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
281 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
|
282 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
|
283 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
|
284 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
|
285 if( object==NULL ) { |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
286 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
|
287 return 0; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
288 } |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
289 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
|
290 // 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
|
291 ptr = object; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
292 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
|
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 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
|
295 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
|
296 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
|
297 ptr += sizeof(uint16_t); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
298 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
|
299 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
|
300 ptr += sizeof(uint32_t); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
301 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
|
302 } |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
303 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
|
304 free( object ); |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
305 break; |
c67d50d4a889
Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents:
4288
diff
changeset
|
306 } |
1 | 307 } // switch GUID |
692 | 308 |
1342 | 309 if(ASF_LOAD_GUID_PREFIX(objh.guid)==ASF_GUID_PREFIX_data_chunk) break; // movi chunk |
692 | 310 |
1 | 311 if(!stream_seek(demuxer->stream,endpos)) break; |
312 } // while EOF | |
313 | |
4349
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
314 mp_msg(MSGT_HEADER,MSGL_V,"ASF: %d audio and %d video streams found\n",audio_streams,video_streams); |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
315 if(!audio_streams) demuxer->audio->id=-2; // nosound |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
316 if(!video_streams){ |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
317 if(!audio_streams){ |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
318 mp_msg(MSGT_HEADER,MSGL_ERR,"ASF: no audio or video headers found - broken file?\n"); |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
319 return 0; |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
320 } |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
321 demuxer->video->id=-2; // audio-only |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
322 } |
266cb1a68519
pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents:
4333
diff
changeset
|
323 |
1 | 324 #if 0 |
325 if(verbose){ | |
326 printf("ASF duration: %d\n",(int)fileh.duration); | |
327 printf("ASF start pts: %d\n",(int)fileh.start_timestamp); | |
328 printf("ASF end pts: %d\n",(int)fileh.end_timestamp); | |
329 } | |
330 #endif | |
331 | |
332 #endif | |
333 return 1; | |
334 } |