Mercurial > mplayer.hg
annotate libmpdemux/asf_mmst_streaming.c @ 15453:d7a2ffc6e694
compilation/link fix with --disable-qtx --disable-dshow
patch by Gianluigi Tiesi <mplayer at netfarm dot it>
author | diego |
---|---|
date | Sat, 14 May 2005 09:03:00 +0000 |
parents | ed74657f25b1 |
children | 941b1a71351f |
rev | line source |
---|---|
6092 | 1 // mmst implementation taken from the xine-mms plugin made by majormms (http://geocities.com/majormms/) |
2 // | |
3 // ported to mplayer by Abhijeet Phatak <abhijeetphatak@yahoo.com> | |
4 // date : 16 April 2002 | |
5 // | |
6 // information about the mms protocol can be find at http://get.to/sdp | |
7 // | |
8 | |
9 | |
10 #include <stdio.h> | |
11 #include <stdlib.h> | |
12 #include <string.h> | |
13 #include <unistd.h> | |
14 #include <errno.h> | |
7880 | 15 #include <inttypes.h> |
6092 | 16 |
17 #include "config.h" | |
18 | |
10281 | 19 #ifndef HAVE_WINSOCK2 |
20 #define closesocket close | |
21 #else | |
22 #include <winsock2.h> | |
23 #endif | |
24 | |
13600
a0bb374553a1
typo noticed by Shixin Zeng <shixinzeng at sjtu dot edu dot cn>
diego
parents:
12968
diff
changeset
|
25 #ifndef USE_SETLOCALE |
12675
7c5dee73a7dc
disable iconv in case setlocale is disabled - compile fix
alex
parents:
12674
diff
changeset
|
26 #undef USE_ICONV |
7c5dee73a7dc
disable iconv in case setlocale is disabled - compile fix
alex
parents:
12674
diff
changeset
|
27 #endif |
7c5dee73a7dc
disable iconv in case setlocale is disabled - compile fix
alex
parents:
12674
diff
changeset
|
28 |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
29 #ifdef USE_ICONV |
12674
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
30 #include <iconv.h> |
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
31 #ifdef USE_LANGINFO |
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
32 #include <langinfo.h> |
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
33 #endif |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
34 #endif |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
35 |
6092 | 36 #include "url.h" |
37 #include "asf.h" | |
38 | |
39 #include "stream.h" | |
40 | |
41 #include "network.h" | |
42 | |
43 #define BUF_SIZE 102400 | |
14163
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
44 #define HDR_BUF_SIZE 8192 |
15181
ed74657f25b1
Use define instead of hardcodec value for max streams number
rtognimp
parents:
15173
diff
changeset
|
45 #define MAX_STREAMS 20 |
6092 | 46 |
47 typedef struct | |
48 { | |
49 uint8_t buf[BUF_SIZE]; | |
50 int num_bytes; | |
51 | |
52 } command_t; | |
53 | |
7880 | 54 static int seq_num; |
55 static int num_stream_ids; | |
15181
ed74657f25b1
Use define instead of hardcodec value for max streams number
rtognimp
parents:
15173
diff
changeset
|
56 static int stream_ids[MAX_STREAMS]; |
6092 | 57 |
58 static int get_data (int s, char *buf, size_t count); | |
59 | |
60 static void put_32 (command_t *cmd, uint32_t value) | |
61 { | |
62 cmd->buf[cmd->num_bytes ] = value % 256; | |
63 value = value >> 8; | |
64 cmd->buf[cmd->num_bytes+1] = value % 256 ; | |
65 value = value >> 8; | |
66 cmd->buf[cmd->num_bytes+2] = value % 256 ; | |
67 value = value >> 8; | |
68 cmd->buf[cmd->num_bytes+3] = value % 256 ; | |
69 | |
70 cmd->num_bytes += 4; | |
71 } | |
72 | |
73 static uint32_t get_32 (unsigned char *cmd, int offset) | |
74 { | |
75 uint32_t ret; | |
76 | |
77 ret = cmd[offset] ; | |
78 ret |= cmd[offset+1]<<8 ; | |
79 ret |= cmd[offset+2]<<16 ; | |
80 ret |= cmd[offset+3]<<24 ; | |
81 | |
82 return ret; | |
83 } | |
84 | |
85 static void send_command (int s, int command, uint32_t switches, | |
86 uint32_t extra, int length, | |
87 char *data) | |
88 { | |
89 command_t cmd; | |
90 int len8; | |
91 | |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
92 len8 = (length + 7) / 8; |
6092 | 93 |
94 cmd.num_bytes = 0; | |
95 | |
96 put_32 (&cmd, 0x00000001); /* start sequence */ | |
97 put_32 (&cmd, 0xB00BFACE); /* #-)) */ | |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
98 put_32 (&cmd, len8*8 + 32); |
6092 | 99 put_32 (&cmd, 0x20534d4d); /* protocol type "MMS " */ |
100 put_32 (&cmd, len8 + 4); | |
101 put_32 (&cmd, seq_num); | |
102 seq_num++; | |
103 put_32 (&cmd, 0x0); /* unknown */ | |
104 put_32 (&cmd, 0x0); | |
105 put_32 (&cmd, len8+2); | |
106 put_32 (&cmd, 0x00030000 | command); /* dir | command */ | |
107 put_32 (&cmd, switches); | |
108 put_32 (&cmd, extra); | |
109 | |
110 memcpy (&cmd.buf[48], data, length); | |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
111 if (length & 7) |
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
112 memset(&cmd.buf[48 + length], 0, 8 - (length & 7)); |
6092 | 113 |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
114 if (send (s, cmd.buf, len8*8+48, 0) != (len8*8+48)) { |
6092 | 115 printf ("write error\n"); |
116 } | |
117 } | |
118 | |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
119 #ifdef USE_ICONV |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
120 static iconv_t url_conv; |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
121 #endif |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
122 |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
123 static void string_utf16(char *dest, char *src, int len) { |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
124 int i; |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
125 #ifdef USE_ICONV |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
126 size_t len1, len2; |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
127 char *ip, *op; |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
128 |
11412 | 129 if (url_conv != (iconv_t)(-1)) |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
130 { |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
131 memset(dest, 0, 1000); |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
132 len1 = len; len2 = 1000; |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
133 ip = src; op = dest; |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
134 |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
135 iconv(url_conv, &ip, &len1, &op, &len2); |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
136 } |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
137 else |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
138 { |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
139 #endif |
15150
38ec64821910
Make string_utf16 code behave almost the same with or without iconv
rtognimp
parents:
14542
diff
changeset
|
140 if (len > 499) len = 499; |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
141 for (i=0; i<len; i++) { |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
142 dest[i*2] = src[i]; |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
143 dest[i*2+1] = 0; |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
144 } |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
145 /* trailing zeroes */ |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
146 dest[i*2] = 0; |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
147 dest[i*2+1] = 0; |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
148 #ifdef USE_ICONV |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
149 } |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
150 #endif |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
151 } |
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
152 |
6092 | 153 static void get_answer (int s) |
154 { | |
155 char data[BUF_SIZE]; | |
156 int command = 0x1b; | |
157 | |
158 while (command == 0x1b) { | |
159 int len; | |
160 | |
10206
35e306346e59
Using recv/send instead read/write for proper MinGW support (it's a 4.2BSD standard). Patch by FloDt <flodt8@yahoo.de>
alex
parents:
10183
diff
changeset
|
161 len = recv (s, data, BUF_SIZE, 0) ; |
6092 | 162 if (!len) { |
163 printf ("\nalert! eof\n"); | |
164 return; | |
165 } | |
166 | |
167 command = get_32 (data, 36) & 0xFFFF; | |
168 | |
169 if (command == 0x1b) | |
170 send_command (s, 0x1b, 0, 0, 0, data); | |
171 } | |
172 } | |
173 | |
174 static int get_data (int s, char *buf, size_t count) | |
175 { | |
7953 | 176 ssize_t len; |
177 size_t total = 0; | |
6092 | 178 |
179 while (total < count) { | |
180 | |
10206
35e306346e59
Using recv/send instead read/write for proper MinGW support (it's a 4.2BSD standard). Patch by FloDt <flodt8@yahoo.de>
alex
parents:
10183
diff
changeset
|
181 len = recv (s, &buf[total], count-total, 0); |
6092 | 182 |
12545 | 183 if (len<=0) { |
6092 | 184 perror ("read error:"); |
185 return 0; | |
186 } | |
187 | |
188 total += len; | |
189 | |
190 if (len != 0) { | |
191 // printf ("[%d/%d]", total, count); | |
192 fflush (stdout); | |
193 } | |
194 | |
195 } | |
196 | |
197 return 1; | |
198 | |
199 } | |
200 | |
201 static int get_header (int s, uint8_t *header, streaming_ctrl_t *streaming_ctrl) | |
202 { | |
203 unsigned char pre_header[8]; | |
7953 | 204 int header_len; |
6092 | 205 |
206 header_len = 0; | |
207 | |
208 while (1) { | |
209 if (!get_data (s, pre_header, 8)) { | |
210 printf ("pre-header read failed\n"); | |
211 return 0; | |
212 } | |
213 if (pre_header[4] == 0x02) { | |
214 | |
215 int packet_len; | |
216 | |
217 packet_len = (pre_header[7] << 8 | pre_header[6]) - 8; | |
218 | |
219 // printf ("asf header packet detected, len=%d\n", packet_len); | |
220 | |
14163
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
221 if (packet_len < 0 || packet_len > HDR_BUF_SIZE - header_len) { |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
222 mp_msg(MSGT_NETWORK, MSGL_FATAL, "Invalid header size, giving up\n"); |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
223 return 0; |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
224 } |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
225 |
6092 | 226 if (!get_data (s, &header[header_len], packet_len)) { |
227 printf ("header data read failed\n"); | |
228 return 0; | |
229 } | |
230 | |
231 header_len += packet_len; | |
232 | |
233 if ( (header[header_len-1] == 1) && (header[header_len-2]==1)) { | |
234 | |
235 | |
236 if( streaming_bufferize( streaming_ctrl, header, header_len )<0 ) { | |
237 return -1; | |
238 } | |
239 | |
240 // printf ("get header packet finished\n"); | |
241 | |
242 return (header_len); | |
243 | |
244 } | |
245 | |
246 } else { | |
247 | |
7953 | 248 int32_t packet_len; |
6092 | 249 int command; |
250 char data[BUF_SIZE]; | |
251 | |
7953 | 252 if (!get_data (s, (char*)&packet_len, 4)) { |
6092 | 253 printf ("packet_len read failed\n"); |
254 return 0; | |
255 } | |
256 | |
7953 | 257 packet_len = get_32 ((unsigned char*)&packet_len, 0) + 4; |
6092 | 258 |
259 // printf ("command packet detected, len=%d\n", packet_len); | |
14163
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
260 |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
261 if (packet_len < 0 || packet_len > BUF_SIZE) { |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
262 mp_msg(MSGT_NETWORK, MSGL_FATAL, |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
263 "Invalid rtsp packet size, giving up\n"); |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
264 return 0; |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
265 } |
6092 | 266 |
267 if (!get_data (s, data, packet_len)) { | |
268 printf ("command data read failed\n"); | |
269 return 0; | |
270 } | |
271 | |
272 command = get_32 (data, 24) & 0xFFFF; | |
273 | |
274 // printf ("command: %02x\n", command); | |
275 | |
276 if (command == 0x1b) | |
277 send_command (s, 0x1b, 0, 0, 0, data); | |
278 | |
279 } | |
280 | |
281 // printf ("get header packet succ\n"); | |
282 } | |
283 } | |
284 | |
7880 | 285 static int interp_header (uint8_t *header, int header_len) |
6092 | 286 { |
287 int i; | |
7472
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
7309
diff
changeset
|
288 int packet_length=-1; |
6092 | 289 |
290 /* | |
291 * parse header | |
292 */ | |
293 | |
294 i = 30; | |
295 while (i<header_len) { | |
296 | |
297 uint64_t guid_1, guid_2, length; | |
298 | |
299 guid_2 = (uint64_t)header[i] | ((uint64_t)header[i+1]<<8) | |
300 | ((uint64_t)header[i+2]<<16) | ((uint64_t)header[i+3]<<24) | |
301 | ((uint64_t)header[i+4]<<32) | ((uint64_t)header[i+5]<<40) | |
302 | ((uint64_t)header[i+6]<<48) | ((uint64_t)header[i+7]<<56); | |
303 i += 8; | |
304 | |
305 guid_1 = (uint64_t)header[i] | ((uint64_t)header[i+1]<<8) | |
306 | ((uint64_t)header[i+2]<<16) | ((uint64_t)header[i+3]<<24) | |
307 | ((uint64_t)header[i+4]<<32) | ((uint64_t)header[i+5]<<40) | |
308 | ((uint64_t)header[i+6]<<48) | ((uint64_t)header[i+7]<<56); | |
309 i += 8; | |
310 | |
311 // printf ("guid found: %016llx%016llx\n", guid_1, guid_2); | |
312 | |
313 length = (uint64_t)header[i] | ((uint64_t)header[i+1]<<8) | |
314 | ((uint64_t)header[i+2]<<16) | ((uint64_t)header[i+3]<<24) | |
315 | ((uint64_t)header[i+4]<<32) | ((uint64_t)header[i+5]<<40) | |
316 | ((uint64_t)header[i+6]<<48) | ((uint64_t)header[i+7]<<56); | |
317 | |
318 i += 8; | |
319 | |
12121 | 320 if ( (guid_1 == 0x6cce6200aa00d9a6ULL) && (guid_2 == 0x11cf668e75b22630ULL) ) { |
6092 | 321 printf ("header object\n"); |
12121 | 322 } else if ((guid_1 == 0x6cce6200aa00d9a6ULL) && (guid_2 == 0x11cf668e75b22636ULL)) { |
6092 | 323 printf ("data object\n"); |
12121 | 324 } else if ((guid_1 == 0x6553200cc000e48eULL) && (guid_2 == 0x11cfa9478cabdca1ULL)) { |
6092 | 325 |
326 packet_length = get_32(header, i+92-24); | |
327 | |
328 printf ("file object, packet length = %d (%d)\n", | |
329 packet_length, get_32(header, i+96-24)); | |
330 | |
331 | |
12121 | 332 } else if ((guid_1 == 0x6553200cc000e68eULL) && (guid_2 == 0x11cfa9b7b7dc0791ULL)) { |
6092 | 333 |
334 int stream_id = header[i+48] | header[i+49] << 8; | |
335 | |
336 printf ("stream object, stream id: %d\n", stream_id); | |
337 | |
15181
ed74657f25b1
Use define instead of hardcodec value for max streams number
rtognimp
parents:
15173
diff
changeset
|
338 if (num_stream_ids < MAX_STREAMS) { |
6092 | 339 stream_ids[num_stream_ids] = stream_id; |
340 num_stream_ids++; | |
15173
424386614ad5
Fix potential buffer overflow for urls with more than 20 streams
rtognimp
parents:
15150
diff
changeset
|
341 } else { |
424386614ad5
Fix potential buffer overflow for urls with more than 20 streams
rtognimp
parents:
15150
diff
changeset
|
342 printf ("too many id, stream skipped"); |
424386614ad5
Fix potential buffer overflow for urls with more than 20 streams
rtognimp
parents:
15150
diff
changeset
|
343 } |
6092 | 344 |
345 } else { | |
346 printf ("unknown object\n"); | |
347 } | |
348 | |
349 // printf ("length : %lld\n", length); | |
350 | |
351 i += length-24; | |
352 | |
353 } | |
354 | |
355 return packet_length; | |
356 | |
357 } | |
358 | |
359 | |
7880 | 360 static int get_media_packet (int s, int padding, streaming_ctrl_t *stream_ctrl) { |
6092 | 361 unsigned char pre_header[8]; |
362 char data[BUF_SIZE]; | |
7880 | 363 |
364 if (!get_data (s, pre_header, 8)) { | |
365 printf ("pre-header read failed\n"); | |
366 return 0; | |
367 } | |
368 | |
369 // for (i=0; i<8; i++) | |
370 // printf ("pre_header[%d] = %02x (%d)\n", | |
371 // i, pre_header[i], pre_header[i]); | |
372 | |
373 if (pre_header[4] == 0x04) { | |
374 | |
375 int packet_len; | |
376 | |
377 packet_len = (pre_header[7] << 8 | pre_header[6]) - 8; | |
378 | |
379 // printf ("asf media packet detected, len=%d\n", packet_len); | |
380 | |
14163
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
381 if (packet_len < 0 || packet_len > BUF_SIZE) { |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
382 mp_msg(MSGT_NETWORK, MSGL_FATAL, |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
383 "Invalid rtsp packet size, giving up\n"); |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
384 return 0; |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
385 } |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
386 |
7880 | 387 if (!get_data (s, data, packet_len)) { |
388 printf ("media data read failed\n"); | |
389 return 0; | |
390 } | |
391 | |
392 streaming_bufferize(stream_ctrl, data, padding); | |
393 | |
394 } else { | |
395 | |
7953 | 396 int32_t packet_len; |
397 int command; | |
7880 | 398 |
7953 | 399 if (!get_data (s, (char*)&packet_len, 4)) { |
7880 | 400 printf ("packet_len read failed\n"); |
401 return 0; | |
402 } | |
403 | |
7953 | 404 packet_len = get_32 ((unsigned char*)&packet_len, 0) + 4; |
7880 | 405 |
14163
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
406 if (packet_len < 0 || packet_len > BUF_SIZE) { |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
407 mp_msg(MSGT_NETWORK, MSGL_FATAL, |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
408 "Invalid rtsp packet size, giving up\n"); |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
409 return 0; |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
410 } |
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
411 |
7880 | 412 if (!get_data (s, data, packet_len)) { |
413 printf ("command data read failed\n"); | |
414 return 0; | |
415 } | |
416 | |
417 if ( (pre_header[7] != 0xb0) || (pre_header[6] != 0x0b) | |
418 || (pre_header[5] != 0xfa) || (pre_header[4] != 0xce) ) { | |
419 | |
420 printf ("missing signature\n"); | |
421 return -1; | |
422 } | |
423 | |
424 command = get_32 (data, 24) & 0xFFFF; | |
425 | |
7977 | 426 // printf ("\ncommand packet detected, len=%d cmd=0x%X\n", packet_len, command); |
7880 | 427 |
428 if (command == 0x1b) | |
429 send_command (s, 0x1b, 0, 0, 0, data); | |
430 else if (command == 0x1e) { | |
431 printf ("everything done. Thank you for downloading a media file containing proprietary and patentend technology.\n"); | |
432 return 0; | |
433 } | |
434 else if (command == 0x21 ) { | |
435 // Looks like it's new in WMS9 | |
436 // Unknown command, but ignoring it seems to work. | |
437 return 0; | |
438 } | |
439 else if (command != 0x05) { | |
440 printf ("unknown command %02x\n", command); | |
441 return -1; | |
442 } | |
443 } | |
444 | |
445 // printf ("get media packet succ\n"); | |
446 | |
447 return 1; | |
448 } | |
6092 | 449 |
450 | |
7880 | 451 static int packet_length1; |
6092 | 452 |
453 int | |
454 asf_mmst_streaming_read( int fd, char *buffer, int size, streaming_ctrl_t *stream_ctrl ) | |
455 { | |
7880 | 456 int len; |
457 | |
458 while( stream_ctrl->buffer_size==0 ) { | |
459 // buffer is empty - fill it! | |
460 int ret = get_media_packet( fd, packet_length1, stream_ctrl); | |
461 if( ret<0 ) { | |
462 printf("get_media_packet error : %s\n",strerror(errno)); | |
463 return -1; | |
12077 | 464 } else if (ret==0) //EOF? |
465 return ret; | |
7880 | 466 } |
467 | |
468 len = stream_ctrl->buffer_size-stream_ctrl->buffer_pos; | |
469 if(len>size) len=size; | |
6092 | 470 memcpy( buffer, (stream_ctrl->buffer)+(stream_ctrl->buffer_pos), len ); |
471 stream_ctrl->buffer_pos += len; | |
472 if( stream_ctrl->buffer_pos>=stream_ctrl->buffer_size ) { | |
473 free( stream_ctrl->buffer ); | |
474 stream_ctrl->buffer = NULL; | |
475 stream_ctrl->buffer_size = 0; | |
476 stream_ctrl->buffer_pos = 0; | |
477 } | |
7880 | 478 return len; |
6092 | 479 |
480 } | |
481 | |
482 int | |
483 asf_mmst_streaming_seek( int fd, off_t pos, streaming_ctrl_t *streaming_ctrl ) | |
484 { | |
485 return -1; | |
7953 | 486 // Shut up gcc warning |
487 fd++; | |
488 pos++; | |
489 streaming_ctrl=NULL; | |
6092 | 490 } |
491 | |
492 int asf_mmst_streaming_start(stream_t *stream) | |
493 { | |
494 char str[1024]; | |
10183 | 495 char data[BUF_SIZE]; |
14163
dd835e8f3698
fix a problem pointed out by iDEFENSE and several similar ones.
reimar
parents:
13600
diff
changeset
|
496 uint8_t asf_header[HDR_BUF_SIZE]; |
6092 | 497 int asf_header_len; |
498 int len, i, packet_length; | |
12751 | 499 char *path, *unescpath; |
6092 | 500 URL_t *url1 = stream->streaming_ctrl->url; |
7953 | 501 int s = stream->fd; |
6092 | 502 |
7250
27a1315d6af4
Checked if the connection succeeded before writing in the socket.
bertrand
parents:
6092
diff
changeset
|
503 if( s>0 ) { |
10281 | 504 closesocket( stream->fd ); |
7250
27a1315d6af4
Checked if the connection succeeded before writing in the socket.
bertrand
parents:
6092
diff
changeset
|
505 stream->fd = -1; |
27a1315d6af4
Checked if the connection succeeded before writing in the socket.
bertrand
parents:
6092
diff
changeset
|
506 } |
27a1315d6af4
Checked if the connection succeeded before writing in the socket.
bertrand
parents:
6092
diff
changeset
|
507 |
6092 | 508 /* parse url */ |
509 path = strchr(url1->file,'/') + 1; | |
510 | |
12751 | 511 /* mmst filename are not url_escaped by MS MediaPlayer and are expected as |
512 * "plain text" by the server, so need to decode it here | |
513 */ | |
514 unescpath=malloc(strlen(path)+1); | |
515 if (!unescpath) { | |
516 mp_msg(MSGT_NETWORK,MSGL_FATAL,"Memory allocation failed!\n"); | |
517 return -1; | |
518 } | |
519 url_unescape_string(unescpath,path); | |
520 path=unescpath; | |
521 | |
522 | |
12968 | 523 if( url1->port==0 ) { |
524 url1->port=1755; | |
525 } | |
10625
620cc649f519
ftp support. The change on connect2Server is needed bcs we need 2
albeu
parents:
10281
diff
changeset
|
526 s = connect2Server( url1->hostname, url1->port, 1); |
7250
27a1315d6af4
Checked if the connection succeeded before writing in the socket.
bertrand
parents:
6092
diff
changeset
|
527 if( s<0 ) { |
12751 | 528 free(path); |
7250
27a1315d6af4
Checked if the connection succeeded before writing in the socket.
bertrand
parents:
6092
diff
changeset
|
529 return s; |
27a1315d6af4
Checked if the connection succeeded before writing in the socket.
bertrand
parents:
6092
diff
changeset
|
530 } |
6092 | 531 printf ("connected\n"); |
7880 | 532 |
533 seq_num=0; | |
6092 | 534 |
535 /* | |
536 * Send the initial connect info including player version no. Client GUID (random) and the host address being connected to. | |
537 * This command is sent at the very start of protocol initiation. It sends local information to the serve | |
538 * cmd 1 0x01 | |
539 * */ | |
540 | |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
541 /* prepare for the url encoding conversion */ |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
542 #ifdef USE_ICONV |
12674
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
543 #ifdef USE_LANGINFO |
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
544 url_conv = iconv_open("UTF-16LE",nl_langinfo(CODESET)); |
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
545 #else |
14542
4a6b79a1ad52
remove all setlocale calls, they break the behaviour of sscanf and
reimar
parents:
14163
diff
changeset
|
546 url_conv = iconv_open("UTF-16LE", NULL); |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
547 #endif |
12674
0392f36045f4
user nl_langinfo if langinfo support present for proper chinese support, feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn>
alex
parents:
12545
diff
changeset
|
548 #endif |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
549 |
10183 | 550 snprintf (str, 1023, "\034\003NSPlayer/7.0.0.1956; {33715801-BAB3-9D85-24E9-03B90328270A}; Host: %s", url1->hostname); |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
551 string_utf16 (data, str, strlen(str)); |
6092 | 552 // send_command(s, commandno ....) |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
553 send_command (s, 1, 0, 0x0004000b, strlen(str)*2+2, data); |
6092 | 554 |
10206
35e306346e59
Using recv/send instead read/write for proper MinGW support (it's a 4.2BSD standard). Patch by FloDt <flodt8@yahoo.de>
alex
parents:
10183
diff
changeset
|
555 len = recv (s, data, BUF_SIZE, 0) ; |
6092 | 556 |
557 /*This sends details of the local machine IP address to a Funnel system at the server. | |
558 * Also, the TCP or UDP transport selection is sent. | |
559 * | |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
560 * here 192.168.0.1 is local ip address TCP/UDP states the tronsport we r using |
6092 | 561 * and 1037 is the local TCP or UDP socket number |
562 * cmd 2 0x02 | |
563 * */ | |
564 | |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
565 string_utf16 (&data[8], "\002\000\\\\192.168.0.1\\TCP\\1037", 24); |
6092 | 566 memset (data, 0, 8); |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
567 send_command (s, 2, 0, 0, 24*2+10, data); |
6092 | 568 |
10206
35e306346e59
Using recv/send instead read/write for proper MinGW support (it's a 4.2BSD standard). Patch by FloDt <flodt8@yahoo.de>
alex
parents:
10183
diff
changeset
|
569 len = recv (s, data, BUF_SIZE, 0) ; |
6092 | 570 |
571 /* This command sends file path (at server) and file name request to the server. | |
572 * 0x5 */ | |
573 | |
574 string_utf16 (&data[8], path, strlen(path)); | |
575 memset (data, 0, 8); | |
11225
48bb1fd37d2a
Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>
alex
parents:
10625
diff
changeset
|
576 send_command (s, 5, 0, 0, strlen(path)*2+10, data); |
12751 | 577 free(path); |
6092 | 578 |
579 get_answer (s); | |
580 | |
581 /* The ASF header chunk request. Includes ?session' variable for pre header value. | |
582 * After this command is sent, | |
583 * the server replies with 0x11 command and then the header chunk with header data follows. | |
584 * 0x15 */ | |
585 | |
586 memset (data, 0, 40); | |
587 data[32] = 2; | |
588 | |
589 send_command (s, 0x15, 1, 0, 40, data); | |
590 | |
591 num_stream_ids = 0; | |
592 /* get_headers(s, asf_header); */ | |
593 | |
594 asf_header_len = get_header (s, asf_header, stream->streaming_ctrl); | |
595 // printf("---------------------------------- asf_header %d\n",asf_header); | |
12545 | 596 if (asf_header_len==0) return -1; //error reading header |
6092 | 597 packet_length = interp_header (asf_header, asf_header_len); |
598 | |
599 | |
600 /* | |
601 * This command is the media stream MBR selector. Switches are always 6 bytes in length. | |
602 * After all switch elements, data ends with bytes [00 00] 00 20 ac 40 [02]. | |
603 * Where: | |
604 * [00 00] shows 0x61 0x00 (on the first 33 sent) or 0xff 0xff for ASF files, and with no ending data for WMV files. | |
605 * It is not yet understood what all this means. | |
606 * And the last [02] byte is probably the header ?session' value. | |
607 * | |
608 * 0x33 */ | |
609 | |
610 memset (data, 0, 40); | |
611 | |
612 for (i=1; i<num_stream_ids; i++) { | |
613 data [ (i-1) * 6 + 2 ] = 0xFF; | |
614 data [ (i-1) * 6 + 3 ] = 0xFF; | |
615 data [ (i-1) * 6 + 4 ] = stream_ids[i]; | |
616 data [ (i-1) * 6 + 5 ] = 0x00; | |
617 } | |
618 | |
619 send_command (s, 0x33, num_stream_ids, 0xFFFF | stream_ids[0] << 16, (num_stream_ids-1)*6+2 , data); | |
620 | |
621 get_answer (s); | |
622 | |
623 /* Start sending file from packet xx. | |
624 * This command is also used for resume downloads or requesting a lost packet. | |
625 * Also used for seeking by sending a play point value which seeks to the media time point. | |
626 * Includes ?session' value in pre header and the maximum media stream time. | |
627 * 0x07 */ | |
628 | |
629 memset (data, 0, 40); | |
630 | |
631 for (i=8; i<16; i++) | |
632 data[i] = 0xFF; | |
633 | |
634 data[20] = 0x04; | |
635 | |
636 send_command (s, 0x07, 1, 0xFFFF | stream_ids[0] << 16, 24, data); | |
637 | |
7880 | 638 stream->fd = s; |
639 stream->streaming_ctrl->streaming_read = asf_mmst_streaming_read; | |
640 stream->streaming_ctrl->streaming_seek = asf_mmst_streaming_seek; | |
641 stream->streaming_ctrl->buffering = 1; | |
642 stream->streaming_ctrl->status = streaming_playing_e; | |
6092 | 643 |
7880 | 644 packet_length1 = packet_length; |
645 printf("mmst packet_length = %d\n",packet_length); | |
6092 | 646 |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
647 #ifdef USE_ICONV |
11412 | 648 if (url_conv != (iconv_t)(-1)) |
11403
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
649 iconv_close(url_conv); |
86ab7e0b2a65
fallback to non-iconv dummy utf16 conversion if iconv failed
alex
parents:
11402
diff
changeset
|
650 #endif |
11350
007ec48cf146
Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mms
attila
parents:
11226
diff
changeset
|
651 |
6092 | 652 return 0; |
653 } |