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