annotate libmpdemux/asfheader.c @ 16841:55b59021b953

Make include paths consistent among files in libvo. Since -I.. is added to the CFLAGS in the Makefile this should be safe.
author diego
date Sun, 23 Oct 2005 16:19:32 +0000
parents 6b86089c2edd
children dfbe8cd0e081
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 // .asf fileformat docs from http://divx.euro.ru
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
1728d249c783 missing unistd.h (requires for off_t under freebsd)
arpi
parents: 1342
diff changeset
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
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
10 #include "config.h"
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
11 #include "mp_msg.h"
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
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
4f3e8c8ea32f includes cleanup
arpi
parents: 2310
diff changeset
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
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
17 #include "asf.h"
833
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
18
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
19 #ifdef ARCH_X86
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
20 #define ASF_LOAD_GUID_PREFIX(guid) (*(uint32_t *)(guid))
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
21 #else
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
22 #define ASF_LOAD_GUID_PREFIX(guid) \
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
23 ((guid)[3] << 24 | (guid)[2] << 16 | (guid)[1] << 8 | (guid)[0])
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
24 #endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
26 #define ASF_GUID_PREFIX_audio_stream 0xF8699E40
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
27 #define ASF_GUID_PREFIX_video_stream 0xBC19EFC0
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
28 #define ASF_GUID_PREFIX_audio_conceal_none 0x49f1a440
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
29 #define ASF_GUID_PREFIX_audio_conceal_interleave 0xbfc3cd50
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
30 #define ASF_GUID_PREFIX_header 0x75B22630
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
31 #define ASF_GUID_PREFIX_data_chunk 0x75b22636
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
32 #define ASF_GUID_PREFIX_index_chunk 0x33000890
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
33 #define ASF_GUID_PREFIX_stream_header 0xB7DC0791
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
34 #define ASF_GUID_PREFIX_header_2_0 0xD6E229D1
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
35 #define ASF_GUID_PREFIX_file_header 0x8CABDCA1
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
38
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
39 /*
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
40 const char asf_audio_stream_guid[16] = {0x40, 0x9e, 0x69, 0xf8,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
41 0x4d, 0x5b, 0xcf, 0x11, 0xa8, 0xfd, 0x00, 0x80, 0x5f, 0x5c, 0x44, 0x2b};
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
42 const char asf_video_stream_guid[16] = {0xc0, 0xef, 0x19, 0xbc,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
43 0x4d, 0x5b, 0xcf, 0x11, 0xa8, 0xfd, 0x00, 0x80, 0x5f, 0x5c, 0x44, 0x2b};
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
44 */
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
45 const char asf_stream_header_guid[16] = {0x91, 0x07, 0xdc, 0xb7,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
46 0xb7, 0xa9, 0xcf, 0x11, 0x8e, 0xe6, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65};
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
47 const char asf_file_header_guid[16] = {0xa1, 0xdc, 0xab, 0x8c,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
48 0x47, 0xa9, 0xcf, 0x11, 0x8e, 0xe4, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65};
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
49 const char asf_content_desc_guid[16] = {0x33, 0x26, 0xb2, 0x75,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
50 0x8e, 0x66, 0xcf, 0x11, 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c};
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
51 const char asf_stream_group_guid[16] = {0xce, 0x75, 0xf8, 0x7b,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
52 0x8d, 0x46, 0xd1, 0x11, 0x8d, 0x82, 0x00, 0x60, 0x97, 0xc9, 0xa2, 0xb2};
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
53 const char asf_data_chunk_guid[16] = {0x36, 0x26, 0xb2, 0x75,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
54 0x8e, 0x66, 0xcf, 0x11, 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c};
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
55
587
8511095c5283 stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents: 432
diff changeset
56 static ASF_header_t asfh;
8511095c5283 stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents: 432
diff changeset
57
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
58 unsigned char* asf_packet=NULL;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
59 int asf_scrambling_h=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
60 int asf_scrambling_w=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
61 int asf_scrambling_b=1;
587
8511095c5283 stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents: 432
diff changeset
62 int asf_packetsize=0;
8208
ae5a2ae1c349 demuxer_control(), percent position and time length query implemented in
arpi
parents: 8027
diff changeset
63 double asf_packetrate=0;
ae5a2ae1c349 demuxer_control(), percent position and time length query implemented in
arpi
parents: 8027
diff changeset
64 int asf_movielength=0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
65
587
8511095c5283 stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents: 432
diff changeset
66 //int i;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
67
833
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
68 // the variable string is modify in this function
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
69 void pack_asf_string(char* string, int length) {
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
70 int i,j;
843
a88b87750b8a Fixed crashing while reading the content description for some ASF file.
bertrand
parents: 838
diff changeset
71 if( string==NULL ) return;
833
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
72 for( i=0, j=0; i<length && string[i]!='\0'; i+=2, j++) {
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
73 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
74 }
833
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
75 string[j]='\0';
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
76 }
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
77
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
78 // the variable string is modify in this function
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
79 void print_asf_string(const char* name, char* string, int length) {
b8cecdc0c67f Starting implementation of ASF network streaming.
bertrand
parents: 816
diff changeset
80 pack_asf_string(string, length);
1567
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
81 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
82 }
587
8511095c5283 stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents: 432
diff changeset
83
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
84 static char* asf_chunk_type(unsigned char* guid) {
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
85 static char tmp[60];
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
86 char *p;
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
87 int i;
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
88
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
89 switch(ASF_LOAD_GUID_PREFIX(guid)){
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
90 case ASF_GUID_PREFIX_audio_stream:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
91 return "guid_audio_stream";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
92 case ASF_GUID_PREFIX_video_stream:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
93 return "guid_video_stream";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
94 case ASF_GUID_PREFIX_audio_conceal_none:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
95 return "guid_audio_conceal_none";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
96 case ASF_GUID_PREFIX_audio_conceal_interleave:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
97 return "guid_audio_conceal_interleave";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
98 case ASF_GUID_PREFIX_header:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
99 return "guid_header";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
100 case ASF_GUID_PREFIX_data_chunk:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
101 return "guid_data_chunk";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
102 case ASF_GUID_PREFIX_index_chunk:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
103 return "guid_index_chunk";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
104 case ASF_GUID_PREFIX_stream_header:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
105 return "guid_stream_header";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
106 case ASF_GUID_PREFIX_header_2_0:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
107 return "guid_header_2_0";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
108 case ASF_GUID_PREFIX_file_header:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
109 return "guid_file_header";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
110 case ASF_GUID_PREFIX_content_desc:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
111 return "guid_content_desc";
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
112 default:
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
113 strcpy(tmp, "unknown guid ");
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
114 p = tmp + strlen(tmp);
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
115 for (i = 0; i < 16; i++) {
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
116 if ((1 << i) & ((1<<4) | (1<<6) | (1<<8))) *p++ = '-';
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
117 sprintf(p, "%02x", guid[i]);
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
118 p += 2;
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
119 }
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
120 return tmp;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
121 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
122 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
123
587
8511095c5283 stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents: 432
diff changeset
124 int asf_check_header(demuxer_t *demuxer){
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
125 unsigned char asfhdrguid[16]={0x30,0x26,0xB2,0x75,0x8E,0x66,0xCF,0x11,0xA6,0xD9,0x00,0xAA,0x00,0x62,0xCE,0x6C};
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
126 stream_read(demuxer->stream,(char*) &asfh,sizeof(asfh)); // header obj
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
127 le2me_ASF_header_t(&asfh); // swap to machine endian
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
128 // for(i=0;i<16;i++) printf(" %02X",temp[i]);printf("\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
129 // for(i=0;i<16;i++) printf(" %02X",asfhdrguid[i]);printf("\n");
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
130 if(memcmp(asfhdrguid,asfh.objh.guid,16)){
1567
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
131 mp_msg(MSGT_HEADER,MSGL_V,"ASF_check: not ASF guid!\n");
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
132 return 0; // not ASF guid
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
133 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
134 if(asfh.cno>256){
1567
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
135 mp_msg(MSGT_HEADER,MSGL_V,"ASF_check: invalid subchunks_no %d\n",(int) asfh.cno);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
136 return 0; // invalid header???
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
137 }
16175
6b86089c2edd Demuxer modularization
rtognimp
parents: 16149
diff changeset
138 return DEMUXER_TYPE_ASF;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
139 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
140
601
2d3a4339bb5a warnings killed
szabii
parents: 600
diff changeset
141 extern void print_wave_header(WAVEFORMATEX *h);
2d3a4339bb5a warnings killed
szabii
parents: 600
diff changeset
142 extern void print_video_header(BITMAPINFOHEADER *h);
2d3a4339bb5a warnings killed
szabii
parents: 600
diff changeset
143
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
144 int find_asf_guid(char *buf, const char *guid, int cur_pos, int buf_len)
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
145 {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
146 int i;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
147 for (i = cur_pos; i < buf_len - 19; i++) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
148 if (memcmp(&buf[i], guid, 16) == 0)
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
149 return i + 16 + 8; // point after guid + length
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
150 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
151 return -1;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
152 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
153
587
8511095c5283 stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents: 432
diff changeset
154 int read_asf_header(demuxer_t *demuxer){
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
155 unsigned int hdr_len = asfh.objh.size - sizeof(asfh);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
156 char *hdr = NULL;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
157 char guid_buffer[16];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
158 int pos, start = stream_tell(demuxer->stream);
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
159 uint32_t* streams = NULL;
4349
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
160 int audio_streams=0;
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
161 int video_streams=0;
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
162 uint16_t stream_count=0;
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
163 int best_video = -1;
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
164 int best_audio = -1;
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
165 uint64_t data_len;
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
166
15795
546b49d7147d M$ puts whole FAQs in these headers, so they can get really big...
reimar
parents: 15572
diff changeset
167 if (hdr_len > 1024 * 1024) {
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
168 mp_msg(MSGT_HEADER, MSGL_FATAL,
15795
546b49d7147d M$ puts whole FAQs in these headers, so they can get really big...
reimar
parents: 15572
diff changeset
169 "FATAL: header size bigger than 1 MB (%d)!\n"
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
170 "Please contact MPlayer authors, and upload/send this file.\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
171 hdr_len);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
172 return 0;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
173 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
174 hdr = malloc(hdr_len);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
175 if (!hdr) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
176 mp_msg(MSGT_HEADER, MSGL_FATAL, "Could not allocate %d bytes for header\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
177 hdr_len);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
178 return 0;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
179 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
180 stream_read(demuxer->stream, hdr, hdr_len);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
181 if (stream_eof(demuxer->stream)) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
182 mp_msg(MSGT_HEADER, MSGL_FATAL,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
183 "EOF while reading asf header, broken/incomplete file?\n");
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
184 goto err_out;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
185 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
186
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
187 // find stream headers
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
188 pos = 0;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
189 while ((pos = find_asf_guid(hdr, asf_stream_header_guid, pos, hdr_len)) >= 0)
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
190 {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
191 ASF_stream_header_t *streamh = (ASF_stream_header_t *)&hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
192 char *buffer;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
193 pos += sizeof(ASF_stream_header_t);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
194 if (pos > hdr_len) goto len_err_out;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
195 le2me_ASF_stream_header_t(streamh);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
196 mp_msg(MSGT_HEADER, MSGL_V, "stream type: %s\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
197 asf_chunk_type(streamh->type));
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
198 mp_msg(MSGT_HEADER, MSGL_V, "stream concealment: %s\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
199 asf_chunk_type(streamh->concealment));
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
200 mp_msg(MSGT_HEADER, MSGL_V, "type: %d bytes, stream: %d bytes ID: %d\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
201 (int)streamh->type_size, (int)streamh->stream_size,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
202 (int)streamh->stream_no);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
203 mp_msg(MSGT_HEADER, MSGL_V, "unk1: %lX unk2: %X\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
204 (unsigned long)streamh->unk1, (unsigned int)streamh->unk2);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
205 mp_msg(MSGT_HEADER, MSGL_V, "FILEPOS=0x%X\n", pos + start);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
206 // type-specific data:
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
207 buffer = &hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
208 pos += streamh->type_size;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
209 if (pos > hdr_len) goto len_err_out;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
210 switch(ASF_LOAD_GUID_PREFIX(streamh->type)){
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
211 case ASF_GUID_PREFIX_audio_stream: {
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
212 sh_audio_t* sh_audio=new_sh_audio(demuxer,streamh->stream_no & 0x7F);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
213 ++audio_streams;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
214 sh_audio->wf=calloc((streamh->type_size<sizeof(WAVEFORMATEX))?sizeof(WAVEFORMATEX):streamh->type_size,1);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
215 memcpy(sh_audio->wf,buffer,streamh->type_size);
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
216 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
217 if(verbose>=1) print_wave_header(sh_audio->wf);
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
218 if(ASF_LOAD_GUID_PREFIX(streamh->concealment)==ASF_GUID_PREFIX_audio_conceal_interleave){
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
219 buffer = &hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
220 pos += streamh->stream_size;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
221 if (pos > hdr_len) goto len_err_out;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
222 asf_scrambling_h=buffer[0];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
223 asf_scrambling_w=(buffer[2]<<8)|buffer[1];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
224 asf_scrambling_b=(buffer[4]<<8)|buffer[3];
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
225 asf_scrambling_w/=asf_scrambling_b;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
226 } else {
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
227 asf_scrambling_b=asf_scrambling_h=asf_scrambling_w=1;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
228 }
1567
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
229 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
26e513f392b2 new stream selection code
arpi_esp
parents: 340
diff changeset
230 //if(demuxer->audio->id==-1) demuxer->audio->id=streamh.stream_no & 0x7F;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
231 break;
291
da98e96499bb sh_audio/sh_video added, general codec cleanup
arpi_esp
parents: 109
diff changeset
232 }
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
233 case ASF_GUID_PREFIX_video_stream: {
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
234 sh_video_t* sh_video=new_sh_video(demuxer,streamh->stream_no & 0x7F);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
235 unsigned 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
236 ++video_streams;
432
5251b0c57e39 sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents: 426
diff changeset
237 // 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
238 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
239 memcpy(sh_video->bih,&buffer[4+4+1+2],len);
1342
baf646413408 ASF support for non-x86 cpus
jkeil
parents: 1289
diff changeset
240 le2me_BITMAPINFOHEADER(sh_video->bih);
15572
5d738acd664c support DVR format
reimar
parents: 14236
diff changeset
241 if (sh_video->bih->biCompression == mmioFOURCC('D', 'V', 'R', ' '))
5d738acd664c support DVR format
reimar
parents: 14236
diff changeset
242 mp_msg(MSGT_DEMUXER, MSGL_WARN, "DVR will probably only work with "
5d738acd664c support DVR format
reimar
parents: 14236
diff changeset
243 "libavformat, try -demuxer 35 if you have problems\n");
426
26e513f392b2 new stream selection code
arpi_esp
parents: 340
diff changeset
244 //sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale;
26e513f392b2 new stream selection code
arpi_esp
parents: 340
diff changeset
245 //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
246 if(verbose>=1) print_video_header(sh_video->bih);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
247 //asf_video_id=streamh.stream_no & 0x7F;
426
26e513f392b2 new stream selection code
arpi_esp
parents: 340
diff changeset
248 //if(demuxer->video->id==-1) demuxer->video->id=streamh.stream_no & 0x7F;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
249 break;
291
da98e96499bb sh_audio/sh_video added, general codec cleanup
arpi_esp
parents: 109
diff changeset
250 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
251 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
252 // stream-specific data:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
253 // stream_read(demuxer->stream,(char*) buffer,streamh.stream_size);
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
254 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
255
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
256 // find file header
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
257 pos = find_asf_guid(hdr, asf_file_header_guid, 0, hdr_len);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
258 if (pos >= 0) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
259 ASF_file_header_t *fileh = (ASF_file_header_t *)&hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
260 pos += sizeof(ASF_file_header_t);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
261 if (pos > hdr_len) goto len_err_out;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
262 le2me_ASF_file_header_t(fileh);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
263 mp_msg(MSGT_HEADER, MSGL_V, "ASF: packets: %d flags: %d "
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
264 "max_packet_size: %d min_packet_size: %d max_bitrate: %d "
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
265 "preroll: %d\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
266 (int)fileh->num_packets, (int)fileh->flags,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
267 (int)fileh->min_packet_size, (int)fileh->max_packet_size,
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
268 (int)fileh->max_bitrate, (int)fileh->preroll);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
269 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
270 asf_packet=malloc(asf_packetsize); // !!!
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
271 asf_packetrate=fileh->max_bitrate/8.0/(double)asf_packetsize;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
272 asf_movielength=fileh->send_duration/10000000LL;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
273 }
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
274
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
275 // find content header
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
276 pos = find_asf_guid(hdr, asf_content_desc_guid, 0, hdr_len);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
277 if (pos >= 0) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
278 ASF_content_description_t *contenth = (ASF_content_description_t *)&hdr[pos];
1003
26579d6e6c38 Initialisation of ptr string to NULL to avoid gcc warning.
bertrand
parents: 848
diff changeset
279 char *string=NULL;
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
280 pos += sizeof(ASF_content_description_t);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
281 if (pos > hdr_len) goto len_err_out;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
282 le2me_ASF_content_description_t(contenth);
1567
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
283 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
284 // extract the title
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
285 if( contenth->title_size!=0 ) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
286 string = &hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
287 pos += contenth->title_size;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
288 if (pos > hdr_len) goto len_err_out;
8027
b9da278e4c92 verbose can be negative
arpi
parents: 7889
diff changeset
289 if(verbose>0)
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
290 print_asf_string(" Title: ", string, contenth->title_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
291 else
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
292 pack_asf_string(string, contenth->title_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
293 demux_info_add(demuxer, "name", string);
843
a88b87750b8a Fixed crashing while reading the content description for some ASF file.
bertrand
parents: 838
diff changeset
294 }
816
6d72528d56ff ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents: 692
diff changeset
295 // extract the author
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
296 if( contenth->author_size!=0 ) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
297 string = &hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
298 pos += contenth->author_size;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
299 if (pos > hdr_len) goto len_err_out;
8027
b9da278e4c92 verbose can be negative
arpi
parents: 7889
diff changeset
300 if(verbose>0)
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
301 print_asf_string(" Author: ", string, contenth->author_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
302 else
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
303 pack_asf_string(string, contenth->author_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
304 demux_info_add(demuxer, "author", string);
843
a88b87750b8a Fixed crashing while reading the content description for some ASF file.
bertrand
parents: 838
diff changeset
305 }
816
6d72528d56ff ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents: 692
diff changeset
306 // extract the copyright
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
307 if( contenth->copyright_size!=0 ) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
308 string = &hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
309 pos += contenth->copyright_size;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
310 if (pos > hdr_len) goto len_err_out;
8027
b9da278e4c92 verbose can be negative
arpi
parents: 7889
diff changeset
311 if(verbose>0)
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
312 print_asf_string(" Copyright: ", string, contenth->copyright_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
313 else
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
314 pack_asf_string(string, contenth->copyright_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
315 demux_info_add(demuxer, "copyright", string);
843
a88b87750b8a Fixed crashing while reading the content description for some ASF file.
bertrand
parents: 838
diff changeset
316 }
816
6d72528d56ff ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents: 692
diff changeset
317 // extract the comment
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
318 if( contenth->comment_size!=0 ) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
319 string = &hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
320 pos += contenth->comment_size;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
321 if (pos > hdr_len) goto len_err_out;
8027
b9da278e4c92 verbose can be negative
arpi
parents: 7889
diff changeset
322 if(verbose>0)
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
323 print_asf_string(" Comment: ", string, contenth->comment_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
324 else
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
325 pack_asf_string(string, contenth->comment_size);
3070
dee70d05a406 added demux_info support
alex
parents: 2338
diff changeset
326 demux_info_add(demuxer, "comments", string);
843
a88b87750b8a Fixed crashing while reading the content description for some ASF file.
bertrand
parents: 838
diff changeset
327 }
816
6d72528d56ff ASF description printing patch by Bertrand BAUDET, fixed segfault of hory_bug/a.asf
arpi_esp
parents: 692
diff changeset
328 // extract the rating
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
329 if( contenth->rating_size!=0 ) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
330 string = &hdr[pos];
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
331 pos += contenth->rating_size;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
332 if (pos > hdr_len) goto len_err_out;
8027
b9da278e4c92 verbose can be negative
arpi
parents: 7889
diff changeset
333 if(verbose>0)
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
334 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
335 }
1567
5c7760aa4f94 printf->mp_msg/mp_dbg
arpi
parents: 1485
diff changeset
336 mp_msg(MSGT_HEADER,MSGL_V,"\n");
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
337 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
338
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
339 // find content header
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
340 pos = find_asf_guid(hdr, asf_stream_group_guid, 0, hdr_len);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
341 if (pos >= 0) {
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
342 uint16_t stream_id, i;
4333
c67d50d4a889 Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents: 4288
diff changeset
343 uint32_t max_bitrate;
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
344 char *ptr = &hdr[pos];
12219
768f87d536f3 less verbosity + printf --> mp_msg
diego
parents: 10121
diff changeset
345 mp_msg(MSGT_HEADER,MSGL_V,"============ ASF Stream group == START ===\n");
5618
f02b9bec4eed Changed the big handling to make it use mplayer's endian macros.
bertrand
parents: 5597
diff changeset
346 stream_count = le2me_16(*(uint16_t*)ptr);
4333
c67d50d4a889 Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents: 4288
diff changeset
347 ptr += sizeof(uint16_t);
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
348 if (ptr > &hdr[hdr_len]) goto len_err_out;
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
349 if(stream_count > 0)
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
350 streams = (uint32_t*)malloc(2*stream_count*sizeof(uint32_t));
12219
768f87d536f3 less verbosity + printf --> mp_msg
diego
parents: 10121
diff changeset
351 mp_msg(MSGT_HEADER,MSGL_V," stream count=[0x%x][%u]\n", stream_count, stream_count );
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
352 for( i=0 ; i<stream_count ; i++ ) {
5618
f02b9bec4eed Changed the big handling to make it use mplayer's endian macros.
bertrand
parents: 5597
diff changeset
353 stream_id = le2me_16(*(uint16_t*)ptr);
4333
c67d50d4a889 Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents: 4288
diff changeset
354 ptr += sizeof(uint16_t);
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
355 if (ptr > &hdr[hdr_len]) goto len_err_out;
6187
50858d90c8d0 On the sun all int32 objects have to be aligned on 32 bit boundaries. With
arpi
parents: 5618
diff changeset
356 memcpy(&max_bitrate, ptr, sizeof(uint32_t));// workaround unaligment bug on sparc
50858d90c8d0 On the sun all int32 objects have to be aligned on 32 bit boundaries. With
arpi
parents: 5618
diff changeset
357 max_bitrate = le2me_32(max_bitrate);
4333
c67d50d4a889 Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents: 4288
diff changeset
358 ptr += sizeof(uint32_t);
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
359 if (ptr > &hdr[hdr_len]) goto len_err_out;
12219
768f87d536f3 less verbosity + printf --> mp_msg
diego
parents: 10121
diff changeset
360 mp_msg(MSGT_HEADER,MSGL_V," stream id=[0x%x][%u]\n", stream_id, stream_id );
768f87d536f3 less verbosity + printf --> mp_msg
diego
parents: 10121
diff changeset
361 mp_msg(MSGT_HEADER,MSGL_V," max bitrate=[0x%x][%u]\n", max_bitrate, max_bitrate );
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
362 streams[2*i] = stream_id;
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
363 streams[2*i+1] = max_bitrate;
4333
c67d50d4a889 Add a parser for the "ASF group stream object" and display the bitrate values
bertrand
parents: 4288
diff changeset
364 }
12219
768f87d536f3 less verbosity + printf --> mp_msg
diego
parents: 10121
diff changeset
365 mp_msg(MSGT_HEADER,MSGL_V,"============ ASF Stream group == END ===\n");
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
366 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
367 free(hdr);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
368 hdr = NULL;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
369 start = stream_tell(demuxer->stream); // start of first data chunk
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
370 stream_read(demuxer->stream, guid_buffer, 16);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
371 if (memcmp(guid_buffer, asf_data_chunk_guid, 16) != 0) {
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
372 mp_msg(MSGT_HEADER, MSGL_FATAL, "No data chunk following header!\n");
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
373 return 0;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
374 }
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
375 // read length of chunk
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
376 stream_read(demuxer->stream, (char *)&data_len, sizeof(data_len));
16149
5a97461d9ada 10l, incorrect usage of le2me_*
reimar
parents: 15795
diff changeset
377 data_len = le2me_64(data_len);
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
378 demuxer->movi_start = stream_tell(demuxer->stream) + 26;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
379 demuxer->movi_end = start + data_len;
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
380 mp_msg(MSGT_HEADER, MSGL_V, "Found movie at 0x%X - 0x%X\n",
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
381 (int)demuxer->movi_start, (int)demuxer->movi_end);
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
382
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
383 if(streams) {
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
384 // stream selection is done in the network code, it shouldn't be done here
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
385 // as the servers often do not care about what we requested.
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
386 #if 0
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
387 uint32_t vr = 0, ar = 0,i;
10121
d42177a0da2a Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents: 8208
diff changeset
388 #ifdef MPLAYER_NETWORK
6645
fc2de514a140 If network is used, take the streams id that were requested.
bertrand
parents: 6187
diff changeset
389 if( demuxer->stream->streaming_ctrl!=NULL ) {
fc2de514a140 If network is used, take the streams id that were requested.
bertrand
parents: 6187
diff changeset
390 if( demuxer->stream->streaming_ctrl->bandwidth!=0 && demuxer->stream->streaming_ctrl->data!=NULL ) {
fc2de514a140 If network is used, take the streams id that were requested.
bertrand
parents: 6187
diff changeset
391 best_audio = ((asf_http_streaming_ctrl_t*)demuxer->stream->streaming_ctrl->data)->audio_id;
fc2de514a140 If network is used, take the streams id that were requested.
bertrand
parents: 6187
diff changeset
392 best_video = ((asf_http_streaming_ctrl_t*)demuxer->stream->streaming_ctrl->data)->video_id;
fc2de514a140 If network is used, take the streams id that were requested.
bertrand
parents: 6187
diff changeset
393 }
6666
349138a7b414 Fix -bandwidth if no streaming available, 10l ;)
atmos4
parents: 6645
diff changeset
394 } else
349138a7b414 Fix -bandwidth if no streaming available, 10l ;)
atmos4
parents: 6645
diff changeset
395 #endif
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
396 for(i = 0; i < stream_count; i++) {
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
397 uint32_t id = streams[2*i];
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
398 uint32_t rate = streams[2*i+1];
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
399 if(demuxer->v_streams[id] && rate > vr) {
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
400 vr = rate;
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
401 best_video = id;
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
402 } else if(demuxer->a_streams[id] && rate > ar) {
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
403 ar = rate;
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
404 best_audio = id;
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
405 }
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
406 }
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
407 #endif
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
408 free(streams);
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
409 streams = NULL;
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
410 }
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
411
4349
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
412 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
413 if(!audio_streams) demuxer->audio->id=-2; // nosound
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
414 else if(best_audio > 0 && demuxer->audio->id == -1) demuxer->audio->id=best_audio;
4349
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
415 if(!video_streams){
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
416 if(!audio_streams){
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
417 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
418 return 0;
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
419 }
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
420 demuxer->video->id=-2; // audio-only
4538
354048e506ab Added auto selection of the best streams and fixed a few compiler
albeu
parents: 4349
diff changeset
421 } else if (best_video > 0 && demuxer->video->id == -1) demuxer->video->id = best_video;
4349
266cb1a68519 pre-check for audio/video streams (hope it fix wma steraming)
arpi
parents: 4333
diff changeset
422
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
423 #if 0
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
424 if(verbose){
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
425 printf("ASF duration: %d\n",(int)fileh.duration);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
426 printf("ASF start pts: %d\n",(int)fileh.start_timestamp);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
427 printf("ASF end pts: %d\n",(int)fileh.end_timestamp);
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
428 }
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
429 #endif
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
430
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
431 return 1;
14236
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
432
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
433 len_err_out:
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
434 mp_msg(MSGT_HEADER, MSGL_FATAL, "Invalid length in ASF header!\n");
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
435 err_out:
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
436 if (hdr) free(hdr);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
437 if (streams) free(streams);
2dc4595c3998 fix stream selection and -bandwidth for mms-over-http.
reimar
parents: 12219
diff changeset
438 return 0;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
439 }