2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // .asf fileformat docs from http://divx.euro.ru
26 #include "libavutil/common.h"
27 #include "ffmpeg_files/intreadwrite.h"
30 #include "stream/stream.h"
37 #include "asfheader.h"
40 // must be 0 for metadata record, might be non-zero for metadata lib record
41 uint16_t lang_list_index
;
50 static char* get_ucs2str(const uint16_t* inbuf
, uint16_t inlen
)
52 char* outbuf
= calloc(inlen
, 2);
57 mp_tmsg(MSGT_HEADER
, MSGL_ERR
, "Memory allocation failed.\n");
61 for (i
= 0; i
< inlen
/ 2; i
++) {
63 PUT_UTF8(AV_RL16(&inbuf
[i
]), tmp
, *q
++ = tmp
;)
68 static const char* asf_chunk_type(unsigned char* guid
) {
73 switch(ASF_LOAD_GUID_PREFIX(guid
)){
74 case ASF_GUID_PREFIX_audio_stream
:
75 return "guid_audio_stream";
76 case ASF_GUID_PREFIX_ext_audio_stream
:
77 return "guid_ext_audio_stream";
78 case ASF_GUID_PREFIX_ext_stream_embed_stream_header
:
79 return "guid_ext_stream_embed_stream_header";
80 case ASF_GUID_PREFIX_video_stream
:
81 return "guid_video_stream";
82 case ASF_GUID_PREFIX_audio_conceal_none
:
83 return "guid_audio_conceal_none";
84 case ASF_GUID_PREFIX_audio_conceal_interleave
:
85 return "guid_audio_conceal_interleave";
86 case ASF_GUID_PREFIX_header
:
88 case ASF_GUID_PREFIX_data_chunk
:
89 return "guid_data_chunk";
90 case ASF_GUID_PREFIX_index_chunk
:
91 return "guid_index_chunk";
92 case ASF_GUID_PREFIX_stream_header
:
93 return "guid_stream_header";
94 case ASF_GUID_PREFIX_header_2_0
:
95 return "guid_header_2_0";
96 case ASF_GUID_PREFIX_file_header
:
97 return "guid_file_header";
98 case ASF_GUID_PREFIX_content_desc
:
99 return "guid_content_desc";
100 case ASF_GUID_PREFIX_dvr_ms_timing_rep_data
:
101 return "guid_dvr_ms_timing_rep_data";
102 case ASF_GUID_PREFIX_dvr_ms_vid_frame_rep_data
:
103 return "guid_dvr_ms_vid_frame_rep_data";
105 strcpy(tmp
, "unknown guid ");
106 p
= tmp
+ strlen(tmp
);
107 for (i
= 0; i
< 16; i
++) {
108 if ((1 << i
) & ((1<<4) | (1<<6) | (1<<8))) *p
++ = '-';
109 sprintf(p
, "%02x", guid
[i
]);
116 int asf_check_header(demuxer_t
*demuxer
){
117 unsigned char asfhdrguid
[16]={0x30,0x26,0xB2,0x75,0x8E,0x66,0xCF,0x11,0xA6,0xD9,0x00,0xAA,0x00,0x62,0xCE,0x6C};
118 struct asf_priv
* asf
= calloc(1,sizeof(*asf
));
119 asf
->scrambling_h
=asf
->scrambling_w
=asf
->scrambling_b
=1;
120 stream_read(demuxer
->stream
,(char*) &asf
->header
,sizeof(asf
->header
)); // header obj
121 le2me_ASF_header_t(&asf
->header
); // swap to machine endian
122 // for(i=0;i<16;i++) printf(" %02X",temp[i]);printf("\n");
123 // for(i=0;i<16;i++) printf(" %02X",asfhdrguid[i]);printf("\n");
124 if(memcmp(asfhdrguid
,asf
->header
.objh
.guid
,16)){
125 mp_msg(MSGT_HEADER
,MSGL_V
,"ASF_check: not ASF guid!\n");
127 return 0; // not ASF guid
129 if(asf
->header
.cno
>256){
130 mp_msg(MSGT_HEADER
,MSGL_V
,"ASF_check: invalid subchunks_no %d\n",(int) asf
->header
.cno
);
132 return 0; // invalid header???
135 return DEMUXER_TYPE_ASF
;
138 static int get_ext_stream_properties(char *buf
, int buf_len
, int stream_num
, struct asf_priv
* asf
, int is_video
)
141 uint8_t *buffer
= &buf
[0];
145 while ((pos
= find_asf_guid(buf
, asf_ext_stream_header
, pos
, buf_len
)) >= 0) {
146 int this_stream_num
, stnamect
, payct
, i
;
147 int buf_max_index
=pos
+50;
148 if (buf_max_index
> buf_len
) return 0;
151 // the following info is available
152 // some of it may be useful but we're skipping it for now
153 // starttime(8 bytes), endtime(8),
154 // leak-datarate(4), bucket-datasize(4), init-bucket-fullness(4),
155 // alt-leak-datarate(4), alt-bucket-datasize(4), alt-init-bucket-fullness(4),
156 // max-object-size(4),
157 // flags(4) (reliable,seekable,no_cleanpoints?,resend-live-cleanpoints, rest of bits reserved)
160 bitrate
= AV_RL32(buffer
);
162 this_stream_num
=AV_RL16(buffer
);buffer
+=2;
164 if (this_stream_num
== stream_num
) {
166 if (buf_max_index
> buf_len
) return 0;
167 buffer
+=2; //skip stream-language-id-index
168 avg_ft
= AV_RL64(buffer
); // provided in 100ns units
170 asf
->bps
= bitrate
/ 8;
172 // after this are values for stream-name-count and
173 // payload-extension-system-count
174 // followed by associated info for each
175 stnamect
= AV_RL16(buffer
);buffer
+=2;
176 payct
= AV_RL16(buffer
);buffer
+=2;
178 // need to read stream names if present in order
179 // to get lengths - values are ignored for now
180 for (i
=0; i
<stnamect
; i
++) {
183 if (buf_max_index
> buf_len
) return 0;
184 buffer
+=2; //language_id_index
185 stream_name_len
= AV_RL16(buffer
);buffer
+=2;
186 buffer
+=stream_name_len
; //stream_name
187 buf_max_index
+=stream_name_len
;
188 if (buf_max_index
> buf_len
) return 0;
192 asf
->vid_repdata_count
= payct
;
193 asf
->vid_repdata_sizes
= malloc(payct
*sizeof(int));
195 asf
->aud_repdata_count
= payct
;
196 asf
->aud_repdata_sizes
= malloc(payct
*sizeof(int));
199 for (i
=0; i
<payct
; i
++) {
202 if (buf_max_index
> buf_len
) return 0;
203 // Each payload extension definition starts with a GUID.
204 // In dvr-ms files one of these indicates the presence an
205 // extension that contains pts values and this is always present
206 // in the video and audio streams.
207 // Another GUID indicates the presence of an extension
208 // that contains useful video frame demuxing information.
209 // Note that the extension data in each packet does not contain
210 // these GUIDs and that this header section defines the order the data
212 if (memcmp(buffer
, asf_dvr_ms_timing_rep_data
, 16) == 0) {
214 asf
->vid_ext_timing_index
= i
;
216 asf
->aud_ext_timing_index
= i
;
217 } else if (is_video
&& memcmp(buffer
, asf_dvr_ms_vid_frame_rep_data
, 16) == 0)
218 asf
->vid_ext_frame_index
= i
;
221 payload_len
= AV_RL16(buffer
);buffer
+=2;
224 asf
->vid_repdata_sizes
[i
] = payload_len
;
226 asf
->aud_repdata_sizes
[i
] = payload_len
;
236 #define CHECKDEC(l, n) if (((l) -= (n)) < 0) return 0
237 static char* read_meta_record(ASF_meta_record_t
* dest
, char* buf
,
240 CHECKDEC(*buf_len
, 2 + 2 + 2 + 2 + 4);
241 dest
->lang_list_index
= AV_RL16(buf
);
242 dest
->stream_num
= AV_RL16(&buf
[2]);
243 dest
->name_length
= AV_RL16(&buf
[4]);
244 dest
->data_type
= AV_RL16(&buf
[6]);
245 dest
->data_length
= AV_RL32(&buf
[8]);
246 buf
+= 2 + 2 + 2 + 2 + 4;
247 CHECKDEC(*buf_len
, dest
->name_length
);
248 dest
->name
= (uint16_t*)buf
;
249 buf
+= dest
->name_length
;
250 CHECKDEC(*buf_len
, dest
->data_length
);
252 buf
+= dest
->data_length
;
256 static int get_meta(char *buf
, int buf_len
, int this_stream_num
,
260 uint16_t records_count
;
261 uint16_t x
= 0, y
= 0;
263 if ((pos
= find_asf_guid(buf
, asf_metadata_header
, pos
, buf_len
)) < 0)
266 CHECKDEC(buf_len
, pos
);
268 CHECKDEC(buf_len
, 2);
269 records_count
= AV_RL16(buf
);
272 while (records_count
--) {
273 ASF_meta_record_t record_entry
;
276 if (!(buf
= read_meta_record(&record_entry
, buf
, &buf_len
)))
278 /* reserved, must be zero */
279 if (record_entry
.lang_list_index
)
281 /* match stream number: 0 to match all */
282 if (record_entry
.stream_num
&& record_entry
.stream_num
!= this_stream_num
)
284 if (!(name
= get_ucs2str(record_entry
.name
, record_entry
.name_length
))) {
285 mp_tmsg(MSGT_HEADER
, MSGL_ERR
, "Memory allocation failed.\n");
288 if (strcmp(name
, "AspectRatioX") == 0)
289 x
= AV_RL16(record_entry
.data
);
290 else if (strcmp(name
, "AspectRatioY") == 0)
291 y
= AV_RL16(record_entry
.data
);
295 *asp_ratio
= (float)x
/ (float)y
;
301 static int is_drm(char* buf
, int buf_len
)
303 uint32_t data_len
, type_len
, key_len
, url_len
;
304 int pos
= find_asf_guid(buf
, asf_content_encryption
, 0, buf_len
);
309 CHECKDEC(buf_len
, pos
+ 4);
311 data_len
= AV_RL32(buf
);
313 CHECKDEC(buf_len
, data_len
);
315 type_len
= AV_RL32(buf
);
318 CHECKDEC(buf_len
, 4 + type_len
+ 4);
321 if (buf
[0] != 'D' || buf
[1] != 'R' || buf
[2] != 'M' || buf
[3] != '\0')
325 key_len
= AV_RL32(buf
);
326 CHECKDEC(buf_len
, key_len
+ 4);
329 buf
[key_len
- 1] = '\0';
330 mp_msg(MSGT_HEADER
, MSGL_V
, "DRM Key ID: %s\n", buf
);
333 url_len
= AV_RL32(buf
);
334 CHECKDEC(buf_len
, url_len
);
337 buf
[url_len
- 1] = '\0';
338 mp_tmsg(MSGT_HEADER
, MSGL_INFO
, "DRM License URL: %s\n", buf
);
342 static int asf_init_audio_stream(demuxer_t
*demuxer
,struct asf_priv
* asf
, sh_audio_t
* sh_audio
, ASF_stream_header_t
*streamh
, int *ppos
, uint8_t** buf
, char *hdr
, unsigned int hdr_len
)
344 uint8_t *buffer
= *buf
;
347 sh_audio
->wf
=calloc((streamh
->type_size
<sizeof(*sh_audio
->wf
))?sizeof(*sh_audio
->wf
):streamh
->type_size
,1);
348 memcpy(sh_audio
->wf
,buffer
,streamh
->type_size
);
349 le2me_WAVEFORMATEX(sh_audio
->wf
);
350 if( mp_msg_test(MSGT_HEADER
,MSGL_V
) ) print_wave_header(sh_audio
->wf
,MSGL_V
);
351 if(ASF_LOAD_GUID_PREFIX(streamh
->concealment
)==ASF_GUID_PREFIX_audio_conceal_interleave
){
353 pos
+= streamh
->stream_size
;
354 if (pos
> hdr_len
) return 0;
355 asf
->scrambling_h
=buffer
[0];
356 asf
->scrambling_w
=(buffer
[2]<<8)|buffer
[1];
357 asf
->scrambling_b
=(buffer
[4]<<8)|buffer
[3];
358 if(asf
->scrambling_b
>0){
359 asf
->scrambling_w
/=asf
->scrambling_b
;
362 asf
->scrambling_b
=asf
->scrambling_h
=asf
->scrambling_w
=1;
364 mp_msg(MSGT_HEADER
,MSGL_V
,"ASF: audio scrambling: %d x %d x %d\n",asf
->scrambling_h
,asf
->scrambling_w
,asf
->scrambling_b
);
368 static int find_backwards_asf_guid(char *buf
, const char *guid
, int cur_pos
)
371 for (i
=cur_pos
-16; i
>0; i
--) {
372 if (memcmp(&buf
[i
], guid
, 16) == 0)
373 return i
+ 16 + 8; // point after guid + length
378 int read_asf_header(demuxer_t
*demuxer
,struct asf_priv
* asf
){
379 int hdr_len
= asf
->header
.objh
.size
- sizeof(asf
->header
);
382 char guid_buffer
[16];
383 int pos
, start
= stream_tell(demuxer
->stream
);
384 uint32_t* streams
= NULL
;
387 uint16_t stream_count
=0;
391 ASF_stream_header_t
*streamh
;
396 mp_msg(MSGT_HEADER
, MSGL_FATAL
, "Header size is too small.\n");
400 if (hdr_len
> 1024 * 1024) {
401 mp_tmsg(MSGT_HEADER
, MSGL_ERR
, "FATAL: header size bigger than 1 MB (%d)!\nPlease contact MPlayer authors, and upload/send this file.\n",
403 hdr_skip
= hdr_len
- 1024 * 1024;
404 hdr_len
= 1024 * 1024;
406 hdr
= malloc(hdr_len
);
408 mp_tmsg(MSGT_HEADER
, MSGL_FATAL
, "Could not allocate %d bytes for header.\n",
412 stream_read(demuxer
->stream
, hdr
, hdr_len
);
414 stream_skip(demuxer
->stream
, hdr_skip
);
415 if (stream_eof(demuxer
->stream
)) {
416 mp_tmsg(MSGT_HEADER
, MSGL_FATAL
, "EOF while reading ASF header, broken/incomplete file?\n");
420 if (is_drm(hdr
, hdr_len
))
421 mp_tmsg(MSGT_HEADER
, MSGL_FATAL
, "This file has been encumbered with DRM encryption, it will not play in MPlayer!\n");
423 if ((pos
= find_asf_guid(hdr
, asf_ext_stream_audio
, 0, hdr_len
)) >= 0)
425 // Special case: found GUID for dvr-ms audio.
426 // Now skip back to associated stream header.
429 sh_pos
= find_backwards_asf_guid(hdr
, asf_stream_header_guid
, pos
);
432 sh_audio_t
*sh_audio
;
434 mp_msg(MSGT_HEADER
, MSGL_V
, "read_asf_header found dvr-ms audio stream header pos=%d\n", sh_pos
);
435 // found audio stream header - following code reads header and
436 // initializes audio stream.
437 audio_pos
= pos
- 16 - 8;
438 streamh
= (ASF_stream_header_t
*)&hdr
[sh_pos
];
439 le2me_ASF_stream_header_t(streamh
);
440 audio_pos
+= 64; //16+16+4+4+4+16+4;
441 buffer
= &hdr
[audio_pos
];
442 sh_audio
=new_sh_audio(demuxer
,streamh
->stream_no
& 0x7F);
443 sh_audio
->needs_parsing
= 1;
444 mp_tmsg(MSGT_DEMUX
, MSGL_INFO
, "[%s] Audio stream found, -aid %d\n", "asfheader", streamh
->stream_no
& 0x7F);
446 if (!asf_init_audio_stream(demuxer
, asf
, sh_audio
, streamh
, &audio_pos
, &buffer
, hdr
, hdr_len
))
448 if (!get_ext_stream_properties(hdr
, hdr_len
, streamh
->stream_no
, asf
, 0))
452 // find stream headers
453 // only reset pos if we didnt find dvr_ms audio stream
454 // if we did find it then we want to avoid reading its header twice
458 while ((pos
= find_asf_guid(hdr
, asf_stream_header_guid
, pos
, hdr_len
)) >= 0)
460 streamh
= (ASF_stream_header_t
*)&hdr
[pos
];
461 pos
+= sizeof(ASF_stream_header_t
);
462 if (pos
> hdr_len
) goto len_err_out
;
463 le2me_ASF_stream_header_t(streamh
);
464 mp_msg(MSGT_HEADER
, MSGL_V
, "stream type: %s\n",
465 asf_chunk_type(streamh
->type
));
466 mp_msg(MSGT_HEADER
, MSGL_V
, "stream concealment: %s\n",
467 asf_chunk_type(streamh
->concealment
));
468 mp_msg(MSGT_HEADER
, MSGL_V
, "type: %d bytes, stream: %d bytes ID: %d\n",
469 (int)streamh
->type_size
, (int)streamh
->stream_size
,
470 (int)streamh
->stream_no
);
471 mp_msg(MSGT_HEADER
, MSGL_V
, "unk1: %lX unk2: %X\n",
472 (unsigned long)streamh
->unk1
, (unsigned int)streamh
->unk2
);
473 mp_msg(MSGT_HEADER
, MSGL_V
, "FILEPOS=0x%X\n", pos
+ start
);
474 // type-specific data:
476 pos
+= streamh
->type_size
;
477 if (pos
> hdr_len
) goto len_err_out
;
478 switch(ASF_LOAD_GUID_PREFIX(streamh
->type
)){
479 case ASF_GUID_PREFIX_audio_stream
: {
480 sh_audio_t
* sh_audio
=new_sh_audio(demuxer
,streamh
->stream_no
& 0x7F);
481 mp_tmsg(MSGT_DEMUX
, MSGL_INFO
, "[%s] Audio stream found, -aid %d\n", "asfheader", streamh
->stream_no
& 0x7F);
483 if (!asf_init_audio_stream(demuxer
, asf
, sh_audio
, streamh
, &pos
, &buffer
, hdr
, hdr_len
))
485 //if(demuxer->audio->id==-1) demuxer->audio->id=streamh.stream_no & 0x7F;
488 case ASF_GUID_PREFIX_video_stream
: {
491 sh_video_t
* sh_video
=new_sh_video(demuxer
,streamh
->stream_no
& 0x7F);
492 mp_tmsg(MSGT_DEMUX
, MSGL_INFO
, "[%s] Video stream found, -vid %d\n", "asfheader", streamh
->stream_no
& 0x7F);
493 len
=streamh
->type_size
-(4+4+1+2);
495 // sh_video->bih=malloc(chunksize); memset(sh_video->bih,0,chunksize);
496 sh_video
->bih
=calloc((len
<sizeof(*sh_video
->bih
))?sizeof(*sh_video
->bih
):len
,1);
497 memcpy(sh_video
->bih
,&buffer
[4+4+1+2],len
);
498 le2me_BITMAPINFOHEADER(sh_video
->bih
);
499 if (sh_video
->bih
->biSize
> len
&& sh_video
->bih
->biSize
> sizeof(*sh_video
->bih
))
500 sh_video
->bih
->biSize
= len
;
501 if (sh_video
->bih
->biCompression
== mmioFOURCC('D', 'V', 'R', ' ')) {
502 //mp_tmsg(MSGT_DEMUXER, MSGL_WARN, "DVR will probably only work with libavformat, try -demuxer 35 if you have problems\n");
503 //sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale;
504 //sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate;
505 asf
->asf_frame_state
=-1;
506 asf
->asf_frame_start_found
=0;
507 asf
->asf_is_dvr_ms
=1;
508 asf
->dvr_last_vid_pts
=0.0;
509 } else asf
->asf_is_dvr_ms
=0;
510 if (!get_ext_stream_properties(hdr
, hdr_len
, streamh
->stream_no
, asf
, 1))
512 if (get_meta(hdr
, hdr_len
, streamh
->stream_no
, &asp_ratio
)) {
513 sh_video
->aspect
= asp_ratio
* sh_video
->bih
->biWidth
/
514 sh_video
->bih
->biHeight
;
516 sh_video
->i_bps
= asf
->bps
;
518 if( mp_msg_test(MSGT_DEMUX
,MSGL_V
) ) print_video_header(sh_video
->bih
, MSGL_V
);
519 //asf_video_id=streamh.stream_no & 0x7F;
520 //if(demuxer->video->id==-1) demuxer->video->id=streamh.stream_no & 0x7F;
524 // stream-specific data:
525 // stream_read(demuxer->stream,(char*) buffer,streamh.stream_size);
529 pos
= find_asf_guid(hdr
, asf_file_header_guid
, 0, hdr_len
);
531 ASF_file_header_t
*fileh
= (ASF_file_header_t
*)&hdr
[pos
];
532 pos
+= sizeof(ASF_file_header_t
);
533 if (pos
> hdr_len
) goto len_err_out
;
534 le2me_ASF_file_header_t(fileh
);
535 mp_msg(MSGT_HEADER
, MSGL_V
, "ASF: packets: %d flags: %d "
536 "max_packet_size: %d min_packet_size: %d max_bitrate: %d "
538 (int)fileh
->num_packets
, (int)fileh
->flags
,
539 (int)fileh
->min_packet_size
, (int)fileh
->max_packet_size
,
540 (int)fileh
->max_bitrate
, (int)fileh
->preroll
);
541 asf
->packetsize
=fileh
->max_packet_size
;
542 asf
->packet
=malloc(asf
->packetsize
); // !!!
543 asf
->packetrate
=fileh
->max_bitrate
/8.0/(double)asf
->packetsize
;
544 asf
->movielength
=(fileh
->play_duration
-10000*fileh
->preroll
)/10000000.0;
547 // find content header
548 pos
= find_asf_guid(hdr
, asf_content_desc_guid
, 0, hdr_len
);
550 ASF_content_description_t
*contenth
= (ASF_content_description_t
*)&hdr
[pos
];
552 uint16_t* wstring
= NULL
;
554 pos
+= sizeof(ASF_content_description_t
);
555 if (pos
> hdr_len
) goto len_err_out
;
556 le2me_ASF_content_description_t(contenth
);
557 mp_msg(MSGT_HEADER
,MSGL_V
,"\n");
559 if((len
= contenth
->title_size
) != 0) {
560 wstring
= (uint16_t*)&hdr
[pos
];
562 if (pos
> hdr_len
) goto len_err_out
;
563 if ((string
= get_ucs2str(wstring
, len
))) {
564 mp_msg(MSGT_HEADER
,MSGL_V
," Title: %s\n", string
);
565 demux_info_add(demuxer
, "title", string
);
569 // extract the author
570 if((len
= contenth
->author_size
) != 0) {
571 wstring
= (uint16_t*)&hdr
[pos
];
573 if (pos
> hdr_len
) goto len_err_out
;
574 if ((string
= get_ucs2str(wstring
, len
))) {
575 mp_msg(MSGT_HEADER
,MSGL_V
," Author: %s\n", string
);
576 demux_info_add(demuxer
, "author", string
);
580 // extract the copyright
581 if((len
= contenth
->copyright_size
) != 0) {
582 wstring
= (uint16_t*)&hdr
[pos
];
584 if (pos
> hdr_len
) goto len_err_out
;
585 if ((string
= get_ucs2str(wstring
, len
))) {
586 mp_msg(MSGT_HEADER
,MSGL_V
," Copyright: %s\n", string
);
587 demux_info_add(demuxer
, "copyright", string
);
591 // extract the comment
592 if((len
= contenth
->comment_size
) != 0) {
593 wstring
= (uint16_t*)&hdr
[pos
];
595 if (pos
> hdr_len
) goto len_err_out
;
596 if ((string
= get_ucs2str(wstring
, len
))) {
597 mp_msg(MSGT_HEADER
,MSGL_V
," Comment: %s\n", string
);
598 demux_info_add(demuxer
, "comments", string
);
602 // extract the rating
603 if((len
= contenth
->rating_size
) != 0) {
604 wstring
= (uint16_t*)&hdr
[pos
];
606 if (pos
> hdr_len
) goto len_err_out
;
607 if ((string
= get_ucs2str(wstring
, len
))) {
608 mp_msg(MSGT_HEADER
,MSGL_V
," Rating: %s\n", string
);
612 mp_msg(MSGT_HEADER
,MSGL_V
,"\n");
615 // find content header
616 pos
= find_asf_guid(hdr
, asf_stream_group_guid
, 0, hdr_len
);
618 int max_streams
= (hdr_len
- pos
- 2) / 6;
619 uint16_t stream_id
, i
;
620 uint32_t max_bitrate
;
621 char *ptr
= &hdr
[pos
];
622 mp_msg(MSGT_HEADER
,MSGL_V
,"============ ASF Stream group == START ===\n");
623 if(max_streams
<= 0) goto len_err_out
;
624 stream_count
= AV_RL16(ptr
);
625 ptr
+= sizeof(uint16_t);
626 if(stream_count
> max_streams
) stream_count
= max_streams
;
628 streams
= malloc(2*stream_count
*sizeof(uint32_t));
629 mp_msg(MSGT_HEADER
,MSGL_V
," stream count=[0x%x][%u]\n", stream_count
, stream_count
);
630 for( i
=0 ; i
<stream_count
; i
++ ) {
631 stream_id
= AV_RL16(ptr
);
632 ptr
+= sizeof(uint16_t);
633 max_bitrate
= AV_RL32(ptr
);
634 ptr
+= sizeof(uint32_t);
635 mp_msg(MSGT_HEADER
,MSGL_V
," stream id=[0x%x][%u]\n", stream_id
, stream_id
);
636 mp_msg(MSGT_HEADER
,MSGL_V
," max bitrate=[0x%x][%u]\n", max_bitrate
, max_bitrate
);
637 streams
[2*i
] = stream_id
;
638 streams
[2*i
+1] = max_bitrate
;
640 mp_msg(MSGT_HEADER
,MSGL_V
,"============ ASF Stream group == END ===\n");
644 start
= stream_tell(demuxer
->stream
); // start of first data chunk
645 stream_read(demuxer
->stream
, guid_buffer
, 16);
646 if (memcmp(guid_buffer
, asf_data_chunk_guid
, 16) != 0) {
647 mp_tmsg(MSGT_HEADER
, MSGL_FATAL
, "No data chunk following header!\n");
652 // read length of chunk
653 data_len
= stream_read_qword_le(demuxer
->stream
);
654 demuxer
->movi_start
= stream_tell(demuxer
->stream
) + 26;
655 demuxer
->movi_end
= start
+ data_len
;
656 mp_msg(MSGT_HEADER
, MSGL_V
, "Found movie at 0x%X - 0x%X\n",
657 (int)demuxer
->movi_start
, (int)demuxer
->movi_end
);
660 // stream selection is done in the network code, it shouldn't be done here
661 // as the servers often do not care about what we requested.
663 uint32_t vr
= 0, ar
= 0,i
;
664 #ifdef CONFIG_NETWORKING
665 if( demuxer
->stream
->streaming_ctrl
!=NULL
) {
666 if( demuxer
->stream
->streaming_ctrl
->bandwidth
!=0 && demuxer
->stream
->streaming_ctrl
->data
!=NULL
) {
667 best_audio
= ((asf_http_streaming_ctrl_t
*)demuxer
->stream
->streaming_ctrl
->data
)->audio_id
;
668 best_video
= ((asf_http_streaming_ctrl_t
*)demuxer
->stream
->streaming_ctrl
->data
)->video_id
;
672 for(i
= 0; i
< stream_count
; i
++) {
673 uint32_t id
= streams
[2*i
];
674 uint32_t rate
= streams
[2*i
+1];
675 if(demuxer
->v_streams
[id
] && rate
> vr
) {
678 } else if(demuxer
->a_streams
[id
] && rate
> ar
) {
688 mp_msg(MSGT_HEADER
,MSGL_V
,"ASF: %d audio and %d video streams found\n",audio_streams
,video_streams
);
689 if(!audio_streams
) demuxer
->audio
->id
=-2; // nosound
690 else if(best_audio
> 0 && demuxer
->audio
->id
== -1) demuxer
->audio
->id
=best_audio
;
693 mp_tmsg(MSGT_HEADER
,MSGL_ERR
,"ASF: no audio or video headers found - broken file?\n");
696 demuxer
->video
->id
=-2; // audio-only
697 } else if (best_video
> 0 && demuxer
->video
->id
== -1) demuxer
->video
->id
= best_video
;
700 if( mp_msg_test(MSGT_HEADER
,MSGL_V
) ){
701 printf("ASF duration: %d\n",(int)fileh
.duration
);
702 printf("ASF start pts: %d\n",(int)fileh
.start_timestamp
);
703 printf("ASF end pts: %d\n",(int)fileh
.end_timestamp
);
710 mp_tmsg(MSGT_HEADER
, MSGL_FATAL
, "Invalid length in ASF header!\n");
713 if (streams
) free(streams
);