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