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