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