Mercurial > libavformat.hg
annotate rtsp.c @ 1432:4f4bebc36aad libavformat
switch to common base64 routines in lavf
Patch by Ryan Martell % rdm4 A martellventures P com %
Original thread:
Date: Oct 29, 2006 2:45 AM
Subject: Re: [Ffmpeg-devel] [PATCH] Base64 code
author | gpoirier |
---|---|
date | Sun, 29 Oct 2006 11:53:07 +0000 |
parents | 2d8a17631520 |
children | c0235bab9e92 |
rev | line source |
---|---|
0 | 1 /* |
2 * RTSP/SDP client | |
3 * Copyright (c) 2002 Fabrice Bellard. | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1169
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
21 #include "avformat.h" | |
22 | |
182 | 23 #include <unistd.h> /* for select() prototype */ |
0 | 24 #include <sys/time.h> |
25 #include <netinet/in.h> | |
26 #include <sys/socket.h> | |
27 #ifndef __BEOS__ | |
28 # include <arpa/inet.h> | |
29 #else | |
30 # include "barpainet.h" | |
31 #endif | |
32 | |
1419 | 33 #include "rtp_internal.h" |
34 | |
0 | 35 //#define DEBUG |
172 | 36 //#define DEBUG_RTP_TCP |
0 | 37 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
38 enum RTSPClientState { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
39 RTSP_STATE_IDLE, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
40 RTSP_STATE_PLAYING, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
41 RTSP_STATE_PAUSED, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
42 }; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
43 |
0 | 44 typedef struct RTSPState { |
45 URLContext *rtsp_hd; /* RTSP TCP connexion handle */ | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
46 int nb_rtsp_streams; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
47 struct RTSPStream **rtsp_streams; |
885 | 48 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
49 enum RTSPClientState state; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
50 int64_t seek_timestamp; |
885 | 51 |
172 | 52 /* XXX: currently we use unbuffered input */ |
53 // ByteIOContext rtsp_gb; | |
0 | 54 int seq; /* RTSP command sequence number */ |
55 char session_id[512]; | |
56 enum RTSPProtocol protocol; | |
57 char last_reply[2048]; /* XXX: allocate ? */ | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
58 RTPDemuxContext *cur_rtp; |
0 | 59 } RTSPState; |
60 | |
61 typedef struct RTSPStream { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
62 URLContext *rtp_handle; /* RTP stream handle */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
63 RTPDemuxContext *rtp_ctx; /* RTP parse context */ |
885 | 64 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
65 int stream_index; /* corresponding stream index, if any. -1 if none (MPEG2TS case) */ |
0 | 66 int interleaved_min, interleaved_max; /* interleave ids, if TCP transport */ |
67 char control_url[1024]; /* url for this stream (from SDP) */ | |
68 | |
69 int sdp_port; /* port (from SDP content - not used in RTSP) */ | |
70 struct in_addr sdp_ip; /* IP address (from SDP content - not used in RTSP) */ | |
71 int sdp_ttl; /* IP TTL (from SDP content - not used in RTSP) */ | |
72 int sdp_payload_type; /* payload type - only used in SDP */ | |
774 | 73 rtp_payload_data_t rtp_payload_data; /* rtp payload parsing infos from SDP */ |
1419 | 74 |
75 RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure) | |
76 void *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol) | |
0 | 77 } RTSPStream; |
78 | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
79 static int rtsp_read_play(AVFormatContext *s); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
80 |
0 | 81 /* XXX: currently, the only way to change the protocols consists in |
82 changing this variable */ | |
83 | |
774 | 84 int rtsp_default_protocols = (1 << RTSP_PROTOCOL_RTP_UDP); |
0 | 85 |
86 FFRTSPCallback *ff_rtsp_callback = NULL; | |
87 | |
88 static int rtsp_probe(AVProbeData *p) | |
89 { | |
90 if (strstart(p->filename, "rtsp:", NULL)) | |
91 return AVPROBE_SCORE_MAX; | |
92 return 0; | |
93 } | |
94 | |
95 static int redir_isspace(int c) | |
96 { | |
97 return (c == ' ' || c == '\t' || c == '\n' || c == '\r'); | |
98 } | |
99 | |
100 static void skip_spaces(const char **pp) | |
101 { | |
102 const char *p; | |
103 p = *pp; | |
104 while (redir_isspace(*p)) | |
105 p++; | |
106 *pp = p; | |
107 } | |
108 | |
885 | 109 static void get_word_sep(char *buf, int buf_size, const char *sep, |
0 | 110 const char **pp) |
111 { | |
112 const char *p; | |
113 char *q; | |
114 | |
115 p = *pp; | |
774 | 116 if (*p == '/') |
117 p++; | |
0 | 118 skip_spaces(&p); |
119 q = buf; | |
120 while (!strchr(sep, *p) && *p != '\0') { | |
121 if ((q - buf) < buf_size - 1) | |
122 *q++ = *p; | |
123 p++; | |
124 } | |
125 if (buf_size > 0) | |
126 *q = '\0'; | |
127 *pp = p; | |
128 } | |
129 | |
130 static void get_word(char *buf, int buf_size, const char **pp) | |
131 { | |
132 const char *p; | |
133 char *q; | |
134 | |
135 p = *pp; | |
136 skip_spaces(&p); | |
137 q = buf; | |
138 while (!redir_isspace(*p) && *p != '\0') { | |
139 if ((q - buf) < buf_size - 1) | |
140 *q++ = *p; | |
141 p++; | |
142 } | |
143 if (buf_size > 0) | |
144 *q = '\0'; | |
145 *pp = p; | |
146 } | |
147 | |
148 /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other | |
149 params>] */ | |
1419 | 150 static int sdp_parse_rtpmap(AVCodecContext *codec, RTSPStream *rtsp_st, int payload_type, const char *p) |
0 | 151 { |
152 char buf[256]; | |
774 | 153 int i; |
154 AVCodec *c; | |
1124
d3aff2c607f9
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
1003
diff
changeset
|
155 const char *c_name; |
0 | 156 |
774 | 157 /* Loop into AVRtpDynamicPayloadTypes[] and AVRtpPayloadTypes[] and |
158 see if we can handle this kind of payload */ | |
0 | 159 get_word_sep(buf, sizeof(buf), "/", &p); |
774 | 160 if (payload_type >= RTP_PT_PRIVATE) { |
1419 | 161 RTPDynamicProtocolHandler *handler= RTPFirstDynamicPayloadHandler; |
162 while(handler) { | |
163 if (!strcmp(buf, handler->enc_name) && (codec->codec_type == handler->codec_type)) { | |
164 codec->codec_id = handler->codec_id; | |
165 rtsp_st->dynamic_handler= handler; | |
166 if(handler->open) { | |
167 rtsp_st->dynamic_protocol_context= handler->open(); | |
168 } | |
774 | 169 break; |
170 } | |
1419 | 171 handler= handler->next; |
172 } | |
774 | 173 } else { |
174 /* We are in a standard case ( from http://www.iana.org/assignments/rtp-parameters) */ | |
175 /* search into AVRtpPayloadTypes[] */ | |
176 for (i = 0; AVRtpPayloadTypes[i].pt >= 0; ++i) | |
177 if (!strcmp(buf, AVRtpPayloadTypes[i].enc_name) && (codec->codec_type == AVRtpPayloadTypes[i].codec_type)){ | |
178 codec->codec_id = AVRtpPayloadTypes[i].codec_id; | |
179 break; | |
180 } | |
181 } | |
182 | |
183 c = avcodec_find_decoder(codec->codec_id); | |
184 if (c && c->name) | |
1124
d3aff2c607f9
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
1003
diff
changeset
|
185 c_name = c->name; |
774 | 186 else |
187 c_name = (char *)NULL; | |
188 | |
189 if (c_name) { | |
190 get_word_sep(buf, sizeof(buf), "/", &p); | |
191 i = atoi(buf); | |
192 switch (codec->codec_type) { | |
193 case CODEC_TYPE_AUDIO: | |
194 av_log(codec, AV_LOG_DEBUG, " audio codec set to : %s\n", c_name); | |
195 codec->sample_rate = RTSP_DEFAULT_AUDIO_SAMPLERATE; | |
196 codec->channels = RTSP_DEFAULT_NB_AUDIO_CHANNELS; | |
197 if (i > 0) { | |
198 codec->sample_rate = i; | |
199 get_word_sep(buf, sizeof(buf), "/", &p); | |
200 i = atoi(buf); | |
201 if (i > 0) | |
202 codec->channels = i; | |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
203 // TODO: there is a bug here; if it is a mono stream, and less than 22000Hz, faad upconverts to stereo and twice the |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
204 // frequency. No problem, but the sample rate is being set here by the sdp line. Upcoming patch forthcoming. (rdm) |
774 | 205 } |
206 av_log(codec, AV_LOG_DEBUG, " audio samplerate set to : %i\n", codec->sample_rate); | |
207 av_log(codec, AV_LOG_DEBUG, " audio channels set to : %i\n", codec->channels); | |
208 break; | |
209 case CODEC_TYPE_VIDEO: | |
210 av_log(codec, AV_LOG_DEBUG, " video codec set to : %s\n", c_name); | |
211 break; | |
212 default: | |
213 break; | |
214 } | |
0 | 215 return 0; |
216 } | |
774 | 217 |
218 return -1; | |
0 | 219 } |
220 | |
221 /* return the length and optionnaly the data */ | |
222 static int hex_to_data(uint8_t *data, const char *p) | |
223 { | |
224 int c, len, v; | |
225 | |
226 len = 0; | |
227 v = 1; | |
228 for(;;) { | |
229 skip_spaces(&p); | |
230 if (p == '\0') | |
231 break; | |
232 c = toupper((unsigned char)*p++); | |
233 if (c >= '0' && c <= '9') | |
234 c = c - '0'; | |
235 else if (c >= 'A' && c <= 'F') | |
236 c = c - 'A' + 10; | |
237 else | |
238 break; | |
239 v = (v << 4) | c; | |
240 if (v & 0x100) { | |
241 if (data) | |
242 data[len] = v; | |
243 len++; | |
244 v = 1; | |
245 } | |
246 } | |
247 return len; | |
248 } | |
249 | |
774 | 250 static void sdp_parse_fmtp_config(AVCodecContext *codec, char *attr, char *value) |
251 { | |
252 switch (codec->codec_id) { | |
253 case CODEC_ID_MPEG4: | |
254 case CODEC_ID_MPEG4AAC: | |
255 if (!strcmp(attr, "config")) { | |
256 /* decode the hexa encoded parameter */ | |
257 int len = hex_to_data(NULL, value); | |
258 codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE); | |
259 if (!codec->extradata) | |
260 return; | |
261 codec->extradata_size = len; | |
262 hex_to_data(codec->extradata, value); | |
263 } | |
264 break; | |
265 default: | |
266 break; | |
267 } | |
268 return; | |
269 } | |
270 | |
271 typedef struct attrname_map | |
272 { | |
1124
d3aff2c607f9
Add const to (mostly) char* and make some functions static, which aren't used
diego
parents:
1003
diff
changeset
|
273 const char *str; |
774 | 274 uint16_t type; |
275 uint32_t offset; | |
276 } attrname_map_t; | |
277 | |
278 /* All known fmtp parmeters and the corresping RTPAttrTypeEnum */ | |
279 #define ATTR_NAME_TYPE_INT 0 | |
280 #define ATTR_NAME_TYPE_STR 1 | |
281 static attrname_map_t attr_names[]= | |
282 { | |
283 {"SizeLength", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, sizelength)}, | |
284 {"IndexLength", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, indexlength)}, | |
285 {"IndexDeltaLength", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, indexdeltalength)}, | |
286 {"profile-level-id", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, profile_level_id)}, | |
287 {"StreamType", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, streamtype)}, | |
288 {"mode", ATTR_NAME_TYPE_STR, offsetof(rtp_payload_data_t, mode)}, | |
289 {NULL, -1, -1}, | |
290 }; | |
291 | |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
292 /** parse the attribute line from the fmtp a line of an sdp resonse. This is broken out as a function |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
293 * because it is used in rtp_h264.c, which is forthcoming. |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
294 */ |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
295 int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size) |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
296 { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
297 skip_spaces(p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
298 if(**p) |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
299 { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
300 get_word_sep(attr, attr_size, "=", p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
301 if (**p == '=') |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
302 (*p)++; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
303 get_word_sep(value, value_size, ";", p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
304 if (**p == ';') |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
305 (*p)++; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
306 return 1; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
307 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
308 return 0; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
309 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
310 |
774 | 311 /* parse a SDP line and save stream attributes */ |
312 static void sdp_parse_fmtp(AVStream *st, const char *p) | |
0 | 313 { |
314 char attr[256]; | |
315 char value[4096]; | |
774 | 316 int i; |
317 | |
318 RTSPStream *rtsp_st = st->priv_data; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
774
diff
changeset
|
319 AVCodecContext *codec = st->codec; |
774 | 320 rtp_payload_data_t *rtp_payload_data = &rtsp_st->rtp_payload_data; |
0 | 321 |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
322 // TODO (Replace with rtsp_next_attr_and_value) |
0 | 323 /* loop on each attribute */ |
324 for(;;) { | |
325 skip_spaces(&p); | |
326 if (*p == '\0') | |
327 break; | |
328 get_word_sep(attr, sizeof(attr), "=", &p); | |
885 | 329 if (*p == '=') |
0 | 330 p++; |
331 get_word_sep(value, sizeof(value), ";", &p); | |
332 if (*p == ';') | |
333 p++; | |
887 | 334 /* grab the codec extra_data from the config parameter of the fmtp line */ |
774 | 335 sdp_parse_fmtp_config(codec, attr, value); |
336 /* Looking for a known attribute */ | |
337 for (i = 0; attr_names[i].str; ++i) { | |
338 if (!strcasecmp(attr, attr_names[i].str)) { | |
339 if (attr_names[i].type == ATTR_NAME_TYPE_INT) | |
340 *(int *)((char *)rtp_payload_data + attr_names[i].offset) = atoi(value); | |
341 else if (attr_names[i].type == ATTR_NAME_TYPE_STR) | |
342 *(char **)((char *)rtp_payload_data + attr_names[i].offset) = av_strdup(value); | |
887 | 343 } |
0 | 344 } |
345 } | |
346 } | |
347 | |
348 typedef struct SDPParseState { | |
349 /* SDP only */ | |
350 struct in_addr default_ip; | |
351 int default_ttl; | |
352 } SDPParseState; | |
353 | |
354 static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1, | |
355 int letter, const char *buf) | |
356 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
357 RTSPState *rt = s->priv_data; |
0 | 358 char buf1[64], st_type[64]; |
359 const char *p; | |
360 int codec_type, payload_type, i; | |
361 AVStream *st; | |
362 RTSPStream *rtsp_st; | |
363 struct in_addr sdp_ip; | |
364 int ttl; | |
365 | |
366 #ifdef DEBUG | |
367 printf("sdp: %c='%s'\n", letter, buf); | |
368 #endif | |
369 | |
370 p = buf; | |
371 switch(letter) { | |
372 case 'c': | |
373 get_word(buf1, sizeof(buf1), &p); | |
374 if (strcmp(buf1, "IN") != 0) | |
375 return; | |
376 get_word(buf1, sizeof(buf1), &p); | |
377 if (strcmp(buf1, "IP4") != 0) | |
378 return; | |
379 get_word_sep(buf1, sizeof(buf1), "/", &p); | |
380 if (inet_aton(buf1, &sdp_ip) == 0) | |
381 return; | |
382 ttl = 16; | |
383 if (*p == '/') { | |
384 p++; | |
385 get_word_sep(buf1, sizeof(buf1), "/", &p); | |
386 ttl = atoi(buf1); | |
387 } | |
388 if (s->nb_streams == 0) { | |
389 s1->default_ip = sdp_ip; | |
390 s1->default_ttl = ttl; | |
391 } else { | |
392 st = s->streams[s->nb_streams - 1]; | |
393 rtsp_st = st->priv_data; | |
394 rtsp_st->sdp_ip = sdp_ip; | |
395 rtsp_st->sdp_ttl = ttl; | |
396 } | |
397 break; | |
398 case 's': | |
399 pstrcpy(s->title, sizeof(s->title), p); | |
400 break; | |
401 case 'i': | |
402 if (s->nb_streams == 0) { | |
403 pstrcpy(s->comment, sizeof(s->comment), p); | |
404 break; | |
405 } | |
406 break; | |
407 case 'm': | |
408 /* new stream */ | |
409 get_word(st_type, sizeof(st_type), &p); | |
410 if (!strcmp(st_type, "audio")) { | |
411 codec_type = CODEC_TYPE_AUDIO; | |
412 } else if (!strcmp(st_type, "video")) { | |
413 codec_type = CODEC_TYPE_VIDEO; | |
414 } else { | |
415 return; | |
416 } | |
417 rtsp_st = av_mallocz(sizeof(RTSPStream)); | |
418 if (!rtsp_st) | |
419 return; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
420 rtsp_st->stream_index = -1; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
421 dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st); |
0 | 422 |
423 rtsp_st->sdp_ip = s1->default_ip; | |
424 rtsp_st->sdp_ttl = s1->default_ttl; | |
425 | |
426 get_word(buf1, sizeof(buf1), &p); /* port */ | |
427 rtsp_st->sdp_port = atoi(buf1); | |
428 | |
429 get_word(buf1, sizeof(buf1), &p); /* protocol (ignored) */ | |
885 | 430 |
0 | 431 /* XXX: handle list of formats */ |
432 get_word(buf1, sizeof(buf1), &p); /* format list */ | |
433 rtsp_st->sdp_payload_type = atoi(buf1); | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
434 |
774 | 435 if (!strcmp(AVRtpPayloadTypes[rtsp_st->sdp_payload_type].enc_name, "MP2T")) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
436 /* no corresponding stream */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
437 } else { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
438 st = av_new_stream(s, 0); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
439 if (!st) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
440 return; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
441 st->priv_data = rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
442 rtsp_st->stream_index = st->index; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
774
diff
changeset
|
443 st->codec->codec_type = codec_type; |
774 | 444 if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
445 /* if standard payload type, we can find the codec right now */ |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
774
diff
changeset
|
446 rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
447 } |
0 | 448 } |
449 /* put a default control url */ | |
450 pstrcpy(rtsp_st->control_url, sizeof(rtsp_st->control_url), s->filename); | |
451 break; | |
452 case 'a': | |
453 if (strstart(p, "control:", &p) && s->nb_streams > 0) { | |
454 char proto[32]; | |
455 /* get the control url */ | |
456 st = s->streams[s->nb_streams - 1]; | |
457 rtsp_st = st->priv_data; | |
885 | 458 |
0 | 459 /* XXX: may need to add full url resolution */ |
511
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
391
diff
changeset
|
460 url_split(proto, sizeof(proto), NULL, 0, NULL, 0, NULL, NULL, 0, p); |
0 | 461 if (proto[0] == '\0') { |
462 /* relative control URL */ | |
463 pstrcat(rtsp_st->control_url, sizeof(rtsp_st->control_url), "/"); | |
464 pstrcat(rtsp_st->control_url, sizeof(rtsp_st->control_url), p); | |
465 } else { | |
466 pstrcpy(rtsp_st->control_url, sizeof(rtsp_st->control_url), p); | |
467 } | |
468 } else if (strstart(p, "rtpmap:", &p)) { | |
469 /* NOTE: rtpmap is only supported AFTER the 'm=' tag */ | |
885 | 470 get_word(buf1, sizeof(buf1), &p); |
0 | 471 payload_type = atoi(buf1); |
472 for(i = 0; i < s->nb_streams;i++) { | |
473 st = s->streams[i]; | |
474 rtsp_st = st->priv_data; | |
475 if (rtsp_st->sdp_payload_type == payload_type) { | |
1419 | 476 sdp_parse_rtpmap(st->codec, rtsp_st, payload_type, p); |
0 | 477 } |
478 } | |
479 } else if (strstart(p, "fmtp:", &p)) { | |
480 /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */ | |
885 | 481 get_word(buf1, sizeof(buf1), &p); |
0 | 482 payload_type = atoi(buf1); |
483 for(i = 0; i < s->nb_streams;i++) { | |
484 st = s->streams[i]; | |
485 rtsp_st = st->priv_data; | |
486 if (rtsp_st->sdp_payload_type == payload_type) { | |
1419 | 487 if(rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->parse_sdp_a_line) { |
488 if(!rtsp_st->dynamic_handler->parse_sdp_a_line(st, rtsp_st->dynamic_protocol_context, buf)) { | |
489 sdp_parse_fmtp(st, p); | |
490 } | |
491 } else { | |
1424
1c39ce5c6a5d
indentation fix, patch by Ryan Martell % rdm4 A martellventures P com %
gpoirier
parents:
1419
diff
changeset
|
492 sdp_parse_fmtp(st, p); |
1419 | 493 } |
0 | 494 } |
495 } | |
1431
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
496 } else if(strstart(p, "framesize:", &p)) { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
497 // let dynamic protocol handlers have a stab at the line. |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
498 get_word(buf1, sizeof(buf1), &p); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
499 payload_type = atoi(buf1); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
500 for(i = 0; i < s->nb_streams;i++) { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
501 st = s->streams[i]; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
502 rtsp_st = st->priv_data; |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
503 if (rtsp_st->sdp_payload_type == payload_type) { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
504 if(rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->parse_sdp_a_line) { |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
505 rtsp_st->dynamic_handler->parse_sdp_a_line(st, rtsp_st->dynamic_protocol_context, buf); |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
506 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
507 } |
2d8a17631520
fix more dynamic protocol stuff, needed by the forthcoming h264
gpoirier
parents:
1425
diff
changeset
|
508 } |
0 | 509 } |
510 break; | |
511 } | |
512 } | |
513 | |
64 | 514 static int sdp_parse(AVFormatContext *s, const char *content) |
0 | 515 { |
516 const char *p; | |
517 int letter; | |
518 char buf[1024], *q; | |
519 SDPParseState sdp_parse_state, *s1 = &sdp_parse_state; | |
885 | 520 |
0 | 521 memset(s1, 0, sizeof(SDPParseState)); |
522 p = content; | |
523 for(;;) { | |
524 skip_spaces(&p); | |
525 letter = *p; | |
526 if (letter == '\0') | |
527 break; | |
528 p++; | |
529 if (*p != '=') | |
530 goto next_line; | |
531 p++; | |
532 /* get the content */ | |
533 q = buf; | |
172 | 534 while (*p != '\n' && *p != '\r' && *p != '\0') { |
0 | 535 if ((q - buf) < sizeof(buf) - 1) |
536 *q++ = *p; | |
537 p++; | |
538 } | |
539 *q = '\0'; | |
540 sdp_parse_line(s, s1, letter, buf); | |
541 next_line: | |
542 while (*p != '\n' && *p != '\0') | |
543 p++; | |
544 if (*p == '\n') | |
545 p++; | |
546 } | |
547 return 0; | |
548 } | |
549 | |
550 static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp) | |
551 { | |
552 const char *p; | |
553 int v; | |
554 | |
555 p = *pp; | |
556 skip_spaces(&p); | |
557 v = strtol(p, (char **)&p, 10); | |
558 if (*p == '-') { | |
559 p++; | |
560 *min_ptr = v; | |
561 v = strtol(p, (char **)&p, 10); | |
562 *max_ptr = v; | |
563 } else { | |
564 *min_ptr = v; | |
565 *max_ptr = v; | |
566 } | |
567 *pp = p; | |
568 } | |
569 | |
570 /* XXX: only one transport specification is parsed */ | |
571 static void rtsp_parse_transport(RTSPHeader *reply, const char *p) | |
572 { | |
573 char transport_protocol[16]; | |
574 char profile[16]; | |
575 char lower_transport[16]; | |
576 char parameter[16]; | |
577 RTSPTransportField *th; | |
578 char buf[256]; | |
885 | 579 |
0 | 580 reply->nb_transports = 0; |
885 | 581 |
0 | 582 for(;;) { |
583 skip_spaces(&p); | |
584 if (*p == '\0') | |
585 break; | |
586 | |
587 th = &reply->transports[reply->nb_transports]; | |
588 | |
885 | 589 get_word_sep(transport_protocol, sizeof(transport_protocol), |
0 | 590 "/", &p); |
591 if (*p == '/') | |
592 p++; | |
593 get_word_sep(profile, sizeof(profile), "/;,", &p); | |
594 lower_transport[0] = '\0'; | |
595 if (*p == '/') { | |
172 | 596 p++; |
885 | 597 get_word_sep(lower_transport, sizeof(lower_transport), |
0 | 598 ";,", &p); |
599 } | |
172 | 600 if (!strcasecmp(lower_transport, "TCP")) |
0 | 601 th->protocol = RTSP_PROTOCOL_RTP_TCP; |
602 else | |
603 th->protocol = RTSP_PROTOCOL_RTP_UDP; | |
885 | 604 |
0 | 605 if (*p == ';') |
606 p++; | |
607 /* get each parameter */ | |
608 while (*p != '\0' && *p != ',') { | |
609 get_word_sep(parameter, sizeof(parameter), "=;,", &p); | |
610 if (!strcmp(parameter, "port")) { | |
611 if (*p == '=') { | |
612 p++; | |
613 rtsp_parse_range(&th->port_min, &th->port_max, &p); | |
614 } | |
615 } else if (!strcmp(parameter, "client_port")) { | |
616 if (*p == '=') { | |
617 p++; | |
885 | 618 rtsp_parse_range(&th->client_port_min, |
0 | 619 &th->client_port_max, &p); |
620 } | |
621 } else if (!strcmp(parameter, "server_port")) { | |
622 if (*p == '=') { | |
623 p++; | |
885 | 624 rtsp_parse_range(&th->server_port_min, |
0 | 625 &th->server_port_max, &p); |
626 } | |
627 } else if (!strcmp(parameter, "interleaved")) { | |
628 if (*p == '=') { | |
629 p++; | |
885 | 630 rtsp_parse_range(&th->interleaved_min, |
0 | 631 &th->interleaved_max, &p); |
632 } | |
633 } else if (!strcmp(parameter, "multicast")) { | |
634 if (th->protocol == RTSP_PROTOCOL_RTP_UDP) | |
635 th->protocol = RTSP_PROTOCOL_RTP_UDP_MULTICAST; | |
636 } else if (!strcmp(parameter, "ttl")) { | |
637 if (*p == '=') { | |
638 p++; | |
639 th->ttl = strtol(p, (char **)&p, 10); | |
640 } | |
641 } else if (!strcmp(parameter, "destination")) { | |
642 struct in_addr ipaddr; | |
643 | |
644 if (*p == '=') { | |
645 p++; | |
646 get_word_sep(buf, sizeof(buf), ";,", &p); | |
885 | 647 if (inet_aton(buf, &ipaddr)) |
0 | 648 th->destination = ntohl(ipaddr.s_addr); |
649 } | |
650 } | |
651 while (*p != ';' && *p != '\0' && *p != ',') | |
652 p++; | |
653 if (*p == ';') | |
654 p++; | |
655 } | |
656 if (*p == ',') | |
657 p++; | |
658 | |
659 reply->nb_transports++; | |
660 } | |
661 } | |
662 | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
663 static void rtsp_parse_range_npt(RTSPHeader *reply, const char *p) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
664 { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
665 char buf[256]; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
666 |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
667 skip_spaces(&p); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
668 if (!stristart(p, "npt=", &p)) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
669 return; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
670 |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
671 reply->range_start = AV_NOPTS_VALUE; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
672 reply->range_end = AV_NOPTS_VALUE; |
885 | 673 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
674 get_word_sep(buf, sizeof(buf), "-", &p); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
675 reply->range_start = parse_date(buf, 1); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
676 if (*p == '-') { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
677 p++; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
678 get_word_sep(buf, sizeof(buf), "-", &p); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
679 reply->range_end = parse_date(buf, 1); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
680 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
681 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
682 |
0 | 683 void rtsp_parse_line(RTSPHeader *reply, const char *buf) |
684 { | |
685 const char *p; | |
686 | |
687 /* NOTE: we do case independent match for broken servers */ | |
688 p = buf; | |
689 if (stristart(p, "Session:", &p)) { | |
690 get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p); | |
691 } else if (stristart(p, "Content-Length:", &p)) { | |
692 reply->content_length = strtol(p, NULL, 10); | |
693 } else if (stristart(p, "Transport:", &p)) { | |
694 rtsp_parse_transport(reply, p); | |
695 } else if (stristart(p, "CSeq:", &p)) { | |
696 reply->seq = strtol(p, NULL, 10); | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
697 } else if (stristart(p, "Range:", &p)) { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
698 rtsp_parse_range_npt(reply, p); |
0 | 699 } |
700 } | |
701 | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
702 static int url_readbuf(URLContext *h, unsigned char *buf, int size) |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
703 { |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
704 int ret, len; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
705 |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
706 len = 0; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
707 while (len < size) { |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
708 ret = url_read(h, buf+len, size-len); |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
709 if (ret < 1) |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
710 return ret; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
711 len += ret; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
712 } |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
713 return len; |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
714 } |
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
715 |
179 | 716 /* skip a RTP/TCP interleaved packet */ |
717 static void rtsp_skip_packet(AVFormatContext *s) | |
718 { | |
719 RTSPState *rt = s->priv_data; | |
720 int ret, len, len1; | |
721 uint8_t buf[1024]; | |
722 | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
723 ret = url_readbuf(rt->rtsp_hd, buf, 3); |
179 | 724 if (ret != 3) |
725 return; | |
726 len = (buf[1] << 8) | buf[2]; | |
727 #ifdef DEBUG | |
728 printf("skipping RTP packet len=%d\n", len); | |
729 #endif | |
730 /* skip payload */ | |
731 while (len > 0) { | |
732 len1 = len; | |
733 if (len1 > sizeof(buf)) | |
734 len1 = sizeof(buf); | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
735 ret = url_readbuf(rt->rtsp_hd, buf, len1); |
179 | 736 if (ret != len1) |
737 return; | |
738 len -= len1; | |
739 } | |
740 } | |
0 | 741 |
885 | 742 static void rtsp_send_cmd(AVFormatContext *s, |
743 const char *cmd, RTSPHeader *reply, | |
0 | 744 unsigned char **content_ptr) |
745 { | |
746 RTSPState *rt = s->priv_data; | |
747 char buf[4096], buf1[1024], *q; | |
748 unsigned char ch; | |
749 const char *p; | |
750 int content_length, line_count; | |
751 unsigned char *content = NULL; | |
752 | |
753 memset(reply, 0, sizeof(RTSPHeader)); | |
754 | |
755 rt->seq++; | |
756 pstrcpy(buf, sizeof(buf), cmd); | |
172 | 757 snprintf(buf1, sizeof(buf1), "CSeq: %d\r\n", rt->seq); |
0 | 758 pstrcat(buf, sizeof(buf), buf1); |
759 if (rt->session_id[0] != '\0' && !strstr(cmd, "\nIf-Match:")) { | |
172 | 760 snprintf(buf1, sizeof(buf1), "Session: %s\r\n", rt->session_id); |
0 | 761 pstrcat(buf, sizeof(buf), buf1); |
762 } | |
172 | 763 pstrcat(buf, sizeof(buf), "\r\n"); |
0 | 764 #ifdef DEBUG |
765 printf("Sending:\n%s--\n", buf); | |
766 #endif | |
767 url_write(rt->rtsp_hd, buf, strlen(buf)); | |
768 | |
769 /* parse reply (XXX: use buffers) */ | |
770 line_count = 0; | |
771 rt->last_reply[0] = '\0'; | |
772 for(;;) { | |
773 q = buf; | |
774 for(;;) { | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
775 if (url_readbuf(rt->rtsp_hd, &ch, 1) != 1) |
0 | 776 break; |
777 if (ch == '\n') | |
778 break; | |
179 | 779 if (ch == '$') { |
780 /* XXX: only parse it if first char on line ? */ | |
781 rtsp_skip_packet(s); | |
782 } else if (ch != '\r') { | |
0 | 783 if ((q - buf) < sizeof(buf) - 1) |
784 *q++ = ch; | |
785 } | |
786 } | |
787 *q = '\0'; | |
788 #ifdef DEBUG | |
789 printf("line='%s'\n", buf); | |
790 #endif | |
791 /* test if last line */ | |
792 if (buf[0] == '\0') | |
793 break; | |
794 p = buf; | |
795 if (line_count == 0) { | |
796 /* get reply code */ | |
797 get_word(buf1, sizeof(buf1), &p); | |
798 get_word(buf1, sizeof(buf1), &p); | |
799 reply->status_code = atoi(buf1); | |
800 } else { | |
801 rtsp_parse_line(reply, p); | |
802 pstrcat(rt->last_reply, sizeof(rt->last_reply), p); | |
803 pstrcat(rt->last_reply, sizeof(rt->last_reply), "\n"); | |
804 } | |
805 line_count++; | |
806 } | |
885 | 807 |
0 | 808 if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0') |
809 pstrcpy(rt->session_id, sizeof(rt->session_id), reply->session_id); | |
885 | 810 |
0 | 811 content_length = reply->content_length; |
812 if (content_length > 0) { | |
813 /* leave some room for a trailing '\0' (useful for simple parsing) */ | |
814 content = av_malloc(content_length + 1); | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
815 (void)url_readbuf(rt->rtsp_hd, content, content_length); |
0 | 816 content[content_length] = '\0'; |
817 } | |
818 if (content_ptr) | |
819 *content_ptr = content; | |
820 } | |
821 | |
822 /* useful for modules: set RTSP callback function */ | |
823 | |
824 void rtsp_set_callback(FFRTSPCallback *rtsp_cb) | |
825 { | |
826 ff_rtsp_callback = rtsp_cb; | |
827 } | |
828 | |
829 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
830 /* close and free RTSP streams */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
831 static void rtsp_close_streams(RTSPState *rt) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
832 { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
833 int i; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
834 RTSPStream *rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
835 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
836 for(i=0;i<rt->nb_rtsp_streams;i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
837 rtsp_st = rt->rtsp_streams[i]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
838 if (rtsp_st) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
839 if (rtsp_st->rtp_ctx) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
840 rtp_parse_close(rtsp_st->rtp_ctx); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
841 if (rtsp_st->rtp_handle) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
842 url_close(rtsp_st->rtp_handle); |
1419 | 843 if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context) |
844 rtsp_st->dynamic_handler->close(rtsp_st->dynamic_protocol_context); | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
845 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
846 av_free(rtsp_st); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
847 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
848 av_free(rt->rtsp_streams); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
849 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
850 |
0 | 851 static int rtsp_read_header(AVFormatContext *s, |
852 AVFormatParameters *ap) | |
853 { | |
854 RTSPState *rt = s->priv_data; | |
855 char host[1024], path[1024], tcpname[1024], cmd[2048]; | |
856 URLContext *rtsp_hd; | |
774 | 857 int port, i, j, ret, err; |
0 | 858 RTSPHeader reply1, *reply = &reply1; |
859 unsigned char *content = NULL; | |
860 RTSPStream *rtsp_st; | |
861 int protocol_mask; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
862 AVStream *st; |
0 | 863 |
864 /* extract hostname and port */ | |
511
056991ab9f10
HTTP Authentication Patch by (Petr Doubek <doubek at vision dot ee dot ethz dot ch>)
michael
parents:
391
diff
changeset
|
865 url_split(NULL, 0, NULL, 0, |
0 | 866 host, sizeof(host), &port, path, sizeof(path), s->filename); |
867 if (port < 0) | |
868 port = RTSP_DEFAULT_PORT; | |
869 | |
870 /* open the tcp connexion */ | |
871 snprintf(tcpname, sizeof(tcpname), "tcp://%s:%d", host, port); | |
872 if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0) | |
873 return AVERROR_IO; | |
874 rt->rtsp_hd = rtsp_hd; | |
875 rt->seq = 0; | |
885 | 876 |
0 | 877 /* describe the stream */ |
885 | 878 snprintf(cmd, sizeof(cmd), |
172 | 879 "DESCRIBE %s RTSP/1.0\r\n" |
880 "Accept: application/sdp\r\n", | |
0 | 881 s->filename); |
882 rtsp_send_cmd(s, cmd, reply, &content); | |
883 if (!content) { | |
884 err = AVERROR_INVALIDDATA; | |
885 goto fail; | |
886 } | |
887 if (reply->status_code != RTSP_STATUS_OK) { | |
888 err = AVERROR_INVALIDDATA; | |
889 goto fail; | |
890 } | |
885 | 891 |
0 | 892 /* now we got the SDP description, we parse it */ |
893 ret = sdp_parse(s, (const char *)content); | |
894 av_freep(&content); | |
895 if (ret < 0) { | |
896 err = AVERROR_INVALIDDATA; | |
897 goto fail; | |
898 } | |
885 | 899 |
0 | 900 protocol_mask = rtsp_default_protocols; |
901 | |
902 /* for each stream, make the setup request */ | |
903 /* XXX: we assume the same server is used for the control of each | |
904 RTSP stream */ | |
774 | 905 |
906 for(j = RTSP_RTP_PORT_MIN, i = 0; i < rt->nb_rtsp_streams; ++i) { | |
0 | 907 char transport[2048]; |
908 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
909 rtsp_st = rt->rtsp_streams[i]; |
0 | 910 |
911 /* compute available transports */ | |
912 transport[0] = '\0'; | |
913 | |
914 /* RTP/UDP */ | |
915 if (protocol_mask & (1 << RTSP_PROTOCOL_RTP_UDP)) { | |
916 char buf[256]; | |
917 | |
918 /* first try in specified port range */ | |
774 | 919 if (RTSP_RTP_PORT_MIN != 0) { |
920 while(j <= RTSP_RTP_PORT_MAX) { | |
0 | 921 snprintf(buf, sizeof(buf), "rtp://?localport=%d", j); |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
922 if (url_open(&rtsp_st->rtp_handle, buf, URL_RDWR) == 0) { |
774 | 923 j += 2; /* we will use two port by rtp stream (rtp and rtcp) */ |
0 | 924 goto rtp_opened; |
774 | 925 } |
0 | 926 } |
927 } | |
928 | |
774 | 929 /* then try on any port |
930 ** if (url_open(&rtsp_st->rtp_handle, "rtp://", URL_RDONLY) < 0) { | |
931 ** err = AVERROR_INVALIDDATA; | |
932 ** goto fail; | |
933 ** } | |
934 */ | |
0 | 935 |
936 rtp_opened: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
937 port = rtp_get_local_port(rtsp_st->rtp_handle); |
0 | 938 if (transport[0] != '\0') |
939 pstrcat(transport, sizeof(transport), ","); | |
940 snprintf(transport + strlen(transport), sizeof(transport) - strlen(transport) - 1, | |
941 "RTP/AVP/UDP;unicast;client_port=%d-%d", | |
942 port, port + 1); | |
943 } | |
944 | |
945 /* RTP/TCP */ | |
774 | 946 else if (protocol_mask & (1 << RTSP_PROTOCOL_RTP_TCP)) { |
0 | 947 if (transport[0] != '\0') |
948 pstrcat(transport, sizeof(transport), ","); | |
949 snprintf(transport + strlen(transport), sizeof(transport) - strlen(transport) - 1, | |
950 "RTP/AVP/TCP"); | |
951 } | |
952 | |
774 | 953 else if (protocol_mask & (1 << RTSP_PROTOCOL_RTP_UDP_MULTICAST)) { |
0 | 954 if (transport[0] != '\0') |
955 pstrcat(transport, sizeof(transport), ","); | |
885 | 956 snprintf(transport + strlen(transport), |
0 | 957 sizeof(transport) - strlen(transport) - 1, |
958 "RTP/AVP/UDP;multicast"); | |
959 } | |
885 | 960 snprintf(cmd, sizeof(cmd), |
172 | 961 "SETUP %s RTSP/1.0\r\n" |
962 "Transport: %s\r\n", | |
0 | 963 rtsp_st->control_url, transport); |
964 rtsp_send_cmd(s, cmd, reply, NULL); | |
965 if (reply->status_code != RTSP_STATUS_OK || | |
966 reply->nb_transports != 1) { | |
967 err = AVERROR_INVALIDDATA; | |
968 goto fail; | |
969 } | |
970 | |
971 /* XXX: same protocol for all streams is required */ | |
972 if (i > 0) { | |
973 if (reply->transports[0].protocol != rt->protocol) { | |
974 err = AVERROR_INVALIDDATA; | |
975 goto fail; | |
976 } | |
977 } else { | |
978 rt->protocol = reply->transports[0].protocol; | |
979 } | |
980 | |
981 /* close RTP connection if not choosen */ | |
982 if (reply->transports[0].protocol != RTSP_PROTOCOL_RTP_UDP && | |
983 (protocol_mask & (1 << RTSP_PROTOCOL_RTP_UDP))) { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
984 url_close(rtsp_st->rtp_handle); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
985 rtsp_st->rtp_handle = NULL; |
0 | 986 } |
987 | |
988 switch(reply->transports[0].protocol) { | |
989 case RTSP_PROTOCOL_RTP_TCP: | |
990 rtsp_st->interleaved_min = reply->transports[0].interleaved_min; | |
991 rtsp_st->interleaved_max = reply->transports[0].interleaved_max; | |
992 break; | |
885 | 993 |
0 | 994 case RTSP_PROTOCOL_RTP_UDP: |
995 { | |
996 char url[1024]; | |
885 | 997 |
0 | 998 /* XXX: also use address if specified */ |
885 | 999 snprintf(url, sizeof(url), "rtp://%s:%d", |
0 | 1000 host, reply->transports[0].server_port_min); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1001 if (rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) { |
0 | 1002 err = AVERROR_INVALIDDATA; |
1003 goto fail; | |
1004 } | |
1005 } | |
1006 break; | |
1007 case RTSP_PROTOCOL_RTP_UDP_MULTICAST: | |
1008 { | |
1009 char url[1024]; | |
1010 int ttl; | |
1011 | |
1012 ttl = reply->transports[0].ttl; | |
1013 if (!ttl) | |
1014 ttl = 16; | |
885 | 1015 snprintf(url, sizeof(url), "rtp://%s:%d?multicast=1&ttl=%d", |
1016 host, | |
0 | 1017 reply->transports[0].server_port_min, |
1018 ttl); | |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1019 if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) { |
0 | 1020 err = AVERROR_INVALIDDATA; |
1021 goto fail; | |
1022 } | |
1023 } | |
1024 break; | |
1025 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1026 /* open the RTP context */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1027 st = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1028 if (rtsp_st->stream_index >= 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1029 st = s->streams[rtsp_st->stream_index]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1030 if (!st) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1031 s->ctx_flags |= AVFMTCTX_NOHEADER; |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1032 rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data); |
774 | 1033 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1034 if (!rtsp_st->rtp_ctx) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1035 err = AVERROR_NOMEM; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1036 goto fail; |
1419 | 1037 } else { |
1038 if(rtsp_st->dynamic_handler) { | |
1039 rtsp_st->rtp_ctx->dynamic_protocol_context= rtsp_st->dynamic_protocol_context; | |
1040 rtsp_st->rtp_ctx->parse_packet= rtsp_st->dynamic_handler->parse_packet; | |
1041 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1042 } |
0 | 1043 } |
1044 | |
1045 /* use callback if available to extend setup */ | |
1046 if (ff_rtsp_callback) { | |
885 | 1047 if (ff_rtsp_callback(RTSP_ACTION_CLIENT_SETUP, rt->session_id, |
0 | 1048 NULL, 0, rt->last_reply) < 0) { |
1049 err = AVERROR_INVALIDDATA; | |
1050 goto fail; | |
1051 } | |
1052 } | |
885 | 1053 |
0 | 1054 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1055 rt->state = RTSP_STATE_IDLE; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1056 rt->seek_timestamp = 0; /* default is to start stream at position |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1057 zero */ |
1003 | 1058 if (ap->initial_pause) { |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1059 /* do not start immediately */ |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1060 } else { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1061 if (rtsp_read_play(s) < 0) { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1062 err = AVERROR_INVALIDDATA; |
0 | 1063 goto fail; |
1064 } | |
1065 } | |
1066 return 0; | |
1067 fail: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1068 rtsp_close_streams(rt); |
0 | 1069 av_freep(&content); |
1070 url_close(rt->rtsp_hd); | |
1071 return err; | |
1072 } | |
1073 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1074 static int tcp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st, |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1075 uint8_t *buf, int buf_size) |
0 | 1076 { |
1077 RTSPState *rt = s->priv_data; | |
172 | 1078 int id, len, i, ret; |
0 | 1079 RTSPStream *rtsp_st; |
1080 | |
172 | 1081 #ifdef DEBUG_RTP_TCP |
1082 printf("tcp_read_packet:\n"); | |
1083 #endif | |
0 | 1084 redo: |
1085 for(;;) { | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
1086 ret = url_readbuf(rt->rtsp_hd, buf, 1); |
172 | 1087 #ifdef DEBUG_RTP_TCP |
1088 printf("ret=%d c=%02x [%c]\n", ret, buf[0], buf[0]); | |
1089 #endif | |
1090 if (ret != 1) | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1091 return -1; |
172 | 1092 if (buf[0] == '$') |
0 | 1093 break; |
1094 } | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
1095 ret = url_readbuf(rt->rtsp_hd, buf, 3); |
172 | 1096 if (ret != 3) |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1097 return -1; |
172 | 1098 id = buf[0]; |
1099 len = (buf[1] << 8) | buf[2]; | |
1100 #ifdef DEBUG_RTP_TCP | |
1101 printf("id=%d len=%d\n", id, len); | |
1102 #endif | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1103 if (len > buf_size || len < 12) |
0 | 1104 goto redo; |
1105 /* get the data */ | |
391
1cf22651d33b
support url_read which reads less then requested patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
370
diff
changeset
|
1106 ret = url_readbuf(rt->rtsp_hd, buf, len); |
172 | 1107 if (ret != len) |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1108 return -1; |
885 | 1109 |
0 | 1110 /* find the matching stream */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1111 for(i = 0; i < rt->nb_rtsp_streams; i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1112 rtsp_st = rt->rtsp_streams[i]; |
885 | 1113 if (id >= rtsp_st->interleaved_min && |
1114 id <= rtsp_st->interleaved_max) | |
0 | 1115 goto found; |
1116 } | |
1117 goto redo; | |
1118 found: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1119 *prtsp_st = rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1120 return len; |
0 | 1121 } |
1122 | |
885 | 1123 static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st, |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1124 uint8_t *buf, int buf_size) |
0 | 1125 { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1126 RTSPState *rt = s->priv_data; |
0 | 1127 RTSPStream *rtsp_st; |
1128 fd_set rfds; | |
1129 int fd1, fd2, fd_max, n, i, ret; | |
1130 struct timeval tv; | |
1131 | |
1132 for(;;) { | |
179 | 1133 if (url_interrupt_cb()) |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1134 return -1; |
0 | 1135 FD_ZERO(&rfds); |
1136 fd_max = -1; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1137 for(i = 0; i < rt->nb_rtsp_streams; i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1138 rtsp_st = rt->rtsp_streams[i]; |
0 | 1139 /* currently, we cannot probe RTCP handle because of blocking restrictions */ |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1140 rtp_get_file_handles(rtsp_st->rtp_handle, &fd1, &fd2); |
0 | 1141 if (fd1 > fd_max) |
1142 fd_max = fd1; | |
1143 FD_SET(fd1, &rfds); | |
1144 } | |
1145 tv.tv_sec = 0; | |
179 | 1146 tv.tv_usec = 100 * 1000; |
0 | 1147 n = select(fd_max + 1, &rfds, NULL, NULL, &tv); |
1148 if (n > 0) { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1149 for(i = 0; i < rt->nb_rtsp_streams; i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1150 rtsp_st = rt->rtsp_streams[i]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1151 rtp_get_file_handles(rtsp_st->rtp_handle, &fd1, &fd2); |
0 | 1152 if (FD_ISSET(fd1, &rfds)) { |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1153 ret = url_read(rtsp_st->rtp_handle, buf, buf_size); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1154 if (ret > 0) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1155 *prtsp_st = rtsp_st; |
0 | 1156 return ret; |
1157 } | |
1158 } | |
1159 } | |
1160 } | |
1161 } | |
1162 } | |
1163 | |
1164 static int rtsp_read_packet(AVFormatContext *s, | |
1165 AVPacket *pkt) | |
1166 { | |
1167 RTSPState *rt = s->priv_data; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1168 RTSPStream *rtsp_st; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1169 int ret, len; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1170 uint8_t buf[RTP_MAX_PACKET_LENGTH]; |
0 | 1171 |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1172 /* get next frames from the same RTP packet */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1173 if (rt->cur_rtp) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1174 ret = rtp_parse_packet(rt->cur_rtp, pkt, NULL, 0); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1175 if (ret == 0) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1176 rt->cur_rtp = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1177 return 0; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1178 } else if (ret == 1) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1179 return 0; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1180 } else { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1181 rt->cur_rtp = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1182 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1183 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1184 |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1185 /* read next RTP packet */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1186 redo: |
0 | 1187 switch(rt->protocol) { |
1188 default: | |
1189 case RTSP_PROTOCOL_RTP_TCP: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1190 len = tcp_read_packet(s, &rtsp_st, buf, sizeof(buf)); |
0 | 1191 break; |
1192 case RTSP_PROTOCOL_RTP_UDP: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1193 case RTSP_PROTOCOL_RTP_UDP_MULTICAST: |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1194 len = udp_read_packet(s, &rtsp_st, buf, sizeof(buf)); |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1195 if (rtsp_st->rtp_ctx) |
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1196 rtp_check_and_send_back_rr(rtsp_st->rtp_ctx, len); |
0 | 1197 break; |
1198 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1199 if (len < 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1200 return AVERROR_IO; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1201 ret = rtp_parse_packet(rtsp_st->rtp_ctx, pkt, buf, len); |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1202 if (ret < 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1203 goto redo; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1204 if (ret == 1) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1205 /* more packets may follow, so we save the RTP context */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1206 rt->cur_rtp = rtsp_st->rtp_ctx; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1207 } |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1208 return 0; |
0 | 1209 } |
1210 | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1211 static int rtsp_read_play(AVFormatContext *s) |
179 | 1212 { |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1213 RTSPState *rt = s->priv_data; |
179 | 1214 RTSPHeader reply1, *reply = &reply1; |
1215 char cmd[1024]; | |
1216 | |
370
845f9de2c883
av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
304
diff
changeset
|
1217 av_log(s, AV_LOG_DEBUG, "hello state=%d\n", rt->state); |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1218 |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1219 if (rt->state == RTSP_STATE_PAUSED) { |
885 | 1220 snprintf(cmd, sizeof(cmd), |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1221 "PLAY %s RTSP/1.0\r\n", |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1222 s->filename); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1223 } else { |
885 | 1224 snprintf(cmd, sizeof(cmd), |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1225 "PLAY %s RTSP/1.0\r\n" |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1226 "Range: npt=%0.3f-\r\n", |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1227 s->filename, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1228 (double)rt->seek_timestamp / AV_TIME_BASE); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1229 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1230 rtsp_send_cmd(s, cmd, reply, NULL); |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1231 if (reply->status_code != RTSP_STATUS_OK) { |
179 | 1232 return -1; |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1233 } else { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1234 rt->state = RTSP_STATE_PLAYING; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1235 return 0; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1236 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1237 } |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1238 |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1239 /* pause the stream */ |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1240 static int rtsp_read_pause(AVFormatContext *s) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1241 { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1242 RTSPState *rt = s->priv_data; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1243 RTSPHeader reply1, *reply = &reply1; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1244 char cmd[1024]; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1245 |
179 | 1246 rt = s->priv_data; |
885 | 1247 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1248 if (rt->state != RTSP_STATE_PLAYING) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1249 return 0; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1250 |
885 | 1251 snprintf(cmd, sizeof(cmd), |
179 | 1252 "PAUSE %s RTSP/1.0\r\n", |
1253 s->filename); | |
1254 rtsp_send_cmd(s, cmd, reply, NULL); | |
1255 if (reply->status_code != RTSP_STATUS_OK) { | |
1256 return -1; | |
1257 } else { | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1258 rt->state = RTSP_STATE_PAUSED; |
179 | 1259 return 0; |
1260 } | |
1261 } | |
1262 | |
885 | 1263 static int rtsp_read_seek(AVFormatContext *s, int stream_index, |
558 | 1264 int64_t timestamp, int flags) |
179 | 1265 { |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1266 RTSPState *rt = s->priv_data; |
885 | 1267 |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1268 rt->seek_timestamp = timestamp; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1269 switch(rt->state) { |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1270 default: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1271 case RTSP_STATE_IDLE: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1272 break; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1273 case RTSP_STATE_PLAYING: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1274 if (rtsp_read_play(s) != 0) |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1275 return -1; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1276 break; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1277 case RTSP_STATE_PAUSED: |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1278 rt->state = RTSP_STATE_IDLE; |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1279 break; |
179 | 1280 } |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1281 return 0; |
179 | 1282 } |
1283 | |
0 | 1284 static int rtsp_read_close(AVFormatContext *s) |
1285 { | |
1286 RTSPState *rt = s->priv_data; | |
1287 RTSPHeader reply1, *reply = &reply1; | |
1288 char cmd[1024]; | |
1289 | |
172 | 1290 #if 0 |
0 | 1291 /* NOTE: it is valid to flush the buffer here */ |
1292 if (rt->protocol == RTSP_PROTOCOL_RTP_TCP) { | |
1293 url_fclose(&rt->rtsp_gb); | |
1294 } | |
172 | 1295 #endif |
885 | 1296 snprintf(cmd, sizeof(cmd), |
172 | 1297 "TEARDOWN %s RTSP/1.0\r\n", |
0 | 1298 s->filename); |
1299 rtsp_send_cmd(s, cmd, reply, NULL); | |
1300 | |
1301 if (ff_rtsp_callback) { | |
885 | 1302 ff_rtsp_callback(RTSP_ACTION_CLIENT_TEARDOWN, rt->session_id, |
0 | 1303 NULL, 0, NULL); |
1304 } | |
1305 | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1306 rtsp_close_streams(rt); |
0 | 1307 url_close(rt->rtsp_hd); |
1308 return 0; | |
1309 } | |
1310 | |
1167 | 1311 AVInputFormat rtsp_demuxer = { |
0 | 1312 "rtsp", |
1313 "RTSP input format", | |
1314 sizeof(RTSPState), | |
1315 rtsp_probe, | |
1316 rtsp_read_header, | |
1317 rtsp_read_packet, | |
1318 rtsp_read_close, | |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1319 rtsp_read_seek, |
0 | 1320 .flags = AVFMT_NOFILE, |
304
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1321 .read_play = rtsp_read_play, |
d58c8859ff8c
initial seek support - more generic play/pause support
bellard
parents:
294
diff
changeset
|
1322 .read_pause = rtsp_read_pause, |
0 | 1323 }; |
1324 | |
1325 static int sdp_probe(AVProbeData *p1) | |
1326 { | |
706
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1327 const char *p = p1->buf, *p_end = p1->buf + p1->buf_size; |
0 | 1328 |
1329 /* we look for a line beginning "c=IN IP4" */ | |
706
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1330 while (p < p_end && *p != '\0') { |
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1331 if (p + sizeof("c=IN IP4") - 1 < p_end && strstart(p, "c=IN IP4", NULL)) |
0 | 1332 return AVPROBE_SCORE_MAX / 2; |
706
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1333 |
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1334 while(p < p_end - 1 && *p != '\n') p++; |
fc254f396f15
buffer overflow in sdp_probe() fix by (Gildas Bazin )gbazin altern org)
michael
parents:
587
diff
changeset
|
1335 if (++p >= p_end) |
0 | 1336 break; |
1337 if (*p == '\r') | |
1338 p++; | |
1339 } | |
1340 return 0; | |
1341 } | |
1342 | |
1343 #define SDP_MAX_SIZE 8192 | |
1344 | |
1345 static int sdp_read_header(AVFormatContext *s, | |
1346 AVFormatParameters *ap) | |
1347 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1348 RTSPState *rt = s->priv_data; |
0 | 1349 RTSPStream *rtsp_st; |
1350 int size, i, err; | |
1351 char *content; | |
1352 char url[1024]; | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1353 AVStream *st; |
0 | 1354 |
1355 /* read the whole sdp file */ | |
1356 /* XXX: better loading */ | |
1357 content = av_malloc(SDP_MAX_SIZE); | |
1358 size = get_buffer(&s->pb, content, SDP_MAX_SIZE - 1); | |
1359 if (size <= 0) { | |
1360 av_free(content); | |
1361 return AVERROR_INVALIDDATA; | |
1362 } | |
1363 content[size] ='\0'; | |
1364 | |
1365 sdp_parse(s, content); | |
1366 av_free(content); | |
1367 | |
1368 /* open each RTP stream */ | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1369 for(i=0;i<rt->nb_rtsp_streams;i++) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1370 rtsp_st = rt->rtsp_streams[i]; |
885 | 1371 |
1372 snprintf(url, sizeof(url), "rtp://%s:%d?multicast=1&ttl=%d", | |
1373 inet_ntoa(rtsp_st->sdp_ip), | |
0 | 1374 rtsp_st->sdp_port, |
1375 rtsp_st->sdp_ttl); | |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1376 if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) { |
0 | 1377 err = AVERROR_INVALIDDATA; |
1378 goto fail; | |
1379 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1380 /* open the RTP context */ |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1381 st = NULL; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1382 if (rtsp_st->stream_index >= 0) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1383 st = s->streams[rtsp_st->stream_index]; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1384 if (!st) |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1385 s->ctx_flags |= AVFMTCTX_NOHEADER; |
1425
00d9393a126f
make ffmpeg able to send back a RTCP receiver report.
gpoirier
parents:
1424
diff
changeset
|
1386 rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data); |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1387 if (!rtsp_st->rtp_ctx) { |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1388 err = AVERROR_NOMEM; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1389 goto fail; |
1419 | 1390 } else { |
1391 if(rtsp_st->dynamic_handler) { | |
1392 rtsp_st->rtp_ctx->dynamic_protocol_context= rtsp_st->dynamic_protocol_context; | |
1393 rtsp_st->rtp_ctx->parse_packet= rtsp_st->dynamic_handler->parse_packet; | |
1394 } | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1395 } |
0 | 1396 } |
1397 return 0; | |
1398 fail: | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1399 rtsp_close_streams(rt); |
0 | 1400 return err; |
1401 } | |
1402 | |
1403 static int sdp_read_packet(AVFormatContext *s, | |
1404 AVPacket *pkt) | |
1405 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1406 return rtsp_read_packet(s, pkt); |
0 | 1407 } |
1408 | |
1409 static int sdp_read_close(AVFormatContext *s) | |
1410 { | |
294
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1411 RTSPState *rt = s->priv_data; |
6091b76cfc2a
added MPEG2TS support in RTP, SDP and RTSP - replaced fake RTP demux by a specific API
bellard
parents:
229
diff
changeset
|
1412 rtsp_close_streams(rt); |
0 | 1413 return 0; |
1414 } | |
1415 | |
1169 | 1416 #ifdef CONFIG_SDP_DEMUXER |
1417 AVInputFormat sdp_demuxer = { | |
0 | 1418 "sdp", |
1419 "SDP", | |
1420 sizeof(RTSPState), | |
1421 sdp_probe, | |
1422 sdp_read_header, | |
1423 sdp_read_packet, | |
1424 sdp_read_close, | |
1425 }; | |
1169 | 1426 #endif |
0 | 1427 |
1428 /* dummy redirector format (used directly in av_open_input_file now) */ | |
1429 static int redir_probe(AVProbeData *pd) | |
1430 { | |
1431 const char *p; | |
1432 p = pd->buf; | |
1433 while (redir_isspace(*p)) | |
1434 p++; | |
1435 if (strstart(p, "http://", NULL) || | |
1436 strstart(p, "rtsp://", NULL)) | |
1437 return AVPROBE_SCORE_MAX; | |
1438 return 0; | |
1439 } | |
1440 | |
1441 /* called from utils.c */ | |
1442 int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f) | |
1443 { | |
1444 char buf[4096], *q; | |
1445 int c; | |
1446 AVFormatContext *ic = NULL; | |
1447 | |
1448 /* parse each URL and try to open it */ | |
1449 c = url_fgetc(f); | |
1450 while (c != URL_EOF) { | |
1451 /* skip spaces */ | |
1452 for(;;) { | |
1453 if (!redir_isspace(c)) | |
1454 break; | |
1455 c = url_fgetc(f); | |
1456 } | |
1457 if (c == URL_EOF) | |
1458 break; | |
1459 /* record url */ | |
1460 q = buf; | |
1461 for(;;) { | |
1462 if (c == URL_EOF || redir_isspace(c)) | |
1463 break; | |
1464 if ((q - buf) < sizeof(buf) - 1) | |
1465 *q++ = c; | |
1466 c = url_fgetc(f); | |
1467 } | |
1468 *q = '\0'; | |
1469 //printf("URL='%s'\n", buf); | |
1470 /* try to open the media file */ | |
1471 if (av_open_input_file(&ic, buf, NULL, 0, NULL) == 0) | |
1472 break; | |
1473 } | |
1474 *ic_ptr = ic; | |
1475 if (!ic) | |
1476 return AVERROR_IO; | |
1477 else | |
1478 return 0; | |
1479 } | |
1480 | |
1167 | 1481 AVInputFormat redir_demuxer = { |
0 | 1482 "redir", |
1483 "Redirector format", | |
1484 0, | |
1485 redir_probe, | |
1486 NULL, | |
1487 NULL, | |
1488 NULL, | |
1489 }; |