annotate stream/realrtsp/real.c @ 22943:6bfd7e9775bc

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