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