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