Mercurial > mplayer.hg
annotate stream/realrtsp/real.c @ 22750:8e7b3260e985
Declare eof only when stream 0 gets eof
Fixes premature eof on rtsp://vodreal.stanford.edu/opa/philo/061022.rm
author | rtogni |
---|---|
date | Tue, 20 Mar 2007 22:32:38 +0000 |
parents | f088d69b1667 |
children | 8912a629ebb1 |
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" |
21372 | 34 #include "libavutil/common.h" |
9922 | 35 #include "real.h" |
36 #include "asmrp.h" | |
37 #include "sdpplin.h" | |
12266 | 38 #include "xbuffer.h" |
19256
ed6ca050bba5
The real hash function is just a md5, replace with lavu code
rtogni
parents:
19074
diff
changeset
|
39 #if USE_LIBAVUTIL_SO |
ed6ca050bba5
The real hash function is just a md5, replace with lavu code
rtogni
parents:
19074
diff
changeset
|
40 #include "ffmpeg/md5.h" |
ed6ca050bba5
The real hash function is just a md5, replace with lavu code
rtogni
parents:
19074
diff
changeset
|
41 #else |
ed6ca050bba5
The real hash function is just a md5, replace with lavu code
rtogni
parents:
19074
diff
changeset
|
42 #include "libavutil/md5.h" |
ed6ca050bba5
The real hash function is just a md5, replace with lavu code
rtogni
parents:
19074
diff
changeset
|
43 #endif |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
44 #include "libavutil/intreadwrite.h" |
20527 | 45 #include "../http.h" |
46 #include "mp_msg.h" | |
9922 | 47 |
48 /* | |
49 #define LOG | |
50 */ | |
51 | |
19258 | 52 static const unsigned char xor_table[] = { |
9922 | 53 0x05, 0x18, 0x74, 0xd0, 0x0d, 0x09, 0x02, 0x53, |
54 0xc0, 0x01, 0x05, 0x05, 0x67, 0x03, 0x19, 0x70, | |
55 0x08, 0x27, 0x66, 0x10, 0x10, 0x72, 0x08, 0x09, | |
56 0x63, 0x11, 0x03, 0x71, 0x08, 0x08, 0x70, 0x02, | |
57 0x10, 0x57, 0x05, 0x18, 0x54, 0x00, 0x00, 0x00 }; | |
58 | |
59 | |
18792
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
60 #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
|
61 |
9922 | 62 #ifdef LOG |
63 static void hexdump (const char *buf, int length) { | |
64 | |
65 int i; | |
66 | |
67 printf (" hexdump> "); | |
68 for (i = 0; i < length; i++) { | |
69 unsigned char c = buf[i]; | |
70 | |
71 printf ("%02x", c); | |
72 | |
73 if ((i % 16) == 15) | |
74 printf ("\n "); | |
75 | |
76 if ((i % 2) == 1) | |
77 printf (" "); | |
78 | |
79 } | |
80 printf ("\n"); | |
81 } | |
82 #endif | |
83 | |
84 | |
85 static void calc_response_string (char *result, char *challenge) { | |
86 | |
19263 | 87 char zres[16]; |
9922 | 88 int i; |
89 | |
19256
ed6ca050bba5
The real hash function is just a md5, replace with lavu code
rtogni
parents:
19074
diff
changeset
|
90 av_md5_sum(zres, challenge, 64); |
9922 | 91 |
92 /* convert zres to ascii string */ | |
93 for (i=0; i<16; i++ ) { | |
94 char a, b; | |
95 | |
96 a = (zres[i] >> 4) & 15; | |
97 b = zres[i] & 15; | |
98 | |
99 result[i*2] = ((a<10) ? (a+48) : (a+87)) & 255; | |
100 result[i*2+1] = ((b<10) ? (b+48) : (b+87)) & 255; | |
101 } | |
102 } | |
103 | |
19266 | 104 static void real_calc_response_and_checksum (char *response, char *chksum, char *challenge) { |
9922 | 105 |
106 int ch_len, table_len, resp_len; | |
107 int i; | |
108 char *ptr; | |
109 char buf[128]; | |
110 | |
111 /* initialize return values */ | |
112 memset(response, 0, 64); | |
113 memset(chksum, 0, 34); | |
114 | |
115 /* initialize buffer */ | |
116 memset(buf, 0, 128); | |
117 ptr=buf; | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
118 AV_WB32(ptr, 0xa1e9149d); |
9922 | 119 ptr+=4; |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
120 AV_WB32(ptr, 0x0e6b3b59); |
9922 | 121 ptr+=4; |
122 | |
123 /* some (length) checks */ | |
124 if (challenge != NULL) | |
125 { | |
126 ch_len = strlen (challenge); | |
127 | |
128 if (ch_len == 40) /* what a hack... */ | |
129 { | |
130 challenge[32]=0; | |
131 ch_len=32; | |
132 } | |
133 if ( ch_len > 56 ) ch_len=56; | |
134 | |
135 /* copy challenge to buf */ | |
136 memcpy(ptr, challenge, ch_len); | |
137 } | |
138 | |
139 table_len = strlen(xor_table); | |
140 | |
141 if (table_len > 56) table_len=56; | |
142 | |
143 /* xor challenge bytewise with xor_table */ | |
144 for (i=0; i<table_len; i++) | |
145 ptr[i] = ptr[i] ^ xor_table[i]; | |
146 | |
147 calc_response_string (response, buf); | |
148 | |
149 /* add tail */ | |
150 resp_len = strlen (response); | |
151 strcpy (&response[resp_len], "01d0a8e3"); | |
152 | |
153 /* calculate checksum */ | |
154 for (i=0; i<resp_len/4; i++) | |
155 chksum[i] = response[i*4]; | |
156 } | |
157 | |
158 | |
159 /* | |
160 * takes a MLTI-Chunk and a rule number got from match_asm_rule, | |
161 * returns a pointer to selected data and number of bytes in that. | |
162 */ | |
163 | |
12266 | 164 static int select_mlti_data(const char *mlti_chunk, int mlti_size, int selection, char **out) { |
9922 | 165 |
166 int numrules, codec, size; | |
167 int i; | |
168 | |
169 /* MLTI chunk should begin with MLTI */ | |
170 | |
171 if ((mlti_chunk[0] != 'M') | |
172 ||(mlti_chunk[1] != 'L') | |
173 ||(mlti_chunk[2] != 'T') | |
174 ||(mlti_chunk[3] != 'I')) | |
175 { | |
176 #ifdef LOG | |
177 printf("libreal: MLTI tag not detected, copying data\n"); | |
178 #endif | |
12266 | 179 *out = xbuffer_copyin(*out, 0, mlti_chunk, mlti_size); |
9922 | 180 return mlti_size; |
181 } | |
182 | |
183 mlti_chunk+=4; | |
184 | |
185 /* next 16 bits are the number of rules */ | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
186 numrules=AV_RB16(mlti_chunk); |
9922 | 187 if (selection >= numrules) return 0; |
188 | |
189 /* now <numrules> indices of codecs follows */ | |
190 /* we skip to selection */ | |
191 mlti_chunk+=(selection+1)*2; | |
192 | |
193 /* get our index */ | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
194 codec=AV_RB16(mlti_chunk); |
9922 | 195 |
196 /* skip to number of codecs */ | |
197 mlti_chunk+=(numrules-selection)*2; | |
198 | |
199 /* get number of codecs */ | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
200 numrules=AV_RB16(mlti_chunk); |
9922 | 201 |
202 if (codec >= numrules) { | |
20530 | 203 mp_msg(MSGT_STREAM, MSGL_WARN, "realrtsp: codec index >= number of codecs. %i %i\n", |
204 codec, numrules); | |
9922 | 205 return 0; |
206 } | |
207 | |
208 mlti_chunk+=2; | |
209 | |
210 /* now seek to selected codec */ | |
211 for (i=0; i<codec; i++) { | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
212 size=AV_RB32(mlti_chunk); |
9922 | 213 mlti_chunk+=size+4; |
214 } | |
215 | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
216 size=AV_RB32(mlti_chunk); |
9922 | 217 |
218 #ifdef LOG | |
219 hexdump(mlti_chunk+4, size); | |
220 #endif | |
12266 | 221 *out = xbuffer_copyin(*out, 0, mlti_chunk+4, size); |
9922 | 222 return size; |
223 } | |
224 | |
225 /* | |
226 * looking at stream description. | |
227 */ | |
228 | |
19266 | 229 static rmff_header_t *real_parse_sdp(char *data, char **stream_rules, uint32_t bandwidth) { |
9922 | 230 |
231 sdpplin_t *desc; | |
232 rmff_header_t *header; | |
12266 | 233 char *buf; |
9922 | 234 int len, i; |
235 int max_bit_rate=0; | |
236 int avg_bit_rate=0; | |
237 int max_packet_size=0; | |
238 int avg_packet_size=0; | |
239 int duration=0; | |
240 | |
241 | |
242 if (!data) return NULL; | |
243 | |
244 desc=sdpplin_parse(data); | |
245 | |
246 if (!desc) return NULL; | |
247 | |
12266 | 248 buf = xbuffer_init(2048); |
9922 | 249 header=calloc(1,sizeof(rmff_header_t)); |
250 | |
251 header->fileheader=rmff_new_fileheader(4+desc->stream_count); | |
252 header->cont=rmff_new_cont( | |
253 desc->title, | |
254 desc->author, | |
255 desc->copyright, | |
256 desc->abstract); | |
257 header->data=rmff_new_dataheader(0,0); | |
258 header->streams=calloc(1,sizeof(rmff_mdpr_t*)*(desc->stream_count+1)); | |
259 #ifdef LOG | |
260 printf("number of streams: %u\n", desc->stream_count); | |
261 #endif | |
262 | |
263 for (i=0; i<desc->stream_count; i++) { | |
264 | |
265 int j=0; | |
266 int n; | |
267 char b[64]; | |
21783
4511c04bc4a0
Fix potential buffer overflow in asm rules matching code
rtogni
parents:
21507
diff
changeset
|
268 int rulematches[MAX_RULEMATCHES]; |
9922 | 269 |
270 #ifdef LOG | |
271 printf("calling asmrp_match with:\n%s\n%u\n", desc->stream[i]->asm_rule_book, bandwidth); | |
272 #endif | |
273 n=asmrp_match(desc->stream[i]->asm_rule_book, bandwidth, rulematches); | |
274 for (j=0; j<n; j++) { | |
275 #ifdef LOG | |
276 printf("asmrp rule match: %u for stream %u\n", rulematches[j], desc->stream[i]->stream_id); | |
277 #endif | |
278 sprintf(b,"stream=%u;rule=%u,", desc->stream[i]->stream_id, rulematches[j]); | |
12266 | 279 *stream_rules = xbuffer_strcat(*stream_rules, b); |
9922 | 280 } |
281 | |
14144
1fcb18e39ef9
Fix streaming if not mlti_data (for some non-multirate streams)
rtognimp
parents:
13676
diff
changeset
|
282 if (!desc->stream[i]->mlti_data) { |
1fcb18e39ef9
Fix streaming if not mlti_data (for some non-multirate streams)
rtognimp
parents:
13676
diff
changeset
|
283 len = 0; |
1fcb18e39ef9
Fix streaming if not mlti_data (for some non-multirate streams)
rtognimp
parents:
13676
diff
changeset
|
284 buf = NULL; |
1fcb18e39ef9
Fix streaming if not mlti_data (for some non-multirate streams)
rtognimp
parents:
13676
diff
changeset
|
285 } else |
12266 | 286 len=select_mlti_data(desc->stream[i]->mlti_data, desc->stream[i]->mlti_data_size, rulematches[0], &buf); |
9922 | 287 |
288 header->streams[i]=rmff_new_mdpr( | |
289 desc->stream[i]->stream_id, | |
290 desc->stream[i]->max_bit_rate, | |
291 desc->stream[i]->avg_bit_rate, | |
292 desc->stream[i]->max_packet_size, | |
293 desc->stream[i]->avg_packet_size, | |
294 desc->stream[i]->start_time, | |
295 desc->stream[i]->preroll, | |
296 desc->stream[i]->duration, | |
297 desc->stream[i]->stream_name, | |
298 desc->stream[i]->mime_type, | |
299 len, | |
300 buf); | |
301 | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
302 duration=FFMAX(duration,desc->stream[i]->duration); |
9922 | 303 max_bit_rate+=desc->stream[i]->max_bit_rate; |
304 avg_bit_rate+=desc->stream[i]->avg_bit_rate; | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
305 max_packet_size=FFMAX(max_packet_size, desc->stream[i]->max_packet_size); |
9922 | 306 if (avg_packet_size) |
307 avg_packet_size=(avg_packet_size + desc->stream[i]->avg_packet_size) / 2; | |
308 else | |
309 avg_packet_size=desc->stream[i]->avg_packet_size; | |
310 } | |
311 | |
12266 | 312 if (*stream_rules && strlen(*stream_rules) && (*stream_rules)[strlen(*stream_rules)-1] == ',') |
313 (*stream_rules)[strlen(*stream_rules)-1]=0; /* delete last ',' in stream_rules */ | |
9922 | 314 |
315 header->prop=rmff_new_prop( | |
316 max_bit_rate, | |
317 avg_bit_rate, | |
318 max_packet_size, | |
319 avg_packet_size, | |
320 0, | |
321 duration, | |
322 0, | |
323 0, | |
324 0, | |
325 desc->stream_count, | |
326 desc->flags); | |
327 | |
328 rmff_fix_header(header); | |
12266 | 329 buf = xbuffer_free(buf); |
21788 | 330 sdpplin_free(desc); |
9922 | 331 |
332 return header; | |
333 } | |
334 | |
22242
4cabf7499fef
Add support for smil playlist served over realrtsp
rtogni
parents:
22023
diff
changeset
|
335 int real_get_rdt_chunk(rtsp_t *rtsp_session, char **buffer, int rdt_rawdata) { |
9922 | 336 |
337 int n=1; | |
338 uint8_t header[8]; | |
339 rmff_pheader_t ph; | |
340 int size; | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
341 int flags1, flags2; |
9922 | 342 int unknown1; |
343 uint32_t ts; | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
344 static uint32_t prev_ts = -1; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
345 static int prev_stream_number = -1; |
9922 | 346 |
347 n=rtsp_read_data(rtsp_session, header, 8); | |
348 if (n<8) return 0; | |
349 if (header[0] != 0x24) | |
350 { | |
20530 | 351 mp_msg(MSGT_STREAM, MSGL_WARN, "realrtsp: rdt chunk not recognized: got 0x%02x\n", |
352 header[0]); | |
9922 | 353 return 0; |
354 } | |
13289
2cb80075204c
chunk size fix from Ross Finlayson, ported from xine
diego
parents:
12845
diff
changeset
|
355 size=(header[1]<<16)+(header[2]<<8)+(header[3]); |
9922 | 356 flags1=header[4]; |
22023 | 357 if ((flags1!=0x40)&&(flags1!=0x42)&&(flags1!=0x41)) |
9922 | 358 { |
359 #ifdef LOG | |
360 printf("got flags1: 0x%02x\n",flags1); | |
361 #endif | |
22750 | 362 if(header[6] == 0x06) { // eof packet |
363 rtsp_read_data(rtsp_session, header, 7); // Skip the rest of the eof packet | |
364 /* Some files have short auxiliary streams, we must ignore eof packets | |
365 * for these streams to avoid premature eof. | |
366 * Now the code declares eof only if the stream with id == 0 gets eof | |
367 * (old code was: eof on the first eof packet received). | |
368 */ | |
369 if(flags1 & 0x7c) // ignore eof for streams with id != 0 | |
370 return 0; | |
20530 | 371 mp_msg(MSGT_STREAM, MSGL_INFO, "realrtsp: Stream EOF detected\n"); |
13676 | 372 return -1; |
373 } | |
9922 | 374 header[0]=header[5]; |
375 header[1]=header[6]; | |
376 header[2]=header[7]; | |
377 n=rtsp_read_data(rtsp_session, header+3, 5); | |
378 if (n<5) return 0; | |
379 #ifdef LOG | |
380 printf("ignoring bytes:\n"); | |
381 hexdump(header, 8); | |
382 #endif | |
383 n=rtsp_read_data(rtsp_session, header+4, 4); | |
384 if (n<4) return 0; | |
385 flags1=header[4]; | |
386 size-=9; | |
387 } | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
388 flags2=header[7]; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
389 // header[5..6] == frame number in stream |
13289
2cb80075204c
chunk size fix from Ross Finlayson, ported from xine
diego
parents:
12845
diff
changeset
|
390 unknown1=(header[5]<<16)+(header[6]<<8)+(header[7]); |
9922 | 391 n=rtsp_read_data(rtsp_session, header, 6); |
392 if (n<6) return 0; | |
22376
6c1fe779b704
Use libavutil AV_RB/AV_WB macros instead of defining out own variants.
reimar
parents:
22242
diff
changeset
|
393 ts=AV_RB32(header); |
9922 | 394 |
395 #ifdef LOG | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
396 printf("ts: %u, size: %u, flags: 0x%02x, unknown values: 0x%06x 0x%02x 0x%02x\n", |
9922 | 397 ts, size, flags1, unknown1, header[4], header[5]); |
398 #endif | |
399 size+=2; | |
400 | |
401 ph.object_version=0; | |
402 ph.length=size; | |
22749 | 403 ph.stream_number=(flags1>>1)&0x1f; |
9922 | 404 ph.timestamp=ts; |
405 ph.reserved=0; | |
11595
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
406 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
|
407 { |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
408 prev_ts = ts; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
409 prev_stream_number = ph.stream_number; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
410 ph.flags=2; |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
411 } |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
412 else |
95413c6d76a0
keyframe detection support by rgselk <rgselknospam@yahoo.com>
alex
parents:
11506
diff
changeset
|
413 ph.flags=0; |
12266 | 414 *buffer = xbuffer_ensure_size(*buffer, 12+size); |
22242
4cabf7499fef
Add support for smil playlist served over realrtsp
rtogni
parents:
22023
diff
changeset
|
415 if(rdt_rawdata) { |
4cabf7499fef
Add support for smil playlist served over realrtsp
rtogni
parents:
22023
diff
changeset
|
416 n=rtsp_read_data(rtsp_session, *buffer, size-12); |
4cabf7499fef
Add support for smil playlist served over realrtsp
rtogni
parents:
22023
diff
changeset
|
417 return (n <= 0) ? 0 : n; |
4cabf7499fef
Add support for smil playlist served over realrtsp
rtogni
parents:
22023
diff
changeset
|
418 } |
12266 | 419 rmff_dump_pheader(&ph, *buffer); |
9922 | 420 size-=12; |
12266 | 421 n=rtsp_read_data(rtsp_session, (*buffer)+12, size); |
9922 | 422 |
12271
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
423 return (n <= 0) ? 0 : n+12; |
9922 | 424 } |
425 | |
19266 | 426 static int convert_timestamp(char *str, int *sec, int *msec) { |
11506
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
427 int hh, mm, ss, ms = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
428 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
|
429 hh = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
430 if (sscanf(str, "%d:%d.%d", &mm, &ss, &ms) < 2) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
431 mm = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
432 if (sscanf(str, "%d.%d", &ss, &ms) < 1) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
433 ss = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
434 ms = 0; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
435 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
436 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
437 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
438 if (sec) |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
439 *sec = hh * 3600 + mm * 60 + ss; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
440 if (msec) |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
441 *msec = ms; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
442 return 1; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
443 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
444 |
14159 | 445 //! maximum size of the rtsp description, must be < INT_MAX |
446 #define MAX_DESC_BUF (20 * 1024 * 1024) | |
20527 | 447 rmff_header_t *real_setup_and_get_header(rtsp_t *rtsp_session, uint32_t bandwidth, |
448 char *username, char *password) { | |
9922 | 449 |
450 char *description=NULL; | |
451 char *session_id=NULL; | |
452 rmff_header_t *h; | |
453 char *challenge1; | |
454 char challenge2[64]; | |
455 char checksum[34]; | |
12266 | 456 char *subscribe; |
457 char *buf = xbuffer_init(256); | |
9922 | 458 char *mrl=rtsp_get_mrl(rtsp_session); |
459 unsigned int size; | |
460 int status; | |
17332
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
461 uint32_t maxbandwidth = bandwidth; |
20527 | 462 char* authfield = NULL; |
22749 | 463 int i; |
9922 | 464 |
465 /* get challenge */ | |
466 challenge1=strdup(rtsp_search_answers(rtsp_session,"RealChallenge1")); | |
467 #ifdef LOG | |
468 printf("real: Challenge1: %s\n", challenge1); | |
469 #endif | |
17332
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
470 |
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
471 /* 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
|
472 if (!bandwidth) |
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
473 bandwidth = 10485800; |
9922 | 474 |
475 /* request stream description */ | |
20527 | 476 rtsp_send_describe: |
9922 | 477 rtsp_schedule_field(rtsp_session, "Accept: application/sdp"); |
478 sprintf(buf, "Bandwidth: %u", bandwidth); | |
479 rtsp_schedule_field(rtsp_session, buf); | |
480 rtsp_schedule_field(rtsp_session, "GUID: 00000000-0000-0000-0000-000000000000"); | |
481 rtsp_schedule_field(rtsp_session, "RegionData: 0"); | |
482 rtsp_schedule_field(rtsp_session, "ClientID: Linux_2.4_6.0.9.1235_play32_RN01_EN_586"); | |
483 rtsp_schedule_field(rtsp_session, "SupportsMaximumASMBandwidth: 1"); | |
484 rtsp_schedule_field(rtsp_session, "Language: en-US"); | |
485 rtsp_schedule_field(rtsp_session, "Require: com.real.retain-entity-for-setup"); | |
20527 | 486 if(authfield) |
487 rtsp_schedule_field(rtsp_session, authfield); | |
9922 | 488 status=rtsp_request_describe(rtsp_session,NULL); |
489 | |
20527 | 490 if (status == 401) { |
491 int authlen, b64_authlen; | |
492 char *authreq; | |
493 char* authstr = NULL; | |
494 | |
495 if (authfield) { | |
496 mp_msg(MSGT_STREAM, MSGL_ERR, "realrtsp: authorization failed, check your credentials\n"); | |
497 goto autherr; | |
498 } | |
499 if (!(authreq = rtsp_search_answers(rtsp_session,"WWW-Authenticate"))) { | |
500 mp_msg(MSGT_STREAM, MSGL_ERR, "realrtsp: 401 but no auth request, aborting\n"); | |
501 goto autherr; | |
502 } | |
503 if (!username) { | |
504 mp_msg(MSGT_STREAM, MSGL_ERR, "realrtsp: auth required but no username supplied\n"); | |
505 goto autherr; | |
506 } | |
507 if (!strstr(authreq, "Basic")) { | |
508 mp_msg(MSGT_STREAM, MSGL_ERR, "realrtsp: authenticator not supported (%s)\n", authreq); | |
509 goto autherr; | |
510 } | |
511 authlen = strlen(username) + (password ? strlen(password) : 0) + 2; | |
512 authstr = malloc(authlen); | |
513 sprintf(authstr, "%s:%s", username, password ? password : ""); | |
514 authfield = malloc(authlen*2+22); | |
515 strcpy(authfield, "Authorization: Basic "); | |
516 b64_authlen = base64_encode(authstr, authlen, authfield+21, authlen*2); | |
517 free(authstr); | |
518 if (b64_authlen < 0) { | |
519 mp_msg(MSGT_STREAM, MSGL_ERR, "realrtsp: base64 output overflow, this should never happen\n"); | |
520 goto autherr; | |
521 } | |
522 authfield[b64_authlen+21] = 0; | |
523 goto rtsp_send_describe; | |
524 } | |
525 autherr: | |
526 | |
527 if (authfield) | |
528 free(authfield); | |
529 | |
9922 | 530 if ( status<200 || status>299 ) |
531 { | |
532 char *alert=rtsp_search_answers(rtsp_session,"Alert"); | |
533 if (alert) { | |
20530 | 534 mp_msg(MSGT_STREAM, MSGL_WARN, "realrtsp: got message from server:\n%s\n", |
535 alert); | |
9922 | 536 } |
537 rtsp_send_ok(rtsp_session); | |
12266 | 538 buf = xbuffer_free(buf); |
9922 | 539 return NULL; |
540 } | |
541 | |
542 /* receive description */ | |
543 size=0; | |
544 if (!rtsp_search_answers(rtsp_session,"Content-length")) | |
20530 | 545 mp_msg(MSGT_STREAM, MSGL_WARN, "real: got no Content-length!\n"); |
9922 | 546 else |
547 size=atoi(rtsp_search_answers(rtsp_session,"Content-length")); | |
548 | |
14159 | 549 // as size is unsigned this also catches the case (size < 0) |
550 if (size > MAX_DESC_BUF) { | |
20530 | 551 mp_msg(MSGT_STREAM, MSGL_ERR, "realrtsp: Content-length for description too big (> %uMB)!\n", |
14159 | 552 MAX_DESC_BUF/(1024*1024) ); |
553 xbuffer_free(buf); | |
554 return NULL; | |
555 } | |
556 | |
9922 | 557 if (!rtsp_search_answers(rtsp_session,"ETag")) |
20530 | 558 mp_msg(MSGT_STREAM, MSGL_WARN, "realrtsp: got no ETag!\n"); |
9922 | 559 else |
560 session_id=strdup(rtsp_search_answers(rtsp_session,"ETag")); | |
561 | |
562 #ifdef LOG | |
14159 | 563 printf("real: Stream description size: %u\n", size); |
9922 | 564 #endif |
565 | |
19074
d385666efa27
removes unused parentheses lefted behind in the r19075 sizeof(char) cleanups, noticed by dalias
reynaldo
parents:
19070
diff
changeset
|
566 description=malloc(size+1); |
9922 | 567 |
12271
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
568 if( rtsp_read_data(rtsp_session, description, size) <= 0) { |
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
569 buf = xbuffer_free(buf); |
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
570 return NULL; |
4adb4a3b52a2
More bounds checking fixes (thnaks to Miguel Freitas)
rtognimp
parents:
12266
diff
changeset
|
571 } |
9922 | 572 description[size]=0; |
573 | |
574 /* parse sdp (sdpplin) and create a header and a subscribe string */ | |
12266 | 575 subscribe = xbuffer_init(256); |
9922 | 576 strcpy(subscribe, "Subscribe: "); |
12266 | 577 h=real_parse_sdp(description, &subscribe, bandwidth); |
578 if (!h) { | |
579 subscribe = xbuffer_free(subscribe); | |
580 buf = xbuffer_free(buf); | |
581 return NULL; | |
582 } | |
9922 | 583 rmff_fix_header(h); |
584 | |
585 #ifdef LOG | |
586 printf("Title: %s\nCopyright: %s\nAuthor: %s\nStreams: %i\n", | |
587 h->cont->title, h->cont->copyright, h->cont->author, h->prop->num_streams); | |
588 #endif | |
589 | |
590 /* setup our streams */ | |
591 real_calc_response_and_checksum (challenge2, checksum, challenge1); | |
12266 | 592 buf = xbuffer_ensure_size(buf, strlen(challenge2) + strlen(checksum) + 32); |
9922 | 593 sprintf(buf, "RealChallenge2: %s, sd=%s", challenge2, checksum); |
594 rtsp_schedule_field(rtsp_session, buf); | |
12266 | 595 buf = xbuffer_ensure_size(buf, strlen(session_id) + 32); |
9922 | 596 sprintf(buf, "If-Match: %s", session_id); |
597 rtsp_schedule_field(rtsp_session, buf); | |
598 rtsp_schedule_field(rtsp_session, "Transport: x-pn-tng/tcp;mode=play,rtp/avp/tcp;unicast;mode=play"); | |
12266 | 599 buf = xbuffer_ensure_size(buf, strlen(mrl) + 32); |
9922 | 600 sprintf(buf, "%s/streamid=0", mrl); |
18772
eb60c209a117
better RTSP RFC compliance (fixes in CSeq and TEARDOWN handling)
ben
parents:
17332
diff
changeset
|
601 rtsp_request_setup(rtsp_session,buf,NULL); |
9922 | 602 |
22749 | 603 /* Do setup for all the other streams we subscribed to */ |
604 for (i = 1; i < h->prop->num_streams; i++) { | |
9922 | 605 rtsp_schedule_field(rtsp_session, "Transport: x-pn-tng/tcp;mode=play,rtp/avp/tcp;unicast;mode=play"); |
12266 | 606 buf = xbuffer_ensure_size(buf, strlen(session_id) + 32); |
9922 | 607 sprintf(buf, "If-Match: %s", session_id); |
608 rtsp_schedule_field(rtsp_session, buf); | |
609 | |
12266 | 610 buf = xbuffer_ensure_size(buf, strlen(mrl) + 32); |
22749 | 611 sprintf(buf, "%s/streamid=%d", mrl, i); |
18772
eb60c209a117
better RTSP RFC compliance (fixes in CSeq and TEARDOWN handling)
ben
parents:
17332
diff
changeset
|
612 rtsp_request_setup(rtsp_session,buf,NULL); |
9922 | 613 } |
614 /* set stream parameter (bandwidth) with our subscribe string */ | |
615 rtsp_schedule_field(rtsp_session, subscribe); | |
616 rtsp_request_setparameter(rtsp_session,NULL); | |
617 | |
17332
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
618 /* set delivery bandwidth */ |
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
619 if (maxbandwidth) { |
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
620 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
|
621 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
|
622 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
|
623 } |
88adbc28f60b
This patch makes real rtsp tell the server to deliver data at specified
rtognimp
parents:
14159
diff
changeset
|
624 |
11506
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
625 { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
626 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
|
627 char *str; |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
628 if ((str = rtsp_get_param(rtsp_session, "start"))) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
629 convert_timestamp(str, &s_ss, &s_ms); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
630 free(str); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
631 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
632 if ((str = rtsp_get_param(rtsp_session, "end"))) { |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
633 convert_timestamp(str, &e_ss, &e_ms); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
634 free(str); |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
635 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
636 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
|
637 if (e_ss || e_ms) |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
638 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
|
639 } |
fff1b6f1a9cc
Real rtsp Range parameter (Start and End) support.
rtognimp
parents:
10115
diff
changeset
|
640 rtsp_schedule_field(rtsp_session, buf); |
9922 | 641 /* and finally send a play request */ |
642 rtsp_request_play(rtsp_session,NULL); | |
643 | |
12266 | 644 subscribe = xbuffer_free(subscribe); |
645 buf = xbuffer_free(buf); | |
9922 | 646 return h; |
647 } | |
18792
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
648 |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
649 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
|
650 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
|
651 { |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
652 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
|
653 |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
654 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
|
655 real_rtsp_session->recv = xbuffer_init (BUF_SIZE); |
21842 | 656 real_rtsp_session->rdteof = 0; |
22242
4cabf7499fef
Add support for smil playlist served over realrtsp
rtogni
parents:
22023
diff
changeset
|
657 real_rtsp_session->rdt_rawdata = 0; |
18792
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
658 |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
659 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
|
660 } |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
661 |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
662 void |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
663 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
|
664 { |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
665 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
|
666 return; |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
667 |
6a015ba5bf45
move real_rtsp init/uninit code to its dedicated place to simplify a bit rtsp session demuxer
ben
parents:
18772
diff
changeset
|
668 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
|
669 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
|
670 } |