Mercurial > mplayer.hg
annotate libmpdemux/realrtsp/real.c @ 12696:a026498e8a4c
this is broken and causes relink during 'make install'. fix it or leave it disabled
author | rfelker |
---|---|
date | Sat, 26 Jun 2004 15:35:35 +0000 |
parents | 4adb4a3b52a2 |
children | 5c83c247bad1 |
rev | line source |
---|---|
9922 | 1 /* |
2 * This file was ported to MPlayer from xine CVS real.c,v 1.8 2003/03/30 17:11:50 | |
3 */ | |
4 | |
5 /* | |
6 * Copyright (C) 2002 the xine project | |
7 * | |
8 * This file is part of xine, a free video player. | |
9 * | |
10 * xine is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * xine is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA | |
23 * | |
24 * | |
25 * special functions for real streams. | |
26 * adopted from joschkas real tools. | |
27 * | |
28 */ | |
29 | |
30 #include <stdio.h> | |
31 #include <string.h> | |
32 | |
10115 | 33 #include "../config.h" |
34 #include "../bswap.h" | |
9922 | 35 #include "real.h" |
36 #include "asmrp.h" | |
37 #include "sdpplin.h" | |
12266 | 38 #include "xbuffer.h" |
9922 | 39 |
40 /* | |
41 #define LOG | |
42 */ | |
43 | |
44 const unsigned char xor_table[] = { | |
45 0x05, 0x18, 0x74, 0xd0, 0x0d, 0x09, 0x02, 0x53, | |
46 0xc0, 0x01, 0x05, 0x05, 0x67, 0x03, 0x19, 0x70, | |
47 0x08, 0x27, 0x66, 0x10, 0x10, 0x72, 0x08, 0x09, | |
48 0x63, 0x11, 0x03, 0x71, 0x08, 0x08, 0x70, 0x02, | |
49 0x10, 0x57, 0x05, 0x18, 0x54, 0x00, 0x00, 0x00 }; | |
50 | |
51 | |
10115 | 52 #define BE_32C(x,y) (*((uint32_t*)(x))=be2me_32(y)) |
9922 | 53 |
10115 | 54 #define BE_16(x) be2me_16(*(uint16_t*)(x)) |
9922 | 55 |
10115 | 56 #define BE_32(x) be2me_32(*(uint32_t*)(x)) |
9922 | 57 |
58 #define MAX(x,y) ((x>y) ? x : y) | |
59 | |
60 #ifdef LOG | |
61 static void hexdump (const char *buf, int length) { | |
62 | |
63 int i; | |
64 | |
65 printf (" hexdump> "); | |
66 for (i = 0; i < length; i++) { | |
67 unsigned char c = buf[i]; | |
68 | |
69 printf ("%02x", c); | |
70 | |
71 if ((i % 16) == 15) | |
72 printf ("\n "); | |
73 | |
74 if ((i % 2) == 1) | |
75 printf (" "); | |
76 | |
77 } | |
78 printf ("\n"); | |
79 } | |
80 #endif | |
81 | |
82 | |
83 static void hash(char *field, char *param) { | |
84 | |
85 uint32_t a, b, c, d; | |
86 | |
87 | |
88 /* fill variables */ | |
10115 | 89 a= le2me_32(*(uint32_t*)(field)); |
90 b= le2me_32(*(uint32_t*)(field+4)); | |
91 c= le2me_32(*(uint32_t*)(field+8)); | |
92 d= le2me_32(*(uint32_t*)(field+12)); | |
9922 | 93 |
94 #ifdef LOG | |
95 printf("real: hash input: %x %x %x %x\n", a, b, c, d); | |
96 printf("real: hash parameter:\n"); | |
97 hexdump(param, 64); | |
10115 | 98 printf("real: hash field:\n"); |
99 hexdump(field, 64+24); | |
9922 | 100 #endif |
101 | |
10115 | 102 a = ((b & c) | (~b & d)) + le2me_32(*((uint32_t*)(param+0x00))) + a - 0x28955B88; |
9922 | 103 a = ((a << 0x07) | (a >> 0x19)) + b; |
10115 | 104 d = ((a & b) | (~a & c)) + le2me_32(*((uint32_t*)(param+0x04))) + d - 0x173848AA; |
9922 | 105 d = ((d << 0x0c) | (d >> 0x14)) + a; |
10115 | 106 c = ((d & a) | (~d & b)) + le2me_32(*((uint32_t*)(param+0x08))) + c + 0x242070DB; |
9922 | 107 c = ((c << 0x11) | (c >> 0x0f)) + d; |
10115 | 108 b = ((c & d) | (~c & a)) + le2me_32(*((uint32_t*)(param+0x0c))) + b - 0x3E423112; |
9922 | 109 b = ((b << 0x16) | (b >> 0x0a)) + c; |
10115 | 110 a = ((b & c) | (~b & d)) + le2me_32(*((uint32_t*)(param+0x10))) + a - 0x0A83F051; |
9922 | 111 a = ((a << 0x07) | (a >> 0x19)) + b; |
10115 | 112 d = ((a & b) | (~a & c)) + le2me_32(*((uint32_t*)(param+0x14))) + d + 0x4787C62A; |
9922 | 113 d = ((d << 0x0c) | (d >> 0x14)) + a; |
10115 | 114 c = ((d & a) | (~d & b)) + le2me_32(*((uint32_t*)(param+0x18))) + c - 0x57CFB9ED; |
9922 | 115 c = ((c << 0x11) | (c >> 0x0f)) + d; |
10115 | 116 b = ((c & d) | (~c & a)) + le2me_32(*((uint32_t*)(param+0x1c))) + b - 0x02B96AFF; |
9922 | 117 b = ((b << 0x16) | (b >> 0x0a)) + c; |
10115 | 118 a = ((b & c) | (~b & d)) + le2me_32(*((uint32_t*)(param+0x20))) + a + 0x698098D8; |
9922 | 119 a = ((a << 0x07) | (a >> 0x19)) + b; |
10115 | 120 d = ((a & b) | (~a & c)) + le2me_32(*((uint32_t*)(param+0x24))) + d - 0x74BB0851; |
9922 | 121 d = ((d << 0x0c) | (d >> 0x14)) + a; |
10115 | 122 c = ((d & a) | (~d & b)) + le2me_32(*((uint32_t*)(param+0x28))) + c - 0x0000A44F; |
9922 | 123 c = ((c << 0x11) | (c >> 0x0f)) + d; |
10115 | 124 b = ((c & d) | (~c & a)) + le2me_32(*((uint32_t*)(param+0x2C))) + b - 0x76A32842; |
9922 | 125 b = ((b << 0x16) | (b >> 0x0a)) + c; |
10115 | 126 a = ((b & c) | (~b & d)) + le2me_32(*((uint32_t*)(param+0x30))) + a + 0x6B901122; |
9922 | 127 a = ((a << 0x07) | (a >> 0x19)) + b; |
10115 | 128 d = ((a & b) | (~a & c)) + le2me_32(*((uint32_t*)(param+0x34))) + d - 0x02678E6D; |
9922 | 129 d = ((d << 0x0c) | (d >> 0x14)) + a; |
10115 | 130 c = ((d & a) | (~d & b)) + le2me_32(*((uint32_t*)(param+0x38))) + c - 0x5986BC72; |
9922 | 131 c = ((c << 0x11) | (c >> 0x0f)) + d; |
10115 | 132 b = ((c & d) | (~c & a)) + le2me_32(*((uint32_t*)(param+0x3c))) + b + 0x49B40821; |
9922 | 133 b = ((b << 0x16) | (b >> 0x0a)) + c; |
134 | |
10115 | 135 a = ((b & d) | (~d & c)) + le2me_32(*((uint32_t*)(param+0x04))) + a - 0x09E1DA9E; |
9922 | 136 a = ((a << 0x05) | (a >> 0x1b)) + b; |
10115 | 137 d = ((a & c) | (~c & b)) + le2me_32(*((uint32_t*)(param+0x18))) + d - 0x3FBF4CC0; |
9922 | 138 d = ((d << 0x09) | (d >> 0x17)) + a; |
10115 | 139 c = ((d & b) | (~b & a)) + le2me_32(*((uint32_t*)(param+0x2c))) + c + 0x265E5A51; |
9922 | 140 c = ((c << 0x0e) | (c >> 0x12)) + d; |
10115 | 141 b = ((c & a) | (~a & d)) + le2me_32(*((uint32_t*)(param+0x00))) + b - 0x16493856; |
9922 | 142 b = ((b << 0x14) | (b >> 0x0c)) + c; |
10115 | 143 a = ((b & d) | (~d & c)) + le2me_32(*((uint32_t*)(param+0x14))) + a - 0x29D0EFA3; |
9922 | 144 a = ((a << 0x05) | (a >> 0x1b)) + b; |
10115 | 145 d = ((a & c) | (~c & b)) + le2me_32(*((uint32_t*)(param+0x28))) + d + 0x02441453; |
9922 | 146 d = ((d << 0x09) | (d >> 0x17)) + a; |
10115 | 147 c = ((d & b) | (~b & a)) + le2me_32(*((uint32_t*)(param+0x3c))) + c - 0x275E197F; |
9922 | 148 c = ((c << 0x0e) | (c >> 0x12)) + d; |
10115 | 149 b = ((c & a) | (~a & d)) + le2me_32(*((uint32_t*)(param+0x10))) + b - 0x182C0438; |
9922 | 150 b = ((b << 0x14) | (b >> 0x0c)) + c; |
10115 | 151 a = ((b & d) | (~d & c)) + le2me_32(*((uint32_t*)(param+0x24))) + a + 0x21E1CDE6; |
9922 | 152 a = ((a << 0x05) | (a >> 0x1b)) + b; |
10115 | 153 d = ((a & c) | (~c & b)) + le2me_32(*((uint32_t*)(param+0x38))) + d - 0x3CC8F82A; |
9922 | 154 d = ((d << 0x09) | (d >> 0x17)) + a; |
10115 | 155 c = ((d & b) | (~b & a)) + le2me_32(*((uint32_t*)(param+0x0c))) + c - 0x0B2AF279; |
9922 | 156 c = ((c << 0x0e) | (c >> 0x12)) + d; |
10115 | 157 b = ((c & a) | (~a & d)) + le2me_32(*((uint32_t*)(param+0x20))) + b + 0x455A14ED; |
9922 | 158 b = ((b << 0x14) | (b >> 0x0c)) + c; |
10115 | 159 a = ((b & d) | (~d & c)) + le2me_32(*((uint32_t*)(param+0x34))) + a - 0x561C16FB; |
9922 | 160 a = ((a << 0x05) | (a >> 0x1b)) + b; |
10115 | 161 d = ((a & c) | (~c & b)) + le2me_32(*((uint32_t*)(param+0x08))) + d - 0x03105C08; |
9922 | 162 d = ((d << 0x09) | (d >> 0x17)) + a; |
10115 | 163 c = ((d & b) | (~b & a)) + le2me_32(*((uint32_t*)(param+0x1c))) + c + 0x676F02D9; |
9922 | 164 c = ((c << 0x0e) | (c >> 0x12)) + d; |
10115 | 165 b = ((c & a) | (~a & d)) + le2me_32(*((uint32_t*)(param+0x30))) + b - 0x72D5B376; |
9922 | 166 b = ((b << 0x14) | (b >> 0x0c)) + c; |
167 | |
10115 | 168 a = (b ^ c ^ d) + le2me_32(*((uint32_t*)(param+0x14))) + a - 0x0005C6BE; |
9922 | 169 a = ((a << 0x04) | (a >> 0x1c)) + b; |
10115 | 170 d = (a ^ b ^ c) + le2me_32(*((uint32_t*)(param+0x20))) + d - 0x788E097F; |
9922 | 171 d = ((d << 0x0b) | (d >> 0x15)) + a; |
10115 | 172 c = (d ^ a ^ b) + le2me_32(*((uint32_t*)(param+0x2c))) + c + 0x6D9D6122; |
9922 | 173 c = ((c << 0x10) | (c >> 0x10)) + d; |
10115 | 174 b = (c ^ d ^ a) + le2me_32(*((uint32_t*)(param+0x38))) + b - 0x021AC7F4; |
9922 | 175 b = ((b << 0x17) | (b >> 0x09)) + c; |
10115 | 176 a = (b ^ c ^ d) + le2me_32(*((uint32_t*)(param+0x04))) + a - 0x5B4115BC; |
9922 | 177 a = ((a << 0x04) | (a >> 0x1c)) + b; |
10115 | 178 d = (a ^ b ^ c) + le2me_32(*((uint32_t*)(param+0x10))) + d + 0x4BDECFA9; |
9922 | 179 d = ((d << 0x0b) | (d >> 0x15)) + a; |
10115 | 180 c = (d ^ a ^ b) + le2me_32(*((uint32_t*)(param+0x1c))) + c - 0x0944B4A0; |
9922 | 181 c = ((c << 0x10) | (c >> 0x10)) + d; |
10115 | 182 b = (c ^ d ^ a) + le2me_32(*((uint32_t*)(param+0x28))) + b - 0x41404390; |
9922 | 183 b = ((b << 0x17) | (b >> 0x09)) + c; |
10115 | 184 a = (b ^ c ^ d) + le2me_32(*((uint32_t*)(param+0x34))) + a + 0x289B7EC6; |
9922 | 185 a = ((a << 0x04) | (a >> 0x1c)) + b; |
10115 | 186 d = (a ^ b ^ c) + le2me_32(*((uint32_t*)(param+0x00))) + d - 0x155ED806; |
9922 | 187 d = ((d << 0x0b) | (d >> 0x15)) + a; |
10115 | 188 c = (d ^ a ^ b) + le2me_32(*((uint32_t*)(param+0x0c))) + c - 0x2B10CF7B; |
9922 | 189 c = ((c << 0x10) | (c >> 0x10)) + d; |
10115 | 190 b = (c ^ d ^ a) + le2me_32(*((uint32_t*)(param+0x18))) + b + 0x04881D05; |
9922 | 191 b = ((b << 0x17) | (b >> 0x09)) + c; |
10115 | 192 a = (b ^ c ^ d) + le2me_32(*((uint32_t*)(param+0x24))) + a - 0x262B2FC7; |
9922 | 193 a = ((a << 0x04) | (a >> 0x1c)) + b; |
10115 | 194 d = (a ^ b ^ c) + le2me_32(*((uint32_t*)(param+0x30))) + d - 0x1924661B; |
9922 | 195 d = ((d << 0x0b) | (d >> 0x15)) + a; |
10115 | 196 c = (d ^ a ^ b) + le2me_32(*((uint32_t*)(param+0x3c))) + c + 0x1fa27cf8; |
9922 | 197 c = ((c << 0x10) | (c >> 0x10)) + d; |
10115 | 198 b = (c ^ d ^ a) + le2me_32(*((uint32_t*)(param+0x08))) + b - 0x3B53A99B; |
9922 | 199 b = ((b << 0x17) | (b >> 0x09)) + c; |
200 | |
10115 | 201 a = ((~d | b) ^ c) + le2me_32(*((uint32_t*)(param+0x00))) + a - 0x0BD6DDBC; |
9922 | 202 a = ((a << 0x06) | (a >> 0x1a)) + b; |
10115 | 203 d = ((~c | a) ^ b) + le2me_32(*((uint32_t*)(param+0x1c))) + d + 0x432AFF97; |
9922 | 204 d = ((d << 0x0a) | (d >> 0x16)) + a; |
10115 | 205 c = ((~b | d) ^ a) + le2me_32(*((uint32_t*)(param+0x38))) + c - 0x546BDC59; |
9922 | 206 c = ((c << 0x0f) | (c >> 0x11)) + d; |
10115 | 207 b = ((~a | c) ^ d) + le2me_32(*((uint32_t*)(param+0x14))) + b - 0x036C5FC7; |
9922 | 208 b = ((b << 0x15) | (b >> 0x0b)) + c; |
10115 | 209 a = ((~d | b) ^ c) + le2me_32(*((uint32_t*)(param+0x30))) + a + 0x655B59C3; |
9922 | 210 a = ((a << 0x06) | (a >> 0x1a)) + b; |
10115 | 211 d = ((~c | a) ^ b) + le2me_32(*((uint32_t*)(param+0x0C))) + d - 0x70F3336E; |
9922 | 212 d = ((d << 0x0a) | (d >> 0x16)) + a; |
10115 | 213 c = ((~b | d) ^ a) + le2me_32(*((uint32_t*)(param+0x28))) + c - 0x00100B83; |
9922 | 214 c = ((c << 0x0f) | (c >> 0x11)) + d; |
10115 | 215 b = ((~a | c) ^ d) + le2me_32(*((uint32_t*)(param+0x04))) + b - 0x7A7BA22F; |
9922 | 216 b = ((b << 0x15) | (b >> 0x0b)) + c; |
10115 | 217 a = ((~d | b) ^ c) + le2me_32(*((uint32_t*)(param+0x20))) + a + 0x6FA87E4F; |
9922 | 218 a = ((a << 0x06) | (a >> 0x1a)) + b; |
10115 | 219 d = ((~c | a) ^ b) + le2me_32(*((uint32_t*)(param+0x3c))) + d - 0x01D31920; |
9922 | 220 d = ((d << 0x0a) | (d >> 0x16)) + a; |
10115 | 221 c = ((~b | d) ^ a) + le2me_32(*((uint32_t*)(param+0x18))) + c - 0x5CFEBCEC; |
9922 | 222 c = ((c << 0x0f) | (c >> 0x11)) + d; |
10115 | 223 b = ((~a | c) ^ d) + le2me_32(*((uint32_t*)(param+0x34))) + b + 0x4E0811A1; |
9922 | 224 b = ((b << 0x15) | (b >> 0x0b)) + c; |
10115 | 225 a = ((~d | b) ^ c) + le2me_32(*((uint32_t*)(param+0x10))) + a - 0x08AC817E; |
9922 | 226 a = ((a << 0x06) | (a >> 0x1a)) + b; |
10115 | 227 d = ((~c | a) ^ b) + le2me_32(*((uint32_t*)(param+0x2c))) + d - 0x42C50DCB; |
9922 | 228 d = ((d << 0x0a) | (d >> 0x16)) + a; |
10115 | 229 c = ((~b | d) ^ a) + le2me_32(*((uint32_t*)(param+0x08))) + c + 0x2AD7D2BB; |
9922 | 230 c = ((c << 0x0f) | (c >> 0x11)) + d; |
10115 | 231 b = ((~a | c) ^ d) + le2me_32(*((uint32_t*)(param+0x24))) + b - 0x14792C6F; |
9922 | 232 b = ((b << 0x15) | (b >> 0x0b)) + c; |
233 | |
234 #ifdef LOG | |
235 printf("real: hash output: %x %x %x %x\n", a, b, c, d); | |
236 #endif | |
237 | |
10115 | 238 a += le2me_32(*((uint32_t *)(field+0))); |
239 *((uint32_t *)(field+0)) = le2me_32(a); | |
240 b += le2me_32(*((uint32_t *)(field+4))); | |
241 *((uint32_t *)(field+4)) = le2me_32(b); | |
242 c += le2me_32(*((uint32_t *)(field+8))); | |
243 *((uint32_t *)(field+8)) = le2me_32(c); | |
244 d += le2me_32(*((uint32_t *)(field+12))); | |
245 *((uint32_t *)(field+12)) = le2me_32(d); | |
246 | |
247 #ifdef LOG | |
248 printf("real: hash field:\n"); | |
249 hexdump(field, 64+24); | |
250 #endif | |
9922 | 251 } |
252 | |
253 static void call_hash (char *key, char *challenge, int len) { | |
254 | |
255 uint32_t *ptr1, *ptr2; | |
256 uint32_t a, b, c, d; | |
10115 | 257 uint32_t tmp; |
258 | |
9922 | 259 ptr1=(uint32_t*)(key+16); |
260 ptr2=(uint32_t*)(key+20); | |
261 | |
10115 | 262 a = le2me_32(*ptr1); |
9922 | 263 b = (a >> 3) & 0x3f; |
264 a += len * 8; | |
10115 | 265 *ptr1 = le2me_32(a); |
9922 | 266 |
267 if (a < (len << 3)) | |
268 { | |
269 #ifdef LOG | |
270 printf("not verified: (len << 3) > a true\n"); | |
271 #endif | |
272 ptr2 += 4; | |
273 } | |
274 | |
10115 | 275 tmp = le2me_32(*ptr2); |
276 tmp += (len >> 0x1d); | |
277 *ptr2 = le2me_32(tmp); | |
9922 | 278 a = 64 - b; |
279 c = 0; | |
280 if (a <= len) | |
281 { | |
282 | |
283 memcpy(key+b+24, challenge, a); | |
284 hash(key, key+24); | |
285 c = a; | |
286 d = c + 0x3f; | |
287 | |
288 while ( d < len ) { | |
289 | |
290 #ifdef LOG | |
291 printf("not verified: while ( d < len )\n"); | |
292 #endif | |
293 hash(key, challenge+d-0x3f); | |
294 d += 64; | |
295 c += 64; | |
296 } | |
297 b = 0; | |
298 } | |
299 | |
300 memcpy(key+b+24, challenge+c, len-c); | |
301 } | |
302 | |
303 static void calc_response (char *result, char *field) { | |
304 | |
305 char buf1[128]; | |
306 char buf2[128]; | |
307 int i; | |
308 | |
309 memset (buf1, 0, 64); | |
310 *buf1 = 128; | |
311 | |
312 memcpy (buf2, field+16, 8); | |
313 | |
10115 | 314 i = ( le2me_32(*((uint32_t*)(buf2))) >> 3 ) & 0x3f; |
9922 | 315 |
316 if (i < 56) { | |
317 i = 56 - i; | |
318 } else { | |
319 #ifdef LOG | |
320 printf("not verified: ! (i < 56)\n"); | |
321 #endif | |
322 i = 120 - i; | |
323 } | |
324 | |
325 call_hash (field, buf1, i); | |
326 call_hash (field, buf2, 8); | |
327 | |
328 memcpy (result, field, 16); | |
329 | |
330 } | |
331 | |
332 | |
333 static void calc_response_string (char *result, char *challenge) { | |
334 | |
335 char field[128]; | |
336 char zres[20]; | |
337 int i; | |
338 | |
339 /* initialize our field */ | |
340 BE_32C (field, 0x01234567); | |
341 BE_32C ((field+4), 0x89ABCDEF); | |
342 BE_32C ((field+8), 0xFEDCBA98); | |
343 BE_32C ((field+12), 0x76543210); | |
344 BE_32C ((field+16), 0x00000000); | |
345 BE_32C ((field+20), 0x00000000); | |
346 | |
347 /* calculate response */ | |
348 call_hash(field, challenge, 64); | |
349 calc_response(zres,field); | |
350 | |
351 /* convert zres to ascii string */ | |
352 for (i=0; i<16; i++ ) { | |
353 char a, b; | |
354 | |
355 a = (zres[i] >> 4) & 15; | |
356 b = zres[i] & 15; | |
357 | |
358 result[i*2] = ((a<10) ? (a+48) : (a+87)) & 255; | |
359 result[i*2+1] = ((b<10) ? (b+48) : (b+87)) & 255; | |
360 } | |
361 } | |
362 | |
363 void real_calc_response_and_checksum (char *response, char *chksum, char *challenge) { | |
364 | |
365 int ch_len, table_len, resp_len; | |
366 int i; | |
367 char *ptr; | |
368 char buf[128]; | |
369 | |
370 /* initialize return values */ | |
371 memset(response, 0, 64); | |
372 memset(chksum, 0, 34); | |
373 | |
374 /* initialize buffer */ | |
375 memset(buf, 0, 128); | |
376 ptr=buf; | |
377 BE_32C(ptr, 0xa1e9149d); | |
378 ptr+=4; | |
379 BE_32C(ptr, 0x0e6b3b59); | |
380 ptr+=4; | |
381 | |
382 /* some (length) checks */ | |
383 if (challenge != NULL) | |
384 { | |
385 ch_len = strlen (challenge); | |
386 | |
387 if (ch_len == 40) /* what a hack... */ | |
388 { | |
389 challenge[32]=0; | |
390 ch_len=32; | |
391 } | |
392 if ( ch_len > 56 ) ch_len=56; | |
393 | |
394 /* copy challenge to buf */ | |
395 memcpy(ptr, challenge, ch_len); | |
396 } | |
397 | |
398 if (xor_table != NULL) | |
399 { | |
400 table_len = strlen(xor_table); | |
401 | |
402 if (table_len > 56) table_len=56; | |
403 | |
404 /* xor challenge bytewise with xor_table */ | |
405 for (i=0; i<table_len; i++) | |
406 ptr[i] = ptr[i] ^ xor_table[i]; | |
407 } | |
408 | |
409 calc_response_string (response, buf); | |
410 | |
411 /* add tail */ | |
412 resp_len = strlen (response); | |
413 strcpy (&response[resp_len], "01d0a8e3"); | |
414 | |
415 /* calculate checksum */ | |
416 for (i=0; i<resp_len/4; i++) | |
417 chksum[i] = response[i*4]; | |
418 } | |
419 | |
420 | |
421 /* | |
422 * takes a MLTI-Chunk and a rule number got from match_asm_rule, | |
423 * returns a pointer to selected data and number of bytes in that. | |
424 */ | |
425 | |
12266 | 426 static int select_mlti_data(const char *mlti_chunk, int mlti_size, int selection, char **out) { |
9922 | 427 |
428 int numrules, codec, size; | |
429 int i; | |
430 | |
431 /* MLTI chunk should begin with MLTI */ | |
432 | |
433 if ((mlti_chunk[0] != 'M') | |
434 ||(mlti_chunk[1] != 'L') | |
435 ||(mlti_chunk[2] != 'T') | |
436 ||(mlti_chunk[3] != 'I')) | |
437 { | |
438 #ifdef LOG | |
439 printf("libreal: MLTI tag not detected, copying data\n"); | |
440 #endif | |
12266 | 441 *out = xbuffer_copyin(*out, 0, mlti_chunk, mlti_size); |
9922 | 442 return mlti_size; |
443 } | |
444 | |
445 mlti_chunk+=4; | |
446 | |
447 /* next 16 bits are the number of rules */ | |
448 numrules=BE_16(mlti_chunk); | |
449 if (selection >= numrules) return 0; | |
450 | |
451 /* now <numrules> indices of codecs follows */ | |
452 /* we skip to selection */ | |
453 mlti_chunk+=(selection+1)*2; | |
454 | |
455 /* get our index */ | |
456 codec=BE_16(mlti_chunk); | |
457 | |
458 /* skip to number of codecs */ | |
459 mlti_chunk+=(numrules-selection)*2; | |
460 | |
461 /* get number of codecs */ | |
462 numrules=BE_16(mlti_chunk); | |
463 | |
464 if (codec >= numrules) { | |
465 printf("codec index >= number of codecs. %i %i\n", codec, numrules); | |
466 return 0; | |
467 } | |
468 | |
469 mlti_chunk+=2; | |
470 | |
471 /* now seek to selected codec */ | |
472 for (i=0; i<codec; i++) { | |
473 size=BE_32(mlti_chunk); | |
474 mlti_chunk+=size+4; | |
475 } | |
476 | |
477 size=BE_32(mlti_chunk); | |
478 | |
479 #ifdef LOG | |
480 hexdump(mlti_chunk+4, size); | |
481 #endif | |
12266 | 482 *out = xbuffer_copyin(*out, 0, mlti_chunk+4, size); |
9922 | 483 return size; |
484 } | |
485 | |
486 /* | |
487 * looking at stream description. | |
488 */ | |
489 | |
12266 | 490 rmff_header_t *real_parse_sdp(char *data, char **stream_rules, uint32_t bandwidth) { |
9922 | 491 |
492 sdpplin_t *desc; | |
493 rmff_header_t *header; | |
12266 | 494 char *buf; |
9922 | 495 int len, i; |
496 int max_bit_rate=0; | |
497 int avg_bit_rate=0; | |
498 int max_packet_size=0; | |
499 int avg_packet_size=0; | |
500 int duration=0; | |
501 | |
502 | |
503 if (!data) return NULL; | |
504 | |
505 desc=sdpplin_parse(data); | |
506 | |
507 if (!desc) return NULL; | |
508 | |
12266 | 509 buf = xbuffer_init(2048); |
9922 | 510 header=calloc(1,sizeof(rmff_header_t)); |
511 | |
512 header->fileheader=rmff_new_fileheader(4+desc->stream_count); | |
513 header->cont=rmff_new_cont( | |
514 desc->title, | |
515 desc->author, | |
516 desc->copyright, | |
517 desc->abstract); | |
518 header->data=rmff_new_dataheader(0,0); | |
519 header->streams=calloc(1,sizeof(rmff_mdpr_t*)*(desc->stream_count+1)); | |
520 #ifdef LOG | |
521 printf("number of streams: %u\n", desc->stream_count); | |
522 #endif | |
523 | |
524 for (i=0; i<desc->stream_count; i++) { | |
525 | |
526 int j=0; | |
527 int n; | |
528 char b[64]; | |
529 int rulematches[16]; | |
530 | |
531 #ifdef LOG | |
532 printf("calling asmrp_match with:\n%s\n%u\n", desc->stream[i]->asm_rule_book, bandwidth); | |
533 #endif | |
534 n=asmrp_match(desc->stream[i]->asm_rule_book, bandwidth, rulematches); | |
535 for (j=0; j<n; j++) { | |
536 #ifdef LOG | |
537 printf("asmrp rule match: %u for stream %u\n", rulematches[j], desc->stream[i]->stream_id); | |
538 #endif | |
539 sprintf(b,"stream=%u;rule=%u,", desc->stream[i]->stream_id, rulematches[j]); | |
12266 | 540 *stream_rules = xbuffer_strcat(*stream_rules, b); |
9922 | 541 } |
542 | |
543 if (!desc->stream[i]->mlti_data) return NULL; | |
544 | |
12266 | 545 len=select_mlti_data(desc->stream[i]->mlti_data, desc->stream[i]->mlti_data_size, rulematches[0], &buf); |
9922 | 546 |
547 header->streams[i]=rmff_new_mdpr( | |
548 desc->stream[i]->stream_id, | |
549 desc->stream[i]->max_bit_rate, | |
550 desc->stream[i]->avg_bit_rate, | |
551 desc->stream[i]->max_packet_size, | |
552 desc->stream[i]->avg_packet_size, | |
553 desc->stream[i]->start_time, | |
554 desc->stream[i]->preroll, | |
555 desc->stream[i]->duration, | |
556 desc->stream[i]->stream_name, | |
557 desc->stream[i]->mime_type, | |
558 len, | |
559 buf); | |
560 | |
561 duration=MAX(duration,desc->stream[i]->duration); | |
562 max_bit_rate+=desc->stream[i]->max_bit_rate; | |
563 avg_bit_rate+=desc->stream[i]->avg_bit_rate; | |
564 max_packet_size=MAX(max_packet_size, desc->stream[i]->max_packet_size); | |
565 if (avg_packet_size) | |
566 avg_packet_size=(avg_packet_size + desc->stream[i]->avg_packet_size) / 2; | |
567 else | |
568 avg_packet_size=desc->stream[i]->avg_packet_size; | |
569 } | |
570 | |
12266 | 571 if (*stream_rules && strlen(*stream_rules) && (*stream_rules)[strlen(*stream_rules)-1] == ',') |
572 (*stream_rules)[strlen(*stream_rules)-1]=0; /* delete last ',' in stream_rules */ | |
9922 | 573 |
574 header->prop=rmff_new_prop( | |
575 max_bit_rate, | |
576 avg_bit_rate, | |
577 max_packet_size, | |
578 avg_packet_size, | |
579 0, | |
580 duration, | |
581 0, | |
582 0, | |
583 0, | |
584 desc->stream_count, | |
585 desc->flags); | |
586 | |
587 rmff_fix_header(header); | |
12266 | 588 buf = xbuffer_free(buf); |
9922 | 589 |
590 return header; | |
591 } | |
592 | |
12266 | 593 int real_get_rdt_chunk(rtsp_t *rtsp_session, char **buffer) { |
9922 | 594 |
595 int n=1; | |
596 uint8_t header[8]; | |
597 rmff_pheader_t ph; | |
598 int size; | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
599 int flags1, flags2; |
9922 | 600 int unknown1; |
601 uint32_t ts; | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
602 static uint32_t prev_ts = -1; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
603 static int prev_stream_number = -1; |
9922 | 604 |
605 n=rtsp_read_data(rtsp_session, header, 8); | |
606 if (n<8) return 0; | |
607 if (header[0] != 0x24) | |
608 { | |
609 printf("rdt chunk not recognized: got 0x%02x\n", header[0]); | |
610 return 0; | |
611 } | |
612 size=(header[1]<<12)+(header[2]<<8)+(header[3]); | |
613 flags1=header[4]; | |
614 if ((flags1!=0x40)&&(flags1!=0x42)) | |
615 { | |
616 #ifdef LOG | |
617 printf("got flags1: 0x%02x\n",flags1); | |
618 #endif | |
619 header[0]=header[5]; | |
620 header[1]=header[6]; | |
621 header[2]=header[7]; | |
622 n=rtsp_read_data(rtsp_session, header+3, 5); | |
623 if (n<5) return 0; | |
624 #ifdef LOG | |
625 printf("ignoring bytes:\n"); | |
626 hexdump(header, 8); | |
627 #endif | |
628 n=rtsp_read_data(rtsp_session, header+4, 4); | |
629 if (n<4) return 0; | |
630 flags1=header[4]; | |
631 size-=9; | |
632 } | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
633 flags2=header[7]; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
634 // header[5..6] == frame number in stream |
9922 | 635 unknown1=(header[5]<<12)+(header[6]<<8)+(header[7]); |
636 n=rtsp_read_data(rtsp_session, header, 6); | |
637 if (n<6) return 0; | |
638 ts=BE_32(header); | |
639 | |
640 #ifdef LOG | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
641 printf("ts: %u, size: %u, flags: 0x%02x, unknown values: 0x%06x 0x%02x 0x%02x\n", |
9922 | 642 ts, size, flags1, unknown1, header[4], header[5]); |
643 #endif | |
644 size+=2; | |
645 | |
646 ph.object_version=0; | |
647 ph.length=size; | |
648 ph.stream_number=(flags1>>1)&1; | |
649 ph.timestamp=ts; | |
650 ph.reserved=0; | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
651 if ((flags2&1) == 0 && (prev_ts != ts || prev_stream_number != ph.stream_number)) |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
652 { |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
653 prev_ts = ts; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
654 prev_stream_number = ph.stream_number; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
655 ph.flags=2; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
656 } |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
657 else |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
658 ph.flags=0; |
12266 | 659 *buffer = xbuffer_ensure_size(*buffer, 12+size); |
660 rmff_dump_pheader(&ph, *buffer); | |
9922 | 661 size-=12; |
12266 | 662 n=rtsp_read_data(rtsp_session, (*buffer)+12, size); |
9922 | 663 |
12271
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
664 return (n <= 0) ? 0 : n+12; |
9922 | 665 } |
666 | |
11506
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
667 int convert_timestamp(char *str, int *sec, int *msec) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
668 int hh, mm, ss, ms = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
669 if (sscanf(str, "%d:%d:%d.%d", &hh, &mm, &ss, &ms) < 3) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
670 hh = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
671 if (sscanf(str, "%d:%d.%d", &mm, &ss, &ms) < 2) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
672 mm = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
673 if (sscanf(str, "%d.%d", &ss, &ms) < 1) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
674 ss = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
675 ms = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
676 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
677 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
678 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
679 if (sec) |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
680 *sec = hh * 3600 + mm * 60 + ss; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
681 if (msec) |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
682 *msec = ms; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
683 return 1; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
684 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
685 |
9922 | 686 rmff_header_t *real_setup_and_get_header(rtsp_t *rtsp_session, uint32_t bandwidth) { |
687 | |
688 char *description=NULL; | |
689 char *session_id=NULL; | |
690 rmff_header_t *h; | |
691 char *challenge1; | |
692 char challenge2[64]; | |
693 char checksum[34]; | |
12266 | 694 char *subscribe; |
695 char *buf = xbuffer_init(256); | |
9922 | 696 char *mrl=rtsp_get_mrl(rtsp_session); |
697 unsigned int size; | |
698 int status; | |
699 | |
700 /* get challenge */ | |
701 challenge1=strdup(rtsp_search_answers(rtsp_session,"RealChallenge1")); | |
702 #ifdef LOG | |
703 printf("real: Challenge1: %s\n", challenge1); | |
704 #endif | |
705 | |
706 /* request stream description */ | |
707 rtsp_schedule_field(rtsp_session, "Accept: application/sdp"); | |
708 sprintf(buf, "Bandwidth: %u", bandwidth); | |
709 rtsp_schedule_field(rtsp_session, buf); | |
710 rtsp_schedule_field(rtsp_session, "GUID: 00000000-0000-0000-0000-000000000000"); | |
711 rtsp_schedule_field(rtsp_session, "RegionData: 0"); | |
712 rtsp_schedule_field(rtsp_session, "ClientID: Linux_2.4_6.0.9.1235_play32_RN01_EN_586"); | |
713 rtsp_schedule_field(rtsp_session, "SupportsMaximumASMBandwidth: 1"); | |
714 rtsp_schedule_field(rtsp_session, "Language: en-US"); | |
715 rtsp_schedule_field(rtsp_session, "Require: com.real.retain-entity-for-setup"); | |
716 status=rtsp_request_describe(rtsp_session,NULL); | |
717 | |
718 if ( status<200 || status>299 ) | |
719 { | |
720 char *alert=rtsp_search_answers(rtsp_session,"Alert"); | |
721 if (alert) { | |
722 printf("real: got message from server:\n%s\n", alert); | |
723 } | |
724 rtsp_send_ok(rtsp_session); | |
12266 | 725 buf = xbuffer_free(buf); |
9922 | 726 return NULL; |
727 } | |
728 | |
729 /* receive description */ | |
730 size=0; | |
731 if (!rtsp_search_answers(rtsp_session,"Content-length")) | |
732 printf("real: got no Content-length!\n"); | |
733 else | |
734 size=atoi(rtsp_search_answers(rtsp_session,"Content-length")); | |
735 | |
736 if (!rtsp_search_answers(rtsp_session,"ETag")) | |
737 printf("real: got no ETag!\n"); | |
738 else | |
739 session_id=strdup(rtsp_search_answers(rtsp_session,"ETag")); | |
740 | |
741 #ifdef LOG | |
742 printf("real: Stream description size: %i\n", size); | |
743 #endif | |
744 | |
745 description=malloc(sizeof(char)*(size+1)); | |
746 | |
12271
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
747 if( rtsp_read_data(rtsp_session, description, size) <= 0) { |
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
748 buf = xbuffer_free(buf); |
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
749 return NULL; |
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
750 } |
9922 | 751 description[size]=0; |
752 | |
753 /* parse sdp (sdpplin) and create a header and a subscribe string */ | |
12266 | 754 subscribe = xbuffer_init(256); |
9922 | 755 strcpy(subscribe, "Subscribe: "); |
12266 | 756 h=real_parse_sdp(description, &subscribe, bandwidth); |
757 if (!h) { | |
758 subscribe = xbuffer_free(subscribe); | |
759 buf = xbuffer_free(buf); | |
760 return NULL; | |
761 } | |
9922 | 762 rmff_fix_header(h); |
763 | |
764 #ifdef LOG | |
765 printf("Title: %s\nCopyright: %s\nAuthor: %s\nStreams: %i\n", | |
766 h->cont->title, h->cont->copyright, h->cont->author, h->prop->num_streams); | |
767 #endif | |
768 | |
769 /* setup our streams */ | |
770 real_calc_response_and_checksum (challenge2, checksum, challenge1); | |
12266 | 771 buf = xbuffer_ensure_size(buf, strlen(challenge2) + strlen(checksum) + 32); |
9922 | 772 sprintf(buf, "RealChallenge2: %s, sd=%s", challenge2, checksum); |
773 rtsp_schedule_field(rtsp_session, buf); | |
12266 | 774 buf = xbuffer_ensure_size(buf, strlen(session_id) + 32); |
9922 | 775 sprintf(buf, "If-Match: %s", session_id); |
776 rtsp_schedule_field(rtsp_session, buf); | |
777 rtsp_schedule_field(rtsp_session, "Transport: x-pn-tng/tcp;mode=play,rtp/avp/tcp;unicast;mode=play"); | |
12266 | 778 buf = xbuffer_ensure_size(buf, strlen(mrl) + 32); |
9922 | 779 sprintf(buf, "%s/streamid=0", mrl); |
780 rtsp_request_setup(rtsp_session,buf); | |
781 | |
782 if (h->prop->num_streams > 1) { | |
783 rtsp_schedule_field(rtsp_session, "Transport: x-pn-tng/tcp;mode=play,rtp/avp/tcp;unicast;mode=play"); | |
12266 | 784 buf = xbuffer_ensure_size(buf, strlen(session_id) + 32); |
9922 | 785 sprintf(buf, "If-Match: %s", session_id); |
786 rtsp_schedule_field(rtsp_session, buf); | |
787 | |
12266 | 788 buf = xbuffer_ensure_size(buf, strlen(mrl) + 32); |
9922 | 789 sprintf(buf, "%s/streamid=1", mrl); |
790 rtsp_request_setup(rtsp_session,buf); | |
791 } | |
792 /* set stream parameter (bandwidth) with our subscribe string */ | |
793 rtsp_schedule_field(rtsp_session, subscribe); | |
794 rtsp_request_setparameter(rtsp_session,NULL); | |
795 | |
11506
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
796 { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
797 int s_ss = 0, s_ms = 0, e_ss = 0, e_ms = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
798 char *str; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
799 if ((str = rtsp_get_param(rtsp_session, "start"))) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
800 convert_timestamp(str, &s_ss, &s_ms); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
801 free(str); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
802 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
803 if ((str = rtsp_get_param(rtsp_session, "end"))) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
804 convert_timestamp(str, &e_ss, &e_ms); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
805 free(str); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
806 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
807 str = buf + sprintf(buf, s_ms ? "%s%d.%d-" : "%s%d-", "Range: npt=", s_ss, s_ms); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
808 if (e_ss || e_ms) |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
809 sprintf(str, e_ms ? "%d.%d" : "%d", e_ss, e_ms); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
810 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
811 rtsp_schedule_field(rtsp_session, buf); |
9922 | 812 /* and finally send a play request */ |
813 rtsp_request_play(rtsp_session,NULL); | |
814 | |
12266 | 815 subscribe = xbuffer_free(subscribe); |
816 buf = xbuffer_free(buf); | |
9922 | 817 return h; |
818 } |