Mercurial > mplayer.hg
annotate asfheader.c @ 980:e9dedf1e544e
-framedrop fixed for VfW (I hope :))
author | arpi_esp |
---|---|
date | Sun, 03 Jun 2001 23:54:41 +0000 |
parents | 738dc5a2bb39 |
children | 26579d6e6c38 |
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" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
18 |
833 | 19 |
20 // BB: Moved to asf.h --------------------- FROM HERE ------------------- | |
848
738dc5a2bb39
Changed some #ifdef to include modify ASF structs definition
bertrand
parents:
843
diff
changeset
|
21 #ifndef STREAMING |
1 | 22 typedef struct __attribute__((packed)) { |
23 unsigned char guid[16]; | |
24 unsigned long long size; | |
25 } ASF_obj_header_t; | |
26 | |
27 typedef struct __attribute__((packed)) { | |
28 ASF_obj_header_t objh; | |
29 unsigned int cno; // number of subchunks | |
30 unsigned char v1; // unknown (0x01) | |
31 unsigned char v2; // unknown (0x02) | |
32 } ASF_header_t; | |
33 | |
34 typedef struct __attribute__((packed)) { | |
35 unsigned char client[16]; // Client GUID | |
36 unsigned long long file_size; | |
37 unsigned long long creat_time; //File creation time FILETIME 8 | |
38 unsigned long long packets; //Number of packets UINT64 8 | |
39 unsigned long long end_timestamp; //Timestamp of the end position UINT64 8 | |
40 unsigned long long duration; //Duration of the playback UINT64 8 | |
41 unsigned long start_timestamp; //Timestamp of the start position UINT32 4 | |
42 unsigned long unk1; //Unknown, maybe reserved ( usually contains 0 ) UINT32 4 | |
43 unsigned long flags; //Unknown, maybe flags ( usually contains 2 ) UINT32 4 | |
44 unsigned long packetsize; //Size of packet, in bytes UINT32 4 | |
45 unsigned long packetsize2; //Size of packet ( confirm ) UINT32 4 | |
46 unsigned long frame_size; //Size of uncompressed video frame UINT32 4 | |
47 } ASF_file_header_t; | |
48 | |
49 typedef struct __attribute__((packed)) { | |
50 unsigned char type[16]; // Stream type (audio/video) GUID 16 | |
51 unsigned char concealment[16]; // Audio error concealment type GUID 16 | |
52 unsigned long long unk1; // Unknown, maybe reserved ( usually contains 0 ) UINT64 8 | |
53 unsigned long type_size; //Total size of type-specific data UINT32 4 | |
54 unsigned long stream_size; //Size of stream-specific data UINT32 4 | |
55 unsigned short stream_no; //Stream number UINT16 2 | |
56 unsigned long unk2; //Unknown UINT32 4 | |
57 } ASF_stream_header_t; | |
58 | |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
59 typedef struct __attribute__((packed)) { |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
60 unsigned short title_size; |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
61 unsigned short author_size; |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
62 unsigned short copyright_size; |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
63 unsigned short comment_size; |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
64 unsigned short rating_size; |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
65 } ASF_content_description_t; |
848
738dc5a2bb39
Changed some #ifdef to include modify ASF structs definition
bertrand
parents:
843
diff
changeset
|
66 #else |
738dc5a2bb39
Changed some #ifdef to include modify ASF structs definition
bertrand
parents:
843
diff
changeset
|
67 #include "asf.h" |
833 | 68 #endif |
69 // BB: Moved to asf.h --------------------- TO HERE ------------------- | |
1 | 70 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
71 static ASF_header_t asfh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
72 static ASF_obj_header_t objh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
73 static ASF_file_header_t fileh; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
74 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
|
75 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
|
76 |
1 | 77 unsigned char* asf_packet=NULL; |
78 int asf_scrambling_h=1; | |
79 int asf_scrambling_w=1; | |
80 int asf_scrambling_b=1; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
81 int asf_packetsize=0; |
1 | 82 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
83 //int i; |
1 | 84 |
833 | 85 // the variable string is modify in this function |
86 void pack_asf_string(char* string, int length) { | |
87 int i,j; | |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
88 if( string==NULL ) return; |
833 | 89 for( i=0, j=0; i<length && string[i]!='\0'; i+=2, j++) { |
90 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
|
91 } |
833 | 92 string[j]='\0'; |
93 } | |
94 | |
95 // the variable string is modify in this function | |
96 void print_asf_string(const char* name, char* string, int length) { | |
97 pack_asf_string(string, length); | |
98 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
|
99 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
100 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
101 static char* asf_chunk_type(unsigned char* guid){ |
1 | 102 switch(*((unsigned int*)guid)){ |
103 case 0xF8699E40: return "guid_audio_stream"; | |
104 case 0xBC19EFC0: return "guid_video_stream"; | |
105 case 0x49f1a440: return "guid_audio_conceal_none"; | |
106 case 0xbfc3cd50: return "guid_audio_conceal_interleave"; | |
107 case 0x75B22630: return "guid_header"; | |
108 case 0x75b22636: return "guid_data_chunk"; | |
109 case 0x33000890: return "guid_index_chunk"; | |
110 case 0xB7DC0791: return "guid_stream_header"; | |
111 case 0xD6E229D1: return "guid_header_2_0"; | |
112 case 0x8CABDCA1: return "guid_file_header"; | |
113 } | |
114 return NULL; | |
115 } | |
116 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
117 int asf_check_header(demuxer_t *demuxer){ |
1 | 118 unsigned char asfhdrguid[16]={0x30,0x26,0xB2,0x75,0x8E,0x66,0xCF,0x11,0xA6,0xD9,0x00,0xAA,0x00,0x62,0xCE,0x6C}; |
119 stream_read(demuxer->stream,(char*) &asfh,sizeof(asfh)); // header obj | |
120 // for(i=0;i<16;i++) printf(" %02X",temp[i]);printf("\n"); | |
121 // for(i=0;i<16;i++) printf(" %02X",asfhdrguid[i]);printf("\n"); | |
122 if(memcmp(asfhdrguid,asfh.objh.guid,16)){ | |
123 if(verbose) printf("ASF_check: not ASF guid!\n"); | |
124 return 0; // not ASF guid | |
125 } | |
126 if(asfh.cno>256){ | |
127 if(verbose) printf("ASF_check: invalid subchunks_no %d\n",(int) asfh.cno); | |
128 return 0; // invalid header??? | |
129 } | |
130 return 1; | |
131 } | |
132 | |
601 | 133 extern void print_wave_header(WAVEFORMATEX *h); |
134 extern void print_video_header(BITMAPINFOHEADER *h); | |
135 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
432
diff
changeset
|
136 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
|
137 static unsigned char buffer[1024]; |
1 | 138 |
139 #if 1 | |
340 | 140 //printf("ASF file! (subchunks: %d)\n",asfh.cno); |
1 | 141 while(!stream_eof(demuxer->stream)){ |
142 int pos,endpos; | |
143 pos=stream_tell(demuxer->stream); | |
144 stream_read(demuxer->stream,(char*) &objh,sizeof(objh)); | |
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); |
1 | 149 switch(*((unsigned int*)&objh.guid)){ |
150 case 0xB7DC0791: // guid_stream_header | |
151 stream_read(demuxer->stream,(char*) &streamh,sizeof(streamh)); | |
340 | 152 if(verbose){ |
1 | 153 printf("stream type: %s\n",asf_chunk_type(streamh.type)); |
154 printf("stream concealment: %s\n",asf_chunk_type(streamh.concealment)); | |
155 printf("type: %d bytes, stream: %d bytes ID: %d\n",(int)streamh.type_size,(int)streamh.stream_size,(int)streamh.stream_no); | |
600 | 156 printf("unk1: %lX unk2: %X\n",(unsigned long)streamh.unk1,(unsigned int)streamh.unk2); |
1 | 157 printf("FILEPOS=0x%X\n",stream_tell(demuxer->stream)); |
340 | 158 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
159 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
|
160 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
|
161 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
|
162 exit(1); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
163 } |
1 | 164 // type-specific data: |
165 stream_read(demuxer->stream,(char*) buffer,streamh.type_size); | |
166 switch(*((unsigned int*)&streamh.type)){ | |
291 | 167 case 0xF8699E40: { // guid_audio_stream |
426 | 168 sh_audio_t* sh_audio=new_sh_audio(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
|
169 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
|
170 memcpy(sh_audio->wf,buffer,streamh.type_size); |
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); |
1 | 172 if((*((unsigned int*)&streamh.concealment))==0xbfc3cd50){ |
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 } | |
340 | 181 printf("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 } |
185 case 0xBC19EFC0: { // guid_video_stream | |
426 | 186 sh_video_t* sh_video=new_sh_video(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); |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
188 // sh_video->bih=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
|
189 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
|
190 memcpy(sh_video->bih,&buffer[4+4+1+2],len); |
426 | 191 //sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; |
192 //sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
193 if(verbose>=1) print_video_header(sh_video->bih); |
1 | 194 //asf_video_id=streamh.stream_no & 0x7F; |
426 | 195 //if(demuxer->video->id==-1) demuxer->video->id=streamh.stream_no & 0x7F; |
1 | 196 break; |
291 | 197 } |
1 | 198 } |
199 // stream-specific data: | |
200 // stream_read(demuxer->stream,(char*) buffer,streamh.stream_size); | |
201 break; | |
202 // case 0xD6E229D1: return "guid_header_2_0"; | |
203 case 0x8CABDCA1: // guid_file_header | |
204 stream_read(demuxer->stream,(char*) &fileh,sizeof(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; |
209 case 0x75b22636: // 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 | |
215 // case 0x33000890: return "guid_index_chunk"; | |
216 | |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
217 case 0x75b22633: // Content description |
838 | 218 if(verbose){ |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
219 char *string; |
838 | 220 stream_read(demuxer->stream,(char*) &contenth,sizeof(contenth)); |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
221 // extract the title |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
222 if( contenth.title_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
223 string=(char*)malloc(contenth.title_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
224 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
|
225 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
|
226 } |
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 author |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
228 if( contenth.author_size!=0 ) { |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
229 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
|
230 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
|
231 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
|
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 copyright |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
234 if( contenth.copyright_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.copyright_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.copyright_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
237 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
|
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 comment |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
240 if( contenth.comment_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.comment_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.comment_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
243 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
|
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 rating |
843
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
246 if( contenth.rating_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.rating_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.rating_size); |
a88b87750b8a
Fixed crashing while reading the content description for some ASF file.
bertrand
parents:
838
diff
changeset
|
249 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
|
250 } |
816
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
251 printf("\n"); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
252 free(string); |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
253 } |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
254 break; |
6d72528d56ff
ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents:
692
diff
changeset
|
255 |
1 | 256 } // switch GUID |
692 | 257 |
258 if((*((unsigned int*)&objh.guid))==0x75b22636) break; // movi chunk | |
259 | |
1 | 260 if(!stream_seek(demuxer->stream,endpos)) break; |
261 } // while EOF | |
262 | |
263 #if 0 | |
264 if(verbose){ | |
265 printf("ASF duration: %d\n",(int)fileh.duration); | |
266 printf("ASF start pts: %d\n",(int)fileh.start_timestamp); | |
267 printf("ASF end pts: %d\n",(int)fileh.end_timestamp); | |
268 } | |
269 #endif | |
270 | |
271 #endif | |
272 return 1; | |
273 } |