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