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