]> git.sesse.net Git - ffmpeg/blob - libavformat/rtsp.c
RTSP: Propagate errors up from ff_rtsp_send_cmd*
[ffmpeg] / libavformat / rtsp.c
1 /*
2  * RTSP/SDP client
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
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
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/base64.h"
23 #include "libavutil/avstring.h"
24 #include "libavutil/intreadwrite.h"
25 #include "avformat.h"
26
27 #include <sys/time.h>
28 #if HAVE_SYS_SELECT_H
29 #include <sys/select.h>
30 #endif
31 #include <strings.h>
32 #include "internal.h"
33 #include "network.h"
34 #include "os_support.h"
35 #include "rtsp.h"
36
37 #include "rtpdec.h"
38 #include "rdt.h"
39 #include "rtpdec_asf.h"
40
41 //#define DEBUG
42 //#define DEBUG_RTP_TCP
43
44 #if LIBAVFORMAT_VERSION_INT < (53 << 16)
45 int rtsp_default_protocols = (1 << RTSP_LOWER_TRANSPORT_UDP);
46 #endif
47
48 /* Timeout values for socket select, in ms,
49  * and read_packet(), in seconds  */
50 #define SELECT_TIMEOUT_MS 100
51 #define READ_PACKET_TIMEOUT_S 10
52 #define MAX_TIMEOUTS READ_PACKET_TIMEOUT_S * 1000 / SELECT_TIMEOUT_MS
53
54 #define SPACE_CHARS " \t\r\n"
55 /* we use memchr() instead of strchr() here because strchr() will return
56  * the terminating '\0' of SPACE_CHARS instead of NULL if c is '\0'. */
57 #define redir_isspace(c) memchr(SPACE_CHARS, c, 4)
58 static void skip_spaces(const char **pp)
59 {
60     const char *p;
61     p = *pp;
62     while (redir_isspace(*p))
63         p++;
64     *pp = p;
65 }
66
67 static void get_word_until_chars(char *buf, int buf_size,
68                                  const char *sep, const char **pp)
69 {
70     const char *p;
71     char *q;
72
73     p = *pp;
74     skip_spaces(&p);
75     q = buf;
76     while (!strchr(sep, *p) && *p != '\0') {
77         if ((q - buf) < buf_size - 1)
78             *q++ = *p;
79         p++;
80     }
81     if (buf_size > 0)
82         *q = '\0';
83     *pp = p;
84 }
85
86 static void get_word_sep(char *buf, int buf_size, const char *sep,
87                          const char **pp)
88 {
89     if (**pp == '/') (*pp)++;
90     get_word_until_chars(buf, buf_size, sep, pp);
91 }
92
93 static void get_word(char *buf, int buf_size, const char **pp)
94 {
95     get_word_until_chars(buf, buf_size, SPACE_CHARS, pp);
96 }
97
98 /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other params>] */
99 static int sdp_parse_rtpmap(AVFormatContext *s,
100                             AVCodecContext *codec, RTSPStream *rtsp_st,
101                             int payload_type, const char *p)
102 {
103     char buf[256];
104     int i;
105     AVCodec *c;
106     const char *c_name;
107
108     /* Loop into AVRtpDynamicPayloadTypes[] and AVRtpPayloadTypes[] and
109      * see if we can handle this kind of payload.
110      * The space should normally not be there but some Real streams or
111      * particular servers ("RealServer Version 6.1.3.970", see issue 1658)
112      * have a trailing space. */
113     get_word_sep(buf, sizeof(buf), "/ ", &p);
114     if (payload_type >= RTP_PT_PRIVATE) {
115         RTPDynamicProtocolHandler *handler;
116         for (handler = RTPFirstDynamicPayloadHandler;
117              handler; handler = handler->next) {
118             if (!strcasecmp(buf, handler->enc_name) &&
119                 codec->codec_type == handler->codec_type) {
120                 codec->codec_id          = handler->codec_id;
121                 rtsp_st->dynamic_handler = handler;
122                 if (handler->open)
123                     rtsp_st->dynamic_protocol_context = handler->open();
124                 break;
125             }
126         }
127     } else {
128         /* We are in a standard case
129          * (from http://www.iana.org/assignments/rtp-parameters). */
130         /* search into AVRtpPayloadTypes[] */
131         codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
132     }
133
134     c = avcodec_find_decoder(codec->codec_id);
135     if (c && c->name)
136         c_name = c->name;
137     else
138         c_name = "(null)";
139
140     get_word_sep(buf, sizeof(buf), "/", &p);
141     i = atoi(buf);
142     switch (codec->codec_type) {
143     case AVMEDIA_TYPE_AUDIO:
144         av_log(s, AV_LOG_DEBUG, "audio codec set to: %s\n", c_name);
145         codec->sample_rate = RTSP_DEFAULT_AUDIO_SAMPLERATE;
146         codec->channels = RTSP_DEFAULT_NB_AUDIO_CHANNELS;
147         if (i > 0) {
148             codec->sample_rate = i;
149             get_word_sep(buf, sizeof(buf), "/", &p);
150             i = atoi(buf);
151             if (i > 0)
152                 codec->channels = i;
153             // TODO: there is a bug here; if it is a mono stream, and
154             // less than 22000Hz, faad upconverts to stereo and twice
155             // the frequency.  No problem, but the sample rate is being
156             // set here by the sdp line. Patch on its way. (rdm)
157         }
158         av_log(s, AV_LOG_DEBUG, "audio samplerate set to: %i\n",
159                codec->sample_rate);
160         av_log(s, AV_LOG_DEBUG, "audio channels set to: %i\n",
161                codec->channels);
162         break;
163     case AVMEDIA_TYPE_VIDEO:
164         av_log(s, AV_LOG_DEBUG, "video codec set to: %s\n", c_name);
165         break;
166     default:
167         break;
168     }
169     return 0;
170 }
171
172 /* return the length and optionally the data */
173 static int hex_to_data(uint8_t *data, const char *p)
174 {
175     int c, len, v;
176
177     len = 0;
178     v = 1;
179     for (;;) {
180         skip_spaces(&p);
181         if (*p == '\0')
182             break;
183         c = toupper((unsigned char) *p++);
184         if (c >= '0' && c <= '9')
185             c = c - '0';
186         else if (c >= 'A' && c <= 'F')
187             c = c - 'A' + 10;
188         else
189             break;
190         v = (v << 4) | c;
191         if (v & 0x100) {
192             if (data)
193                 data[len] = v;
194             len++;
195             v = 1;
196         }
197     }
198     return len;
199 }
200
201 static void sdp_parse_fmtp_config(AVCodecContext * codec, void *ctx,
202                                   char *attr, char *value)
203 {
204     switch (codec->codec_id) {
205     case CODEC_ID_MPEG4:
206     case CODEC_ID_AAC:
207         if (!strcmp(attr, "config")) {
208             /* decode the hexa encoded parameter */
209             int len = hex_to_data(NULL, value);
210             if (codec->extradata)
211                 av_free(codec->extradata);
212             codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
213             if (!codec->extradata)
214                 return;
215             codec->extradata_size = len;
216             hex_to_data(codec->extradata, value);
217         }
218         break;
219     default:
220         break;
221     }
222     return;
223 }
224
225 typedef struct {
226     const char *str;
227     uint16_t    type;
228     uint32_t    offset;
229 } AttrNameMap;
230
231 /* All known fmtp parameters and the corresponding RTPAttrTypeEnum */
232 #define ATTR_NAME_TYPE_INT 0
233 #define ATTR_NAME_TYPE_STR 1
234 static const AttrNameMap attr_names[]=
235 {
236     { "SizeLength",       ATTR_NAME_TYPE_INT,
237       offsetof(RTPPayloadData, sizelength) },
238     { "IndexLength",      ATTR_NAME_TYPE_INT,
239       offsetof(RTPPayloadData, indexlength) },
240     { "IndexDeltaLength", ATTR_NAME_TYPE_INT,
241       offsetof(RTPPayloadData, indexdeltalength) },
242     { "profile-level-id", ATTR_NAME_TYPE_INT,
243       offsetof(RTPPayloadData, profile_level_id) },
244     { "StreamType",       ATTR_NAME_TYPE_INT,
245       offsetof(RTPPayloadData, streamtype) },
246     { "mode",             ATTR_NAME_TYPE_STR,
247       offsetof(RTPPayloadData, mode) },
248     { NULL, -1, -1 },
249 };
250
251 /* parse the attribute line from the fmtp a line of an sdp response. This
252  * is broken out as a function because it is used in rtp_h264.c, which is
253  * forthcoming. */
254 int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size,
255                                 char *value, int value_size)
256 {
257     skip_spaces(p);
258     if (**p) {
259         get_word_sep(attr, attr_size, "=", p);
260         if (**p == '=')
261             (*p)++;
262         get_word_sep(value, value_size, ";", p);
263         if (**p == ';')
264             (*p)++;
265         return 1;
266     }
267     return 0;
268 }
269
270 /* parse a SDP line and save stream attributes */
271 static void sdp_parse_fmtp(AVStream *st, const char *p)
272 {
273     char attr[256];
274     /* Vorbis setup headers can be up to 12KB and are sent base64
275      * encoded, giving a 12KB * (4/3) = 16KB FMTP line. */
276     char value[16384];
277     int i;
278     RTSPStream *rtsp_st = st->priv_data;
279     AVCodecContext *codec = st->codec;
280     RTPPayloadData *rtp_payload_data = &rtsp_st->rtp_payload_data;
281
282     /* loop on each attribute */
283     while (ff_rtsp_next_attr_and_value(&p, attr, sizeof(attr),
284                                        value, sizeof(value))) {
285         /* grab the codec extra_data from the config parameter of the fmtp
286          * line */
287         sdp_parse_fmtp_config(codec, rtsp_st->dynamic_protocol_context,
288                               attr, value);
289         /* Looking for a known attribute */
290         for (i = 0; attr_names[i].str; ++i) {
291             if (!strcasecmp(attr, attr_names[i].str)) {
292                 if (attr_names[i].type == ATTR_NAME_TYPE_INT) {
293                     *(int *)((char *)rtp_payload_data +
294                         attr_names[i].offset) = atoi(value);
295                 } else if (attr_names[i].type == ATTR_NAME_TYPE_STR)
296                     *(char **)((char *)rtp_payload_data +
297                         attr_names[i].offset) = av_strdup(value);
298             }
299         }
300     }
301 }
302
303 /** Parse a string p in the form of Range:npt=xx-xx, and determine the start
304  *  and end time.
305  *  Used for seeking in the rtp stream.
306  */
307 static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
308 {
309     char buf[256];
310
311     skip_spaces(&p);
312     if (!av_stristart(p, "npt=", &p))
313         return;
314
315     *start = AV_NOPTS_VALUE;
316     *end = AV_NOPTS_VALUE;
317
318     get_word_sep(buf, sizeof(buf), "-", &p);
319     *start = parse_date(buf, 1);
320     if (*p == '-') {
321         p++;
322         get_word_sep(buf, sizeof(buf), "-", &p);
323         *end = parse_date(buf, 1);
324     }
325 //    av_log(NULL, AV_LOG_DEBUG, "Range Start: %lld\n", *start);
326 //    av_log(NULL, AV_LOG_DEBUG, "Range End: %lld\n", *end);
327 }
328
329 typedef struct SDPParseState {
330     /* SDP only */
331     struct in_addr default_ip;
332     int            default_ttl;
333     int            skip_media;  ///< set if an unknown m= line occurs
334 } SDPParseState;
335
336 static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
337                            int letter, const char *buf)
338 {
339     RTSPState *rt = s->priv_data;
340     char buf1[64], st_type[64];
341     const char *p;
342     enum AVMediaType codec_type;
343     int payload_type, i;
344     AVStream *st;
345     RTSPStream *rtsp_st;
346     struct in_addr sdp_ip;
347     int ttl;
348
349     dprintf(s, "sdp: %c='%s'\n", letter, buf);
350
351     p = buf;
352     if (s1->skip_media && letter != 'm')
353         return;
354     switch (letter) {
355     case 'c':
356         get_word(buf1, sizeof(buf1), &p);
357         if (strcmp(buf1, "IN") != 0)
358             return;
359         get_word(buf1, sizeof(buf1), &p);
360         if (strcmp(buf1, "IP4") != 0)
361             return;
362         get_word_sep(buf1, sizeof(buf1), "/", &p);
363         if (ff_inet_aton(buf1, &sdp_ip) == 0)
364             return;
365         ttl = 16;
366         if (*p == '/') {
367             p++;
368             get_word_sep(buf1, sizeof(buf1), "/", &p);
369             ttl = atoi(buf1);
370         }
371         if (s->nb_streams == 0) {
372             s1->default_ip = sdp_ip;
373             s1->default_ttl = ttl;
374         } else {
375             st = s->streams[s->nb_streams - 1];
376             rtsp_st = st->priv_data;
377             rtsp_st->sdp_ip = sdp_ip;
378             rtsp_st->sdp_ttl = ttl;
379         }
380         break;
381     case 's':
382         av_metadata_set2(&s->metadata, "title", p, 0);
383         break;
384     case 'i':
385         if (s->nb_streams == 0) {
386             av_metadata_set2(&s->metadata, "comment", p, 0);
387             break;
388         }
389         break;
390     case 'm':
391         /* new stream */
392         s1->skip_media = 0;
393         get_word(st_type, sizeof(st_type), &p);
394         if (!strcmp(st_type, "audio")) {
395             codec_type = AVMEDIA_TYPE_AUDIO;
396         } else if (!strcmp(st_type, "video")) {
397             codec_type = AVMEDIA_TYPE_VIDEO;
398         } else if (!strcmp(st_type, "application")) {
399             codec_type = AVMEDIA_TYPE_DATA;
400         } else {
401             s1->skip_media = 1;
402             return;
403         }
404         rtsp_st = av_mallocz(sizeof(RTSPStream));
405         if (!rtsp_st)
406             return;
407         rtsp_st->stream_index = -1;
408         dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
409
410         rtsp_st->sdp_ip = s1->default_ip;
411         rtsp_st->sdp_ttl = s1->default_ttl;
412
413         get_word(buf1, sizeof(buf1), &p); /* port */
414         rtsp_st->sdp_port = atoi(buf1);
415
416         get_word(buf1, sizeof(buf1), &p); /* protocol (ignored) */
417
418         /* XXX: handle list of formats */
419         get_word(buf1, sizeof(buf1), &p); /* format list */
420         rtsp_st->sdp_payload_type = atoi(buf1);
421
422         if (!strcmp(ff_rtp_enc_name(rtsp_st->sdp_payload_type), "MP2T")) {
423             /* no corresponding stream */
424         } else {
425             st = av_new_stream(s, 0);
426             if (!st)
427                 return;
428             st->priv_data = rtsp_st;
429             rtsp_st->stream_index = st->index;
430             st->codec->codec_type = codec_type;
431             if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) {
432                 /* if standard payload type, we can find the codec right now */
433                 ff_rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type);
434             }
435         }
436         /* put a default control url */
437         av_strlcpy(rtsp_st->control_url, rt->control_uri,
438                    sizeof(rtsp_st->control_url));
439         break;
440     case 'a':
441         if (av_strstart(p, "control:", &p)) {
442             if (s->nb_streams == 0) {
443                 if (!strncmp(p, "rtsp://", 7))
444                     av_strlcpy(rt->control_uri, p,
445                                sizeof(rt->control_uri));
446             } else {
447             char proto[32];
448             /* get the control url */
449             st = s->streams[s->nb_streams - 1];
450             rtsp_st = st->priv_data;
451
452             /* XXX: may need to add full url resolution */
453             ff_url_split(proto, sizeof(proto), NULL, 0, NULL, 0,
454                          NULL, NULL, 0, p);
455             if (proto[0] == '\0') {
456                 /* relative control URL */
457                 if (rtsp_st->control_url[strlen(rtsp_st->control_url)-1]!='/')
458                 av_strlcat(rtsp_st->control_url, "/",
459                            sizeof(rtsp_st->control_url));
460                 av_strlcat(rtsp_st->control_url, p,
461                            sizeof(rtsp_st->control_url));
462             } else
463                 av_strlcpy(rtsp_st->control_url, p,
464                            sizeof(rtsp_st->control_url));
465             }
466         } else if (av_strstart(p, "rtpmap:", &p) && s->nb_streams > 0) {
467             /* NOTE: rtpmap is only supported AFTER the 'm=' tag */
468             get_word(buf1, sizeof(buf1), &p);
469             payload_type = atoi(buf1);
470             st = s->streams[s->nb_streams - 1];
471             rtsp_st = st->priv_data;
472             sdp_parse_rtpmap(s, st->codec, rtsp_st, payload_type, p);
473         } else if (av_strstart(p, "fmtp:", &p)) {
474             /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */
475             get_word(buf1, sizeof(buf1), &p);
476             payload_type = atoi(buf1);
477             for (i = 0; i < s->nb_streams; i++) {
478                 st      = s->streams[i];
479                 rtsp_st = st->priv_data;
480                 if (rtsp_st->sdp_payload_type == payload_type) {
481                     if (!(rtsp_st->dynamic_handler &&
482                           rtsp_st->dynamic_handler->parse_sdp_a_line &&
483                           rtsp_st->dynamic_handler->parse_sdp_a_line(s,
484                               i, rtsp_st->dynamic_protocol_context, buf)))
485                         sdp_parse_fmtp(st, p);
486                 }
487             }
488         } else if (av_strstart(p, "framesize:", &p)) {
489             // let dynamic protocol handlers have a stab at the line.
490             get_word(buf1, sizeof(buf1), &p);
491             payload_type = atoi(buf1);
492             for (i = 0; i < s->nb_streams; i++) {
493                 st      = s->streams[i];
494                 rtsp_st = st->priv_data;
495                 if (rtsp_st->sdp_payload_type == payload_type &&
496                     rtsp_st->dynamic_handler &&
497                     rtsp_st->dynamic_handler->parse_sdp_a_line)
498                     rtsp_st->dynamic_handler->parse_sdp_a_line(s, i,
499                         rtsp_st->dynamic_protocol_context, buf);
500             }
501         } else if (av_strstart(p, "range:", &p)) {
502             int64_t start, end;
503
504             // this is so that seeking on a streamed file can work.
505             rtsp_parse_range_npt(p, &start, &end);
506             s->start_time = start;
507             /* AV_NOPTS_VALUE means live broadcast (and can't seek) */
508             s->duration   = (end == AV_NOPTS_VALUE) ?
509                             AV_NOPTS_VALUE : end - start;
510         } else if (av_strstart(p, "IsRealDataType:integer;",&p)) {
511             if (atoi(p) == 1)
512                 rt->transport = RTSP_TRANSPORT_RDT;
513         } else {
514             if (rt->server_type == RTSP_SERVER_WMS)
515                 ff_wms_parse_sdp_a_line(s, p);
516             if (s->nb_streams > 0) {
517                 if (rt->server_type == RTSP_SERVER_REAL)
518                     ff_real_parse_sdp_a_line(s, s->nb_streams - 1, p);
519
520                 rtsp_st = s->streams[s->nb_streams - 1]->priv_data;
521                 if (rtsp_st->dynamic_handler &&
522                     rtsp_st->dynamic_handler->parse_sdp_a_line)
523                     rtsp_st->dynamic_handler->parse_sdp_a_line(s,
524                         s->nb_streams - 1,
525                         rtsp_st->dynamic_protocol_context, buf);
526             }
527         }
528         break;
529     }
530 }
531
532 static int sdp_parse(AVFormatContext *s, const char *content)
533 {
534     const char *p;
535     int letter;
536     /* Some SDP lines, particularly for Realmedia or ASF RTSP streams,
537      * contain long SDP lines containing complete ASF Headers (several
538      * kB) or arrays of MDPR (RM stream descriptor) headers plus
539      * "rulebooks" describing their properties. Therefore, the SDP line
540      * buffer is large.
541      *
542      * The Vorbis FMTP line can be up to 16KB - see sdp_parse_fmtp. */
543     char buf[16384], *q;
544     SDPParseState sdp_parse_state, *s1 = &sdp_parse_state;
545
546     memset(s1, 0, sizeof(SDPParseState));
547     p = content;
548     for (;;) {
549         skip_spaces(&p);
550         letter = *p;
551         if (letter == '\0')
552             break;
553         p++;
554         if (*p != '=')
555             goto next_line;
556         p++;
557         /* get the content */
558         q = buf;
559         while (*p != '\n' && *p != '\r' && *p != '\0') {
560             if ((q - buf) < sizeof(buf) - 1)
561                 *q++ = *p;
562             p++;
563         }
564         *q = '\0';
565         sdp_parse_line(s, s1, letter, buf);
566     next_line:
567         while (*p != '\n' && *p != '\0')
568             p++;
569         if (*p == '\n')
570             p++;
571     }
572     return 0;
573 }
574
575 /* close and free RTSP streams */
576 void ff_rtsp_close_streams(AVFormatContext *s)
577 {
578     RTSPState *rt = s->priv_data;
579     int i;
580     RTSPStream *rtsp_st;
581
582     for (i = 0; i < rt->nb_rtsp_streams; i++) {
583         rtsp_st = rt->rtsp_streams[i];
584         if (rtsp_st) {
585             if (rtsp_st->transport_priv) {
586                 if (s->oformat) {
587                     AVFormatContext *rtpctx = rtsp_st->transport_priv;
588                     av_write_trailer(rtpctx);
589                     if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
590                         uint8_t *ptr;
591                         url_close_dyn_buf(rtpctx->pb, &ptr);
592                         av_free(ptr);
593                     } else {
594                         url_fclose(rtpctx->pb);
595                     }
596                     av_metadata_free(&rtpctx->streams[0]->metadata);
597                     av_metadata_free(&rtpctx->metadata);
598                     av_free(rtpctx->streams[0]);
599                     av_free(rtpctx);
600                 } else if (rt->transport == RTSP_TRANSPORT_RDT)
601                     ff_rdt_parse_close(rtsp_st->transport_priv);
602                 else
603                     rtp_parse_close(rtsp_st->transport_priv);
604             }
605             if (rtsp_st->rtp_handle)
606                 url_close(rtsp_st->rtp_handle);
607             if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context)
608                 rtsp_st->dynamic_handler->close(
609                     rtsp_st->dynamic_protocol_context);
610         }
611     }
612     av_free(rt->rtsp_streams);
613     if (rt->asf_ctx) {
614         av_close_input_stream (rt->asf_ctx);
615         rt->asf_ctx = NULL;
616     }
617 }
618
619 static void *rtsp_rtp_mux_open(AVFormatContext *s, AVStream *st,
620                                URLContext *handle)
621 {
622     RTSPState *rt = s->priv_data;
623     AVFormatContext *rtpctx;
624     int ret;
625     AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
626
627     if (!rtp_format)
628         return NULL;
629
630     /* Allocate an AVFormatContext for each output stream */
631     rtpctx = avformat_alloc_context();
632     if (!rtpctx)
633         return NULL;
634
635     rtpctx->oformat = rtp_format;
636     if (!av_new_stream(rtpctx, 0)) {
637         av_free(rtpctx);
638         return NULL;
639     }
640     /* Copy the max delay setting; the rtp muxer reads this. */
641     rtpctx->max_delay = s->max_delay;
642     /* Copy other stream parameters. */
643     rtpctx->streams[0]->sample_aspect_ratio = st->sample_aspect_ratio;
644
645     /* Set the synchronized start time. */
646     rtpctx->start_time_realtime = rt->start_time;
647
648     /* Remove the local codec, link to the original codec
649      * context instead, to give the rtp muxer access to
650      * codec parameters. */
651     av_free(rtpctx->streams[0]->codec);
652     rtpctx->streams[0]->codec = st->codec;
653
654     if (handle) {
655         url_fdopen(&rtpctx->pb, handle);
656     } else
657         url_open_dyn_packet_buf(&rtpctx->pb, RTSP_TCP_MAX_PACKET_SIZE);
658     ret = av_write_header(rtpctx);
659
660     if (ret) {
661         if (handle) {
662             url_fclose(rtpctx->pb);
663         } else {
664             uint8_t *ptr;
665             url_close_dyn_buf(rtpctx->pb, &ptr);
666             av_free(ptr);
667         }
668         av_free(rtpctx->streams[0]);
669         av_free(rtpctx);
670         return NULL;
671     }
672
673     /* Copy the RTP AVStream timebase back to the original AVStream */
674     st->time_base = rtpctx->streams[0]->time_base;
675     return rtpctx;
676 }
677
678 static int rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
679 {
680     RTSPState *rt = s->priv_data;
681     AVStream *st = NULL;
682
683     /* open the RTP context */
684     if (rtsp_st->stream_index >= 0)
685         st = s->streams[rtsp_st->stream_index];
686     if (!st)
687         s->ctx_flags |= AVFMTCTX_NOHEADER;
688
689     if (s->oformat) {
690         rtsp_st->transport_priv = rtsp_rtp_mux_open(s, st, rtsp_st->rtp_handle);
691         /* Ownership of rtp_handle is passed to the rtp mux context */
692         rtsp_st->rtp_handle = NULL;
693     } else if (rt->transport == RTSP_TRANSPORT_RDT)
694         rtsp_st->transport_priv = ff_rdt_parse_open(s, st->index,
695                                             rtsp_st->dynamic_protocol_context,
696                                             rtsp_st->dynamic_handler);
697     else
698         rtsp_st->transport_priv = rtp_parse_open(s, st, rtsp_st->rtp_handle,
699                                          rtsp_st->sdp_payload_type,
700                                          &rtsp_st->rtp_payload_data);
701
702     if (!rtsp_st->transport_priv) {
703          return AVERROR(ENOMEM);
704     } else if (rt->transport != RTSP_TRANSPORT_RDT) {
705         if (rtsp_st->dynamic_handler) {
706             rtp_parse_set_dynamic_protocol(rtsp_st->transport_priv,
707                                            rtsp_st->dynamic_protocol_context,
708                                            rtsp_st->dynamic_handler);
709         }
710     }
711
712     return 0;
713 }
714
715 #if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
716 static int rtsp_probe(AVProbeData *p)
717 {
718     if (av_strstart(p->filename, "rtsp:", NULL))
719         return AVPROBE_SCORE_MAX;
720     return 0;
721 }
722
723 static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp)
724 {
725     const char *p;
726     int v;
727
728     p = *pp;
729     skip_spaces(&p);
730     v = strtol(p, (char **)&p, 10);
731     if (*p == '-') {
732         p++;
733         *min_ptr = v;
734         v = strtol(p, (char **)&p, 10);
735         *max_ptr = v;
736     } else {
737         *min_ptr = v;
738         *max_ptr = v;
739     }
740     *pp = p;
741 }
742
743 /* XXX: only one transport specification is parsed */
744 static void rtsp_parse_transport(RTSPMessageHeader *reply, const char *p)
745 {
746     char transport_protocol[16];
747     char profile[16];
748     char lower_transport[16];
749     char parameter[16];
750     RTSPTransportField *th;
751     char buf[256];
752
753     reply->nb_transports = 0;
754
755     for (;;) {
756         skip_spaces(&p);
757         if (*p == '\0')
758             break;
759
760         th = &reply->transports[reply->nb_transports];
761
762         get_word_sep(transport_protocol, sizeof(transport_protocol),
763                      "/", &p);
764         if (!strcasecmp (transport_protocol, "rtp")) {
765             get_word_sep(profile, sizeof(profile), "/;,", &p);
766             lower_transport[0] = '\0';
767             /* rtp/avp/<protocol> */
768             if (*p == '/') {
769                 get_word_sep(lower_transport, sizeof(lower_transport),
770                              ";,", &p);
771             }
772             th->transport = RTSP_TRANSPORT_RTP;
773         } else if (!strcasecmp (transport_protocol, "x-pn-tng") ||
774                    !strcasecmp (transport_protocol, "x-real-rdt")) {
775             /* x-pn-tng/<protocol> */
776             get_word_sep(lower_transport, sizeof(lower_transport), "/;,", &p);
777             profile[0] = '\0';
778             th->transport = RTSP_TRANSPORT_RDT;
779         }
780         if (!strcasecmp(lower_transport, "TCP"))
781             th->lower_transport = RTSP_LOWER_TRANSPORT_TCP;
782         else
783             th->lower_transport = RTSP_LOWER_TRANSPORT_UDP;
784
785         if (*p == ';')
786             p++;
787         /* get each parameter */
788         while (*p != '\0' && *p != ',') {
789             get_word_sep(parameter, sizeof(parameter), "=;,", &p);
790             if (!strcmp(parameter, "port")) {
791                 if (*p == '=') {
792                     p++;
793                     rtsp_parse_range(&th->port_min, &th->port_max, &p);
794                 }
795             } else if (!strcmp(parameter, "client_port")) {
796                 if (*p == '=') {
797                     p++;
798                     rtsp_parse_range(&th->client_port_min,
799                                      &th->client_port_max, &p);
800                 }
801             } else if (!strcmp(parameter, "server_port")) {
802                 if (*p == '=') {
803                     p++;
804                     rtsp_parse_range(&th->server_port_min,
805                                      &th->server_port_max, &p);
806                 }
807             } else if (!strcmp(parameter, "interleaved")) {
808                 if (*p == '=') {
809                     p++;
810                     rtsp_parse_range(&th->interleaved_min,
811                                      &th->interleaved_max, &p);
812                 }
813             } else if (!strcmp(parameter, "multicast")) {
814                 if (th->lower_transport == RTSP_LOWER_TRANSPORT_UDP)
815                     th->lower_transport = RTSP_LOWER_TRANSPORT_UDP_MULTICAST;
816             } else if (!strcmp(parameter, "ttl")) {
817                 if (*p == '=') {
818                     p++;
819                     th->ttl = strtol(p, (char **)&p, 10);
820                 }
821             } else if (!strcmp(parameter, "destination")) {
822                 struct in_addr ipaddr;
823
824                 if (*p == '=') {
825                     p++;
826                     get_word_sep(buf, sizeof(buf), ";,", &p);
827                     if (ff_inet_aton(buf, &ipaddr))
828                         th->destination = ntohl(ipaddr.s_addr);
829                 }
830             }
831             while (*p != ';' && *p != '\0' && *p != ',')
832                 p++;
833             if (*p == ';')
834                 p++;
835         }
836         if (*p == ',')
837             p++;
838
839         reply->nb_transports++;
840     }
841 }
842
843 void ff_rtsp_parse_line(RTSPMessageHeader *reply, const char *buf,
844                         HTTPAuthState *auth_state)
845 {
846     const char *p;
847
848     /* NOTE: we do case independent match for broken servers */
849     p = buf;
850     if (av_stristart(p, "Session:", &p)) {
851         int t;
852         get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p);
853         if (av_stristart(p, ";timeout=", &p) &&
854             (t = strtol(p, NULL, 10)) > 0) {
855             reply->timeout = t;
856         }
857     } else if (av_stristart(p, "Content-Length:", &p)) {
858         reply->content_length = strtol(p, NULL, 10);
859     } else if (av_stristart(p, "Transport:", &p)) {
860         rtsp_parse_transport(reply, p);
861     } else if (av_stristart(p, "CSeq:", &p)) {
862         reply->seq = strtol(p, NULL, 10);
863     } else if (av_stristart(p, "Range:", &p)) {
864         rtsp_parse_range_npt(p, &reply->range_start, &reply->range_end);
865     } else if (av_stristart(p, "RealChallenge1:", &p)) {
866         skip_spaces(&p);
867         av_strlcpy(reply->real_challenge, p, sizeof(reply->real_challenge));
868     } else if (av_stristart(p, "Server:", &p)) {
869         skip_spaces(&p);
870         av_strlcpy(reply->server, p, sizeof(reply->server));
871     } else if (av_stristart(p, "Notice:", &p) ||
872                av_stristart(p, "X-Notice:", &p)) {
873         reply->notice = strtol(p, NULL, 10);
874     } else if (av_stristart(p, "Location:", &p)) {
875         skip_spaces(&p);
876         av_strlcpy(reply->location, p , sizeof(reply->location));
877     } else if (av_stristart(p, "WWW-Authenticate:", &p) && auth_state) {
878         skip_spaces(&p);
879         ff_http_auth_handle_header(auth_state, "WWW-Authenticate", p);
880     } else if (av_stristart(p, "Authentication-Info:", &p) && auth_state) {
881         skip_spaces(&p);
882         ff_http_auth_handle_header(auth_state, "Authentication-Info", p);
883     }
884 }
885
886 /* skip a RTP/TCP interleaved packet */
887 void ff_rtsp_skip_packet(AVFormatContext *s)
888 {
889     RTSPState *rt = s->priv_data;
890     int ret, len, len1;
891     uint8_t buf[1024];
892
893     ret = url_read_complete(rt->rtsp_hd, buf, 3);
894     if (ret != 3)
895         return;
896     len = AV_RB16(buf + 1);
897
898     dprintf(s, "skipping RTP packet len=%d\n", len);
899
900     /* skip payload */
901     while (len > 0) {
902         len1 = len;
903         if (len1 > sizeof(buf))
904             len1 = sizeof(buf);
905         ret = url_read_complete(rt->rtsp_hd, buf, len1);
906         if (ret != len1)
907             return;
908         len -= len1;
909     }
910 }
911
912 int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply,
913                        unsigned char **content_ptr,
914                        int return_on_interleaved_data)
915 {
916     RTSPState *rt = s->priv_data;
917     char buf[4096], buf1[1024], *q;
918     unsigned char ch;
919     const char *p;
920     int ret, content_length, line_count = 0;
921     unsigned char *content = NULL;
922
923     memset(reply, 0, sizeof(*reply));
924
925     /* parse reply (XXX: use buffers) */
926     rt->last_reply[0] = '\0';
927     for (;;) {
928         q = buf;
929         for (;;) {
930             ret = url_read_complete(rt->rtsp_hd, &ch, 1);
931 #ifdef DEBUG_RTP_TCP
932             dprintf(s, "ret=%d c=%02x [%c]\n", ret, ch, ch);
933 #endif
934             if (ret != 1)
935                 return -1;
936             if (ch == '\n')
937                 break;
938             if (ch == '$') {
939                 /* XXX: only parse it if first char on line ? */
940                 if (return_on_interleaved_data) {
941                     return 1;
942                 } else
943                     ff_rtsp_skip_packet(s);
944             } else if (ch != '\r') {
945                 if ((q - buf) < sizeof(buf) - 1)
946                     *q++ = ch;
947             }
948         }
949         *q = '\0';
950
951         dprintf(s, "line='%s'\n", buf);
952
953         /* test if last line */
954         if (buf[0] == '\0')
955             break;
956         p = buf;
957         if (line_count == 0) {
958             /* get reply code */
959             get_word(buf1, sizeof(buf1), &p);
960             get_word(buf1, sizeof(buf1), &p);
961             reply->status_code = atoi(buf1);
962         } else {
963             ff_rtsp_parse_line(reply, p, &rt->auth_state);
964             av_strlcat(rt->last_reply, p,    sizeof(rt->last_reply));
965             av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply));
966         }
967         line_count++;
968     }
969
970     if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0')
971         av_strlcpy(rt->session_id, reply->session_id, sizeof(rt->session_id));
972
973     content_length = reply->content_length;
974     if (content_length > 0) {
975         /* leave some room for a trailing '\0' (useful for simple parsing) */
976         content = av_malloc(content_length + 1);
977         (void)url_read_complete(rt->rtsp_hd, content, content_length);
978         content[content_length] = '\0';
979     }
980     if (content_ptr)
981         *content_ptr = content;
982     else
983         av_free(content);
984
985     if (rt->seq != reply->seq) {
986         av_log(s, AV_LOG_WARNING, "CSeq %d expected, %d received.\n",
987             rt->seq, reply->seq);
988     }
989
990     /* EOS */
991     if (reply->notice == 2101 /* End-of-Stream Reached */      ||
992         reply->notice == 2104 /* Start-of-Stream Reached */    ||
993         reply->notice == 2306 /* Continuous Feed Terminated */) {
994         rt->state = RTSP_STATE_IDLE;
995     } else if (reply->notice >= 4400 && reply->notice < 5500) {
996         return AVERROR(EIO); /* data or server error */
997     } else if (reply->notice == 2401 /* Ticket Expired */ ||
998              (reply->notice >= 5500 && reply->notice < 5600) /* end of term */ )
999         return AVERROR(EPERM);
1000
1001     return 0;
1002 }
1003
1004 int ff_rtsp_send_cmd_with_content_async(AVFormatContext *s,
1005                                          const char *method, const char *url,
1006                                          const char *headers,
1007                                          const unsigned char *send_content,
1008                                          int send_content_length)
1009 {
1010     RTSPState *rt = s->priv_data;
1011     char buf[4096];
1012
1013     rt->seq++;
1014     snprintf(buf, sizeof(buf), "%s %s RTSP/1.0\r\n", method, url);
1015     if (headers)
1016         av_strlcat(buf, headers, sizeof(buf));
1017     av_strlcatf(buf, sizeof(buf), "CSeq: %d\r\n", rt->seq);
1018     if (rt->session_id[0] != '\0' && (!headers ||
1019         !strstr(headers, "\nIf-Match:"))) {
1020         av_strlcatf(buf, sizeof(buf), "Session: %s\r\n", rt->session_id);
1021     }
1022     if (rt->auth[0]) {
1023         char *str = ff_http_auth_create_response(&rt->auth_state,
1024                                                  rt->auth, url, method);
1025         if (str)
1026             av_strlcat(buf, str, sizeof(buf));
1027         av_free(str);
1028     }
1029     if (send_content_length > 0 && send_content)
1030         av_strlcatf(buf, sizeof(buf), "Content-Length: %d\r\n", send_content_length);
1031     av_strlcat(buf, "\r\n", sizeof(buf));
1032
1033     dprintf(s, "Sending:\n%s--\n", buf);
1034
1035     url_write(rt->rtsp_hd_out, buf, strlen(buf));
1036     if (send_content_length > 0 && send_content)
1037         url_write(rt->rtsp_hd_out, send_content, send_content_length);
1038     rt->last_cmd_time = av_gettime();
1039
1040     return 0;
1041 }
1042
1043 int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method,
1044                             const char *url, const char *headers)
1045 {
1046     return ff_rtsp_send_cmd_with_content_async(s, method, url, headers, NULL, 0);
1047 }
1048
1049 int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, const char *url,
1050                       const char *headers, RTSPMessageHeader *reply,
1051                       unsigned char **content_ptr)
1052 {
1053     return ff_rtsp_send_cmd_with_content(s, method, url, headers, reply,
1054                                   content_ptr, NULL, 0);
1055 }
1056
1057 int ff_rtsp_send_cmd_with_content(AVFormatContext *s,
1058                                    const char *method, const char *url,
1059                                    const char *header,
1060                                    RTSPMessageHeader *reply,
1061                                    unsigned char **content_ptr,
1062                                    const unsigned char *send_content,
1063                                    int send_content_length)
1064 {
1065     RTSPState *rt = s->priv_data;
1066     HTTPAuthType cur_auth_type;
1067     int ret;
1068
1069 retry:
1070     cur_auth_type = rt->auth_state.auth_type;
1071     if ((ret = ff_rtsp_send_cmd_with_content_async(s, method, url, header,
1072                                         send_content, send_content_length)))
1073         return ret;
1074
1075     if ((ret = ff_rtsp_read_reply(s, reply, content_ptr, 0) ) < 0)
1076         return ret;
1077
1078     if (reply->status_code == 401 && cur_auth_type == HTTP_AUTH_NONE &&
1079         rt->auth_state.auth_type != HTTP_AUTH_NONE)
1080         goto retry;
1081
1082     return 0;
1083 }
1084
1085 /**
1086  * @return 0 on success, <0 on error, 1 if protocol is unavailable.
1087  */
1088 static int make_setup_request(AVFormatContext *s, const char *host, int port,
1089                               int lower_transport, const char *real_challenge)
1090 {
1091     RTSPState *rt = s->priv_data;
1092     int rtx, j, i, err, interleave = 0;
1093     RTSPStream *rtsp_st;
1094     RTSPMessageHeader reply1, *reply = &reply1;
1095     char cmd[2048];
1096     const char *trans_pref;
1097
1098     if (rt->transport == RTSP_TRANSPORT_RDT)
1099         trans_pref = "x-pn-tng";
1100     else
1101         trans_pref = "RTP/AVP";
1102
1103     /* default timeout: 1 minute */
1104     rt->timeout = 60;
1105
1106     /* for each stream, make the setup request */
1107     /* XXX: we assume the same server is used for the control of each
1108      * RTSP stream */
1109
1110     for (j = RTSP_RTP_PORT_MIN, i = 0; i < rt->nb_rtsp_streams; ++i) {
1111         char transport[2048];
1112
1113         /**
1114          * WMS serves all UDP data over a single connection, the RTX, which
1115          * isn't necessarily the first in the SDP but has to be the first
1116          * to be set up, else the second/third SETUP will fail with a 461.
1117          */
1118         if (lower_transport == RTSP_LOWER_TRANSPORT_UDP &&
1119              rt->server_type == RTSP_SERVER_WMS) {
1120             if (i == 0) {
1121                 /* rtx first */
1122                 for (rtx = 0; rtx < rt->nb_rtsp_streams; rtx++) {
1123                     int len = strlen(rt->rtsp_streams[rtx]->control_url);
1124                     if (len >= 4 &&
1125                         !strcmp(rt->rtsp_streams[rtx]->control_url + len - 4,
1126                                 "/rtx"))
1127                         break;
1128                 }
1129                 if (rtx == rt->nb_rtsp_streams)
1130                     return -1; /* no RTX found */
1131                 rtsp_st = rt->rtsp_streams[rtx];
1132             } else
1133                 rtsp_st = rt->rtsp_streams[i > rtx ? i : i - 1];
1134         } else
1135             rtsp_st = rt->rtsp_streams[i];
1136
1137         /* RTP/UDP */
1138         if (lower_transport == RTSP_LOWER_TRANSPORT_UDP) {
1139             char buf[256];
1140
1141             if (rt->server_type == RTSP_SERVER_WMS && i > 1) {
1142                 port = reply->transports[0].client_port_min;
1143                 goto have_port;
1144             }
1145
1146             /* first try in specified port range */
1147             if (RTSP_RTP_PORT_MIN != 0) {
1148                 while (j <= RTSP_RTP_PORT_MAX) {
1149                     ff_url_join(buf, sizeof(buf), "rtp", NULL, host, -1,
1150                                 "?localport=%d", j);
1151                     /* we will use two ports per rtp stream (rtp and rtcp) */
1152                     j += 2;
1153                     if (url_open(&rtsp_st->rtp_handle, buf, URL_RDWR) == 0)
1154                         goto rtp_opened;
1155                 }
1156             }
1157
1158 #if 0
1159             /* then try on any port */
1160             if (url_open(&rtsp_st->rtp_handle, "rtp://", URL_RDONLY) < 0) {
1161                 err = AVERROR_INVALIDDATA;
1162                 goto fail;
1163             }
1164 #endif
1165
1166         rtp_opened:
1167             port = rtp_get_local_port(rtsp_st->rtp_handle);
1168         have_port:
1169             snprintf(transport, sizeof(transport) - 1,
1170                      "%s/UDP;", trans_pref);
1171             if (rt->server_type != RTSP_SERVER_REAL)
1172                 av_strlcat(transport, "unicast;", sizeof(transport));
1173             av_strlcatf(transport, sizeof(transport),
1174                      "client_port=%d", port);
1175             if (rt->transport == RTSP_TRANSPORT_RTP &&
1176                 !(rt->server_type == RTSP_SERVER_WMS && i > 0))
1177                 av_strlcatf(transport, sizeof(transport), "-%d", port + 1);
1178         }
1179
1180         /* RTP/TCP */
1181         else if (lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
1182             /** For WMS streams, the application streams are only used for
1183              * UDP. When trying to set it up for TCP streams, the server
1184              * will return an error. Therefore, we skip those streams. */
1185             if (rt->server_type == RTSP_SERVER_WMS &&
1186                 s->streams[rtsp_st->stream_index]->codec->codec_type ==
1187                     AVMEDIA_TYPE_DATA)
1188                 continue;
1189             snprintf(transport, sizeof(transport) - 1,
1190                      "%s/TCP;", trans_pref);
1191             if (rt->server_type == RTSP_SERVER_WMS)
1192                 av_strlcat(transport, "unicast;", sizeof(transport));
1193             av_strlcatf(transport, sizeof(transport),
1194                         "interleaved=%d-%d",
1195                         interleave, interleave + 1);
1196             interleave += 2;
1197         }
1198
1199         else if (lower_transport == RTSP_LOWER_TRANSPORT_UDP_MULTICAST) {
1200             snprintf(transport, sizeof(transport) - 1,
1201                      "%s/UDP;multicast", trans_pref);
1202         }
1203         if (s->oformat) {
1204             av_strlcat(transport, ";mode=receive", sizeof(transport));
1205         } else if (rt->server_type == RTSP_SERVER_REAL ||
1206                    rt->server_type == RTSP_SERVER_WMS)
1207             av_strlcat(transport, ";mode=play", sizeof(transport));
1208         snprintf(cmd, sizeof(cmd),
1209                  "Transport: %s\r\n",
1210                  transport);
1211         if (i == 0 && rt->server_type == RTSP_SERVER_REAL) {
1212             char real_res[41], real_csum[9];
1213             ff_rdt_calc_response_and_checksum(real_res, real_csum,
1214                                               real_challenge);
1215             av_strlcatf(cmd, sizeof(cmd),
1216                         "If-Match: %s\r\n"
1217                         "RealChallenge2: %s, sd=%s\r\n",
1218                         rt->session_id, real_res, real_csum);
1219         }
1220         ff_rtsp_send_cmd(s, "SETUP", rtsp_st->control_url, cmd, reply, NULL);
1221         if (reply->status_code == 461 /* Unsupported protocol */ && i == 0) {
1222             err = 1;
1223             goto fail;
1224         } else if (reply->status_code != RTSP_STATUS_OK ||
1225                    reply->nb_transports != 1) {
1226             err = AVERROR_INVALIDDATA;
1227             goto fail;
1228         }
1229
1230         /* XXX: same protocol for all streams is required */
1231         if (i > 0) {
1232             if (reply->transports[0].lower_transport != rt->lower_transport ||
1233                 reply->transports[0].transport != rt->transport) {
1234                 err = AVERROR_INVALIDDATA;
1235                 goto fail;
1236             }
1237         } else {
1238             rt->lower_transport = reply->transports[0].lower_transport;
1239             rt->transport = reply->transports[0].transport;
1240         }
1241
1242         /* close RTP connection if not choosen */
1243         if (reply->transports[0].lower_transport != RTSP_LOWER_TRANSPORT_UDP &&
1244             (lower_transport == RTSP_LOWER_TRANSPORT_UDP)) {
1245             url_close(rtsp_st->rtp_handle);
1246             rtsp_st->rtp_handle = NULL;
1247         }
1248
1249         switch(reply->transports[0].lower_transport) {
1250         case RTSP_LOWER_TRANSPORT_TCP:
1251             rtsp_st->interleaved_min = reply->transports[0].interleaved_min;
1252             rtsp_st->interleaved_max = reply->transports[0].interleaved_max;
1253             break;
1254
1255         case RTSP_LOWER_TRANSPORT_UDP: {
1256             char url[1024];
1257
1258             /* XXX: also use address if specified */
1259             ff_url_join(url, sizeof(url), "rtp", NULL, host,
1260                         reply->transports[0].server_port_min, NULL);
1261             if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) &&
1262                 rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) {
1263                 err = AVERROR_INVALIDDATA;
1264                 goto fail;
1265             }
1266             /* Try to initialize the connection state in a
1267              * potential NAT router by sending dummy packets.
1268              * RTP/RTCP dummy packets are used for RDT, too.
1269              */
1270             if (!(rt->server_type == RTSP_SERVER_WMS && i > 1) && s->iformat)
1271                 rtp_send_punch_packets(rtsp_st->rtp_handle);
1272             break;
1273         }
1274         case RTSP_LOWER_TRANSPORT_UDP_MULTICAST: {
1275             char url[1024];
1276             struct in_addr in;
1277             int port, ttl;
1278
1279             if (reply->transports[0].destination) {
1280                 in.s_addr = htonl(reply->transports[0].destination);
1281                 port      = reply->transports[0].port_min;
1282                 ttl       = reply->transports[0].ttl;
1283             } else {
1284                 in        = rtsp_st->sdp_ip;
1285                 port      = rtsp_st->sdp_port;
1286                 ttl       = rtsp_st->sdp_ttl;
1287             }
1288             ff_url_join(url, sizeof(url), "rtp", NULL, inet_ntoa(in),
1289                         port, "?ttl=%d", ttl);
1290             if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) {
1291                 err = AVERROR_INVALIDDATA;
1292                 goto fail;
1293             }
1294             break;
1295         }
1296         }
1297
1298         if ((err = rtsp_open_transport_ctx(s, rtsp_st)))
1299             goto fail;
1300     }
1301
1302     if (reply->timeout > 0)
1303         rt->timeout = reply->timeout;
1304
1305     if (rt->server_type == RTSP_SERVER_REAL)
1306         rt->need_subscription = 1;
1307
1308     return 0;
1309
1310 fail:
1311     for (i = 0; i < rt->nb_rtsp_streams; i++) {
1312         if (rt->rtsp_streams[i]->rtp_handle) {
1313             url_close(rt->rtsp_streams[i]->rtp_handle);
1314             rt->rtsp_streams[i]->rtp_handle = NULL;
1315         }
1316     }
1317     return err;
1318 }
1319
1320 static int rtsp_read_play(AVFormatContext *s)
1321 {
1322     RTSPState *rt = s->priv_data;
1323     RTSPMessageHeader reply1, *reply = &reply1;
1324     int i;
1325     char cmd[1024];
1326
1327     av_log(s, AV_LOG_DEBUG, "hello state=%d\n", rt->state);
1328
1329     if (!(rt->server_type == RTSP_SERVER_REAL && rt->need_subscription)) {
1330         if (rt->state == RTSP_STATE_PAUSED) {
1331             cmd[0] = 0;
1332         } else {
1333             snprintf(cmd, sizeof(cmd),
1334                      "Range: npt=%0.3f-\r\n",
1335                      (double)rt->seek_timestamp / AV_TIME_BASE);
1336         }
1337         ff_rtsp_send_cmd(s, "PLAY", rt->control_uri, cmd, reply, NULL);
1338         if (reply->status_code != RTSP_STATUS_OK) {
1339             return -1;
1340         }
1341         if (reply->range_start != AV_NOPTS_VALUE &&
1342             rt->transport == RTSP_TRANSPORT_RTP) {
1343             for (i = 0; i < rt->nb_rtsp_streams; i++) {
1344                 RTSPStream *rtsp_st = rt->rtsp_streams[i];
1345                 RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
1346                 AVStream *st = NULL;
1347                 if (!rtpctx)
1348                     continue;
1349                 if (rtsp_st->stream_index >= 0)
1350                     st = s->streams[rtsp_st->stream_index];
1351                 rtpctx->last_rtcp_ntp_time  = AV_NOPTS_VALUE;
1352                 rtpctx->first_rtcp_ntp_time = AV_NOPTS_VALUE;
1353                 if (st)
1354                     rtpctx->range_start_offset = av_rescale_q(reply->range_start,
1355                                                               AV_TIME_BASE_Q,
1356                                                               st->time_base);
1357             }
1358         }
1359     }
1360     rt->state = RTSP_STATE_STREAMING;
1361     return 0;
1362 }
1363
1364 static int rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply)
1365 {
1366     RTSPState *rt = s->priv_data;
1367     char cmd[1024];
1368     unsigned char *content = NULL;
1369     int ret;
1370
1371     /* describe the stream */
1372     snprintf(cmd, sizeof(cmd),
1373              "Accept: application/sdp\r\n");
1374     if (rt->server_type == RTSP_SERVER_REAL) {
1375         /**
1376          * The Require: attribute is needed for proper streaming from
1377          * Realmedia servers.
1378          */
1379         av_strlcat(cmd,
1380                    "Require: com.real.retain-entity-for-setup\r\n",
1381                    sizeof(cmd));
1382     }
1383     ff_rtsp_send_cmd(s, "DESCRIBE", rt->control_uri, cmd, reply, &content);
1384     if (!content)
1385         return AVERROR_INVALIDDATA;
1386     if (reply->status_code != RTSP_STATUS_OK) {
1387         av_freep(&content);
1388         return AVERROR_INVALIDDATA;
1389     }
1390
1391     /* now we got the SDP description, we parse it */
1392     ret = sdp_parse(s, (const char *)content);
1393     av_freep(&content);
1394     if (ret < 0)
1395         return AVERROR_INVALIDDATA;
1396
1397     return 0;
1398 }
1399
1400 static int rtsp_setup_output_streams(AVFormatContext *s, const char *addr)
1401 {
1402     RTSPState *rt = s->priv_data;
1403     RTSPMessageHeader reply1, *reply = &reply1;
1404     int i;
1405     char *sdp;
1406     AVFormatContext sdp_ctx, *ctx_array[1];
1407
1408     rt->start_time = av_gettime();
1409
1410     /* Announce the stream */
1411     sdp = av_mallocz(8192);
1412     if (sdp == NULL)
1413         return AVERROR(ENOMEM);
1414     /* We create the SDP based on the RTSP AVFormatContext where we
1415      * aren't allowed to change the filename field. (We create the SDP
1416      * based on the RTSP context since the contexts for the RTP streams
1417      * don't exist yet.) In order to specify a custom URL with the actual
1418      * peer IP instead of the originally specified hostname, we create
1419      * a temporary copy of the AVFormatContext, where the custom URL is set.
1420      *
1421      * FIXME: Create the SDP without copying the AVFormatContext.
1422      * This either requires setting up the RTP stream AVFormatContexts
1423      * already here (complicating things immensely) or getting a more
1424      * flexible SDP creation interface.
1425      */
1426     sdp_ctx = *s;
1427     ff_url_join(sdp_ctx.filename, sizeof(sdp_ctx.filename),
1428                 "rtsp", NULL, addr, -1, NULL);
1429     ctx_array[0] = &sdp_ctx;
1430     if (avf_sdp_create(ctx_array, 1, sdp, 8192)) {
1431         av_free(sdp);
1432         return AVERROR_INVALIDDATA;
1433     }
1434     av_log(s, AV_LOG_INFO, "SDP:\n%s\n", sdp);
1435     ff_rtsp_send_cmd_with_content(s, "ANNOUNCE", rt->control_uri,
1436                                   "Content-Type: application/sdp\r\n",
1437                                   reply, NULL, sdp, strlen(sdp));
1438     av_free(sdp);
1439     if (reply->status_code != RTSP_STATUS_OK)
1440         return AVERROR_INVALIDDATA;
1441
1442     /* Set up the RTSPStreams for each AVStream */
1443     for (i = 0; i < s->nb_streams; i++) {
1444         RTSPStream *rtsp_st;
1445         AVStream *st = s->streams[i];
1446
1447         rtsp_st = av_mallocz(sizeof(RTSPStream));
1448         if (!rtsp_st)
1449             return AVERROR(ENOMEM);
1450         dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
1451
1452         st->priv_data = rtsp_st;
1453         rtsp_st->stream_index = i;
1454
1455         av_strlcpy(rtsp_st->control_url, rt->control_uri, sizeof(rtsp_st->control_url));
1456         /* Note, this must match the relative uri set in the sdp content */
1457         av_strlcatf(rtsp_st->control_url, sizeof(rtsp_st->control_url),
1458                     "/streamid=%d", i);
1459     }
1460
1461     return 0;
1462 }
1463
1464 void ff_rtsp_close_connections(AVFormatContext *s)
1465 {
1466     RTSPState *rt = s->priv_data;
1467     if (rt->rtsp_hd_out != rt->rtsp_hd) url_close(rt->rtsp_hd_out);
1468     url_close(rt->rtsp_hd);
1469 }
1470
1471 int ff_rtsp_connect(AVFormatContext *s)
1472 {
1473     RTSPState *rt = s->priv_data;
1474     char host[1024], path[1024], tcpname[1024], cmd[2048], auth[128];
1475     char *option_list, *option, *filename;
1476     URLContext *rtsp_hd, *rtsp_hd_out;
1477     int port, err, tcp_fd;
1478     RTSPMessageHeader reply1 = {}, *reply = &reply1;
1479     int lower_transport_mask = 0;
1480     char real_challenge[64];
1481     struct sockaddr_storage peer;
1482     socklen_t peer_len = sizeof(peer);
1483
1484     if (!ff_network_init())
1485         return AVERROR(EIO);
1486 redirect:
1487     /* extract hostname and port */
1488     ff_url_split(NULL, 0, auth, sizeof(auth),
1489                  host, sizeof(host), &port, path, sizeof(path), s->filename);
1490     if (*auth) {
1491         av_strlcpy(rt->auth, auth, sizeof(rt->auth));
1492     }
1493     if (port < 0)
1494         port = RTSP_DEFAULT_PORT;
1495
1496     /* search for options */
1497     option_list = strrchr(path, '?');
1498     if (option_list) {
1499         /* Strip out the RTSP specific options, write out the rest of
1500          * the options back into the same string. */
1501         filename = option_list;
1502         while (option_list) {
1503             /* move the option pointer */
1504             option = ++option_list;
1505             option_list = strchr(option_list, '&');
1506             if (option_list)
1507                 *option_list = 0;
1508
1509             /* handle the options */
1510             if (!strcmp(option, "udp")) {
1511                 lower_transport_mask |= (1<< RTSP_LOWER_TRANSPORT_UDP);
1512             } else if (!strcmp(option, "multicast")) {
1513                 lower_transport_mask |= (1<< RTSP_LOWER_TRANSPORT_UDP_MULTICAST);
1514             } else if (!strcmp(option, "tcp")) {
1515                 lower_transport_mask |= (1<< RTSP_LOWER_TRANSPORT_TCP);
1516             } else {
1517                 /* Write options back into the buffer, using memmove instead
1518                  * of strcpy since the strings may overlap. */
1519                 int len = strlen(option);
1520                 memmove(++filename, option, len);
1521                 filename += len;
1522                 if (option_list) *filename = '&';
1523             }
1524         }
1525         *filename = 0;
1526     }
1527
1528     if (!lower_transport_mask)
1529         lower_transport_mask = (1 << RTSP_LOWER_TRANSPORT_NB) - 1;
1530
1531     if (s->oformat) {
1532         /* Only UDP or TCP - UDP multicast isn't supported. */
1533         lower_transport_mask &= (1 << RTSP_LOWER_TRANSPORT_UDP) |
1534                                 (1 << RTSP_LOWER_TRANSPORT_TCP);
1535         if (!lower_transport_mask) {
1536             av_log(s, AV_LOG_ERROR, "Unsupported lower transport method, "
1537                                     "only UDP and TCP are supported for output.\n");
1538             err = AVERROR(EINVAL);
1539             goto fail;
1540         }
1541     }
1542
1543     /* Construct the URI used in request; this is similar to s->filename,
1544      * but with authentication credentials removed and RTSP specific options
1545      * stripped out. */
1546     ff_url_join(rt->control_uri, sizeof(rt->control_uri), "rtsp", NULL,
1547                 host, port, "%s", path);
1548
1549     /* open the tcp connexion */
1550     ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port, NULL);
1551     if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0) {
1552         err = AVERROR(EIO);
1553         goto fail;
1554     }
1555     rtsp_hd_out = rtsp_hd;
1556     rt->rtsp_hd = rtsp_hd;
1557     rt->rtsp_hd_out = rtsp_hd_out;
1558     rt->seq = 0;
1559
1560     tcp_fd = url_get_file_handle(rtsp_hd);
1561     if (!getpeername(tcp_fd, (struct sockaddr*) &peer, &peer_len)) {
1562         getnameinfo((struct sockaddr*) &peer, peer_len, host, sizeof(host),
1563                     NULL, 0, NI_NUMERICHOST);
1564     }
1565
1566     /* request options supported by the server; this also detects server
1567      * type */
1568     for (rt->server_type = RTSP_SERVER_RTP;;) {
1569         cmd[0] = 0;
1570         if (rt->server_type == RTSP_SERVER_REAL)
1571             av_strlcat(cmd,
1572                        /**
1573                         * The following entries are required for proper
1574                         * streaming from a Realmedia server. They are
1575                         * interdependent in some way although we currently
1576                         * don't quite understand how. Values were copied
1577                         * from mplayer SVN r23589.
1578                         * @param CompanyID is a 16-byte ID in base64
1579                         * @param ClientChallenge is a 16-byte ID in hex
1580                         */
1581                        "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
1582                        "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
1583                        "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
1584                        "GUID: 00000000-0000-0000-0000-000000000000\r\n",
1585                        sizeof(cmd));
1586         ff_rtsp_send_cmd(s, "OPTIONS", rt->control_uri, cmd, reply, NULL);
1587         if (reply->status_code != RTSP_STATUS_OK) {
1588             err = AVERROR_INVALIDDATA;
1589             goto fail;
1590         }
1591
1592         /* detect server type if not standard-compliant RTP */
1593         if (rt->server_type != RTSP_SERVER_REAL && reply->real_challenge[0]) {
1594             rt->server_type = RTSP_SERVER_REAL;
1595             continue;
1596         } else if (!strncasecmp(reply->server, "WMServer/", 9)) {
1597             rt->server_type = RTSP_SERVER_WMS;
1598         } else if (rt->server_type == RTSP_SERVER_REAL)
1599             strcpy(real_challenge, reply->real_challenge);
1600         break;
1601     }
1602
1603     if (s->iformat)
1604         err = rtsp_setup_input_streams(s, reply);
1605     else
1606         err = rtsp_setup_output_streams(s, host);
1607     if (err)
1608         goto fail;
1609
1610     do {
1611         int lower_transport = ff_log2_tab[lower_transport_mask &
1612                                   ~(lower_transport_mask - 1)];
1613
1614         err = make_setup_request(s, host, port, lower_transport,
1615                                  rt->server_type == RTSP_SERVER_REAL ?
1616                                      real_challenge : NULL);
1617         if (err < 0)
1618             goto fail;
1619         lower_transport_mask &= ~(1 << lower_transport);
1620         if (lower_transport_mask == 0 && err == 1) {
1621             err = FF_NETERROR(EPROTONOSUPPORT);
1622             goto fail;
1623         }
1624     } while (err);
1625
1626     rt->state = RTSP_STATE_IDLE;
1627     rt->seek_timestamp = 0; /* default is to start stream at position zero */
1628     return 0;
1629  fail:
1630     ff_rtsp_close_streams(s);
1631     ff_rtsp_close_connections(s);
1632     if (reply->status_code >=300 && reply->status_code < 400 && s->iformat) {
1633         av_strlcpy(s->filename, reply->location, sizeof(s->filename));
1634         av_log(s, AV_LOG_INFO, "Status %d: Redirecting to %s\n",
1635                reply->status_code,
1636                s->filename);
1637         goto redirect;
1638     }
1639     ff_network_close();
1640     return err;
1641 }
1642 #endif
1643
1644 #if CONFIG_RTSP_DEMUXER
1645 static int rtsp_read_header(AVFormatContext *s,
1646                             AVFormatParameters *ap)
1647 {
1648     int ret;
1649
1650     ret = ff_rtsp_connect(s);
1651     if (ret)
1652         return ret;
1653
1654     if (ap->initial_pause) {
1655          /* do not start immediately */
1656     } else {
1657          if (rtsp_read_play(s) < 0) {
1658             ff_rtsp_close_streams(s);
1659             ff_rtsp_close_connections(s);
1660             return AVERROR_INVALIDDATA;
1661         }
1662     }
1663
1664     return 0;
1665 }
1666
1667 static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
1668                            uint8_t *buf, int buf_size)
1669 {
1670     RTSPState *rt = s->priv_data;
1671     RTSPStream *rtsp_st;
1672     fd_set rfds;
1673     int fd, fd_max, n, i, ret, tcp_fd, timeout_cnt = 0;
1674     struct timeval tv;
1675
1676     for (;;) {
1677         if (url_interrupt_cb())
1678             return AVERROR(EINTR);
1679         FD_ZERO(&rfds);
1680         if (rt->rtsp_hd) {
1681             tcp_fd = fd_max = url_get_file_handle(rt->rtsp_hd);
1682             FD_SET(tcp_fd, &rfds);
1683         } else {
1684             fd_max = 0;
1685             tcp_fd = -1;
1686         }
1687         for (i = 0; i < rt->nb_rtsp_streams; i++) {
1688             rtsp_st = rt->rtsp_streams[i];
1689             if (rtsp_st->rtp_handle) {
1690                 /* currently, we cannot probe RTCP handle because of
1691                  * blocking restrictions */
1692                 fd = url_get_file_handle(rtsp_st->rtp_handle);
1693                 if (fd > fd_max)
1694                     fd_max = fd;
1695                 FD_SET(fd, &rfds);
1696             }
1697         }
1698         tv.tv_sec = 0;
1699         tv.tv_usec = SELECT_TIMEOUT_MS * 1000;
1700         n = select(fd_max + 1, &rfds, NULL, NULL, &tv);
1701         if (n > 0) {
1702             timeout_cnt = 0;
1703             for (i = 0; i < rt->nb_rtsp_streams; i++) {
1704                 rtsp_st = rt->rtsp_streams[i];
1705                 if (rtsp_st->rtp_handle) {
1706                     fd = url_get_file_handle(rtsp_st->rtp_handle);
1707                     if (FD_ISSET(fd, &rfds)) {
1708                         ret = url_read(rtsp_st->rtp_handle, buf, buf_size);
1709                         if (ret > 0) {
1710                             *prtsp_st = rtsp_st;
1711                             return ret;
1712                         }
1713                     }
1714                 }
1715             }
1716 #if CONFIG_RTSP_DEMUXER
1717             if (tcp_fd != -1 && FD_ISSET(tcp_fd, &rfds)) {
1718                 RTSPMessageHeader reply;
1719
1720                 ret = ff_rtsp_read_reply(s, &reply, NULL, 0);
1721                 if (ret < 0)
1722                     return ret;
1723                 /* XXX: parse message */
1724                 if (rt->state != RTSP_STATE_STREAMING)
1725                     return 0;
1726             }
1727 #endif
1728         } else if (n == 0 && ++timeout_cnt >= MAX_TIMEOUTS) {
1729             return FF_NETERROR(ETIMEDOUT);
1730         } else if (n < 0 && errno != EINTR)
1731             return AVERROR(errno);
1732     }
1733 }
1734
1735 static int tcp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
1736                            uint8_t *buf, int buf_size)
1737 {
1738     RTSPState *rt = s->priv_data;
1739     int id, len, i, ret;
1740     RTSPStream *rtsp_st;
1741
1742 #ifdef DEBUG_RTP_TCP
1743     dprintf(s, "tcp_read_packet:\n");
1744 #endif
1745 redo:
1746     for (;;) {
1747         RTSPMessageHeader reply;
1748
1749         ret = ff_rtsp_read_reply(s, &reply, NULL, 1);
1750         if (ret == -1)
1751             return -1;
1752         if (ret == 1) /* received '$' */
1753             break;
1754         /* XXX: parse message */
1755         if (rt->state != RTSP_STATE_STREAMING)
1756             return 0;
1757     }
1758     ret = url_read_complete(rt->rtsp_hd, buf, 3);
1759     if (ret != 3)
1760         return -1;
1761     id  = buf[0];
1762     len = AV_RB16(buf + 1);
1763 #ifdef DEBUG_RTP_TCP
1764     dprintf(s, "id=%d len=%d\n", id, len);
1765 #endif
1766     if (len > buf_size || len < 12)
1767         goto redo;
1768     /* get the data */
1769     ret = url_read_complete(rt->rtsp_hd, buf, len);
1770     if (ret != len)
1771         return -1;
1772     if (rt->transport == RTSP_TRANSPORT_RDT &&
1773         ff_rdt_parse_header(buf, len, &id, NULL, NULL, NULL, NULL) < 0)
1774         return -1;
1775
1776     /* find the matching stream */
1777     for (i = 0; i < rt->nb_rtsp_streams; i++) {
1778         rtsp_st = rt->rtsp_streams[i];
1779         if (id >= rtsp_st->interleaved_min &&
1780             id <= rtsp_st->interleaved_max)
1781             goto found;
1782     }
1783     goto redo;
1784 found:
1785     *prtsp_st = rtsp_st;
1786     return len;
1787 }
1788
1789 static int rtsp_fetch_packet(AVFormatContext *s, AVPacket *pkt)
1790 {
1791     RTSPState *rt = s->priv_data;
1792     int ret, len;
1793     uint8_t buf[10 * RTP_MAX_PACKET_LENGTH];
1794     RTSPStream *rtsp_st;
1795
1796     /* get next frames from the same RTP packet */
1797     if (rt->cur_transport_priv) {
1798         if (rt->transport == RTSP_TRANSPORT_RDT) {
1799             ret = ff_rdt_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
1800         } else
1801             ret = rtp_parse_packet(rt->cur_transport_priv, pkt, NULL, 0);
1802         if (ret == 0) {
1803             rt->cur_transport_priv = NULL;
1804             return 0;
1805         } else if (ret == 1) {
1806             return 0;
1807         } else
1808             rt->cur_transport_priv = NULL;
1809     }
1810
1811     /* read next RTP packet */
1812  redo:
1813     switch(rt->lower_transport) {
1814     default:
1815 #if CONFIG_RTSP_DEMUXER
1816     case RTSP_LOWER_TRANSPORT_TCP:
1817         len = tcp_read_packet(s, &rtsp_st, buf, sizeof(buf));
1818         break;
1819 #endif
1820     case RTSP_LOWER_TRANSPORT_UDP:
1821     case RTSP_LOWER_TRANSPORT_UDP_MULTICAST:
1822         len = udp_read_packet(s, &rtsp_st, buf, sizeof(buf));
1823         if (len >=0 && rtsp_st->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
1824             rtp_check_and_send_back_rr(rtsp_st->transport_priv, len);
1825         break;
1826     }
1827     if (len < 0)
1828         return len;
1829     if (len == 0)
1830         return AVERROR_EOF;
1831     if (rt->transport == RTSP_TRANSPORT_RDT) {
1832         ret = ff_rdt_parse_packet(rtsp_st->transport_priv, pkt, buf, len);
1833     } else {
1834         ret = rtp_parse_packet(rtsp_st->transport_priv, pkt, buf, len);
1835         if (ret < 0) {
1836             /* Either bad packet, or a RTCP packet. Check if the
1837              * first_rtcp_ntp_time field was initialized. */
1838             RTPDemuxContext *rtpctx = rtsp_st->transport_priv;
1839             if (rtpctx->first_rtcp_ntp_time != AV_NOPTS_VALUE) {
1840                 /* first_rtcp_ntp_time has been initialized for this stream,
1841                  * copy the same value to all other uninitialized streams,
1842                  * in order to map their timestamp origin to the same ntp time
1843                  * as this one. */
1844                 int i;
1845                 for (i = 0; i < rt->nb_rtsp_streams; i++) {
1846                     RTPDemuxContext *rtpctx2 = rtsp_st->transport_priv;
1847                     if (rtpctx2 &&
1848                         rtpctx2->first_rtcp_ntp_time == AV_NOPTS_VALUE)
1849                         rtpctx2->first_rtcp_ntp_time = rtpctx->first_rtcp_ntp_time;
1850                 }
1851             }
1852         }
1853     }
1854     if (ret < 0)
1855         goto redo;
1856     if (ret == 1)
1857         /* more packets may follow, so we save the RTP context */
1858         rt->cur_transport_priv = rtsp_st->transport_priv;
1859
1860     return ret;
1861 }
1862
1863 static int rtsp_read_packet(AVFormatContext *s, AVPacket *pkt)
1864 {
1865     RTSPState *rt = s->priv_data;
1866     int ret;
1867     RTSPMessageHeader reply1, *reply = &reply1;
1868     char cmd[1024];
1869
1870     if (rt->server_type == RTSP_SERVER_REAL) {
1871         int i;
1872         enum AVDiscard cache[MAX_STREAMS];
1873
1874         for (i = 0; i < s->nb_streams; i++)
1875             cache[i] = s->streams[i]->discard;
1876
1877         if (!rt->need_subscription) {
1878             if (memcmp (cache, rt->real_setup_cache,
1879                         sizeof(enum AVDiscard) * s->nb_streams)) {
1880                 snprintf(cmd, sizeof(cmd),
1881                          "Unsubscribe: %s\r\n",
1882                          rt->last_subscription);
1883                 ff_rtsp_send_cmd(s, "SET_PARAMETER", rt->control_uri,
1884                                  cmd, reply, NULL);
1885                 if (reply->status_code != RTSP_STATUS_OK)
1886                     return AVERROR_INVALIDDATA;
1887                 rt->need_subscription = 1;
1888             }
1889         }
1890
1891         if (rt->need_subscription) {
1892             int r, rule_nr, first = 1;
1893
1894             memcpy(rt->real_setup_cache, cache,
1895                    sizeof(enum AVDiscard) * s->nb_streams);
1896             rt->last_subscription[0] = 0;
1897
1898             snprintf(cmd, sizeof(cmd),
1899                      "Subscribe: ");
1900             for (i = 0; i < rt->nb_rtsp_streams; i++) {
1901                 rule_nr = 0;
1902                 for (r = 0; r < s->nb_streams; r++) {
1903                     if (s->streams[r]->priv_data == rt->rtsp_streams[i]) {
1904                         if (s->streams[r]->discard != AVDISCARD_ALL) {
1905                             if (!first)
1906                                 av_strlcat(rt->last_subscription, ",",
1907                                            sizeof(rt->last_subscription));
1908                             ff_rdt_subscribe_rule(
1909                                 rt->last_subscription,
1910                                 sizeof(rt->last_subscription), i, rule_nr);
1911                             first = 0;
1912                         }
1913                         rule_nr++;
1914                     }
1915                 }
1916             }
1917             av_strlcatf(cmd, sizeof(cmd), "%s\r\n", rt->last_subscription);
1918             ff_rtsp_send_cmd(s, "SET_PARAMETER", rt->control_uri,
1919                              cmd, reply, NULL);
1920             if (reply->status_code != RTSP_STATUS_OK)
1921                 return AVERROR_INVALIDDATA;
1922             rt->need_subscription = 0;
1923
1924             if (rt->state == RTSP_STATE_STREAMING)
1925                 rtsp_read_play (s);
1926         }
1927     }
1928
1929     ret = rtsp_fetch_packet(s, pkt);
1930     if (ret < 0)
1931         return ret;
1932
1933     /* send dummy request to keep TCP connection alive */
1934     if ((rt->server_type == RTSP_SERVER_WMS ||
1935          rt->server_type == RTSP_SERVER_REAL) &&
1936         (av_gettime() - rt->last_cmd_time) / 1000000 >= rt->timeout / 2) {
1937         if (rt->server_type == RTSP_SERVER_WMS) {
1938             ff_rtsp_send_cmd_async(s, "GET_PARAMETER", rt->control_uri, NULL);
1939         } else {
1940             ff_rtsp_send_cmd_async(s, "OPTIONS", "*", NULL);
1941         }
1942     }
1943
1944     return 0;
1945 }
1946
1947 /* pause the stream */
1948 static int rtsp_read_pause(AVFormatContext *s)
1949 {
1950     RTSPState *rt = s->priv_data;
1951     RTSPMessageHeader reply1, *reply = &reply1;
1952
1953     if (rt->state != RTSP_STATE_STREAMING)
1954         return 0;
1955     else if (!(rt->server_type == RTSP_SERVER_REAL && rt->need_subscription)) {
1956         ff_rtsp_send_cmd(s, "PAUSE", rt->control_uri, NULL, reply, NULL);
1957         if (reply->status_code != RTSP_STATUS_OK) {
1958             return -1;
1959         }
1960     }
1961     rt->state = RTSP_STATE_PAUSED;
1962     return 0;
1963 }
1964
1965 static int rtsp_read_seek(AVFormatContext *s, int stream_index,
1966                           int64_t timestamp, int flags)
1967 {
1968     RTSPState *rt = s->priv_data;
1969
1970     rt->seek_timestamp = av_rescale_q(timestamp,
1971                                       s->streams[stream_index]->time_base,
1972                                       AV_TIME_BASE_Q);
1973     switch(rt->state) {
1974     default:
1975     case RTSP_STATE_IDLE:
1976         break;
1977     case RTSP_STATE_STREAMING:
1978         if (rtsp_read_pause(s) != 0)
1979             return -1;
1980         rt->state = RTSP_STATE_SEEKING;
1981         if (rtsp_read_play(s) != 0)
1982             return -1;
1983         break;
1984     case RTSP_STATE_PAUSED:
1985         rt->state = RTSP_STATE_IDLE;
1986         break;
1987     }
1988     return 0;
1989 }
1990
1991 static int rtsp_read_close(AVFormatContext *s)
1992 {
1993     RTSPState *rt = s->priv_data;
1994
1995 #if 0
1996     /* NOTE: it is valid to flush the buffer here */
1997     if (rt->lower_transport == RTSP_LOWER_TRANSPORT_TCP) {
1998         url_fclose(&rt->rtsp_gb);
1999     }
2000 #endif
2001     ff_rtsp_send_cmd_async(s, "TEARDOWN", rt->control_uri, NULL);
2002
2003     ff_rtsp_close_streams(s);
2004     ff_rtsp_close_connections(s);
2005     ff_network_close();
2006     return 0;
2007 }
2008
2009 AVInputFormat rtsp_demuxer = {
2010     "rtsp",
2011     NULL_IF_CONFIG_SMALL("RTSP input format"),
2012     sizeof(RTSPState),
2013     rtsp_probe,
2014     rtsp_read_header,
2015     rtsp_read_packet,
2016     rtsp_read_close,
2017     rtsp_read_seek,
2018     .flags = AVFMT_NOFILE,
2019     .read_play = rtsp_read_play,
2020     .read_pause = rtsp_read_pause,
2021 };
2022 #endif
2023
2024 static int sdp_probe(AVProbeData *p1)
2025 {
2026     const char *p = p1->buf, *p_end = p1->buf + p1->buf_size;
2027
2028     /* we look for a line beginning "c=IN IP4" */
2029     while (p < p_end && *p != '\0') {
2030         if (p + sizeof("c=IN IP4") - 1 < p_end &&
2031             av_strstart(p, "c=IN IP4", NULL))
2032             return AVPROBE_SCORE_MAX / 2;
2033
2034         while (p < p_end - 1 && *p != '\n') p++;
2035         if (++p >= p_end)
2036             break;
2037         if (*p == '\r')
2038             p++;
2039     }
2040     return 0;
2041 }
2042
2043 #define SDP_MAX_SIZE 8192
2044
2045 static int sdp_read_header(AVFormatContext *s, AVFormatParameters *ap)
2046 {
2047     RTSPState *rt = s->priv_data;
2048     RTSPStream *rtsp_st;
2049     int size, i, err;
2050     char *content;
2051     char url[1024];
2052
2053     if (!ff_network_init())
2054         return AVERROR(EIO);
2055
2056     /* read the whole sdp file */
2057     /* XXX: better loading */
2058     content = av_malloc(SDP_MAX_SIZE);
2059     size = get_buffer(s->pb, content, SDP_MAX_SIZE - 1);
2060     if (size <= 0) {
2061         av_free(content);
2062         return AVERROR_INVALIDDATA;
2063     }
2064     content[size] ='\0';
2065
2066     sdp_parse(s, content);
2067     av_free(content);
2068
2069     /* open each RTP stream */
2070     for (i = 0; i < rt->nb_rtsp_streams; i++) {
2071         rtsp_st = rt->rtsp_streams[i];
2072
2073         ff_url_join(url, sizeof(url), "rtp", NULL,
2074                     inet_ntoa(rtsp_st->sdp_ip), rtsp_st->sdp_port,
2075                     "?localport=%d&ttl=%d", rtsp_st->sdp_port,
2076                     rtsp_st->sdp_ttl);
2077         if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) {
2078             err = AVERROR_INVALIDDATA;
2079             goto fail;
2080         }
2081         if ((err = rtsp_open_transport_ctx(s, rtsp_st)))
2082             goto fail;
2083     }
2084     return 0;
2085 fail:
2086     ff_rtsp_close_streams(s);
2087     ff_network_close();
2088     return err;
2089 }
2090
2091 static int sdp_read_close(AVFormatContext *s)
2092 {
2093     ff_rtsp_close_streams(s);
2094     ff_network_close();
2095     return 0;
2096 }
2097
2098 AVInputFormat sdp_demuxer = {
2099     "sdp",
2100     NULL_IF_CONFIG_SMALL("SDP"),
2101     sizeof(RTSPState),
2102     sdp_probe,
2103     sdp_read_header,
2104     rtsp_fetch_packet,
2105     sdp_read_close,
2106 };