]> git.sesse.net Git - ffmpeg/blob - libavformat/rtsp.c
Fix pts handling when encoding with libdirac.
[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/avstring.h"
23 #include "avformat.h"
24
25 #include <sys/time.h>
26 #include <unistd.h> /* for select() prototype */
27 #include "network.h"
28 #include "rtsp.h"
29
30 #include "rtp_internal.h"
31
32 //#define DEBUG
33 //#define DEBUG_RTP_TCP
34
35 enum RTSPClientState {
36     RTSP_STATE_IDLE,
37     RTSP_STATE_PLAYING,
38     RTSP_STATE_PAUSED,
39 };
40
41 typedef struct RTSPState {
42     URLContext *rtsp_hd; /* RTSP TCP connexion handle */
43     int nb_rtsp_streams;
44     struct RTSPStream **rtsp_streams;
45
46     enum RTSPClientState state;
47     int64_t seek_timestamp;
48
49     /* XXX: currently we use unbuffered input */
50     //    ByteIOContext rtsp_gb;
51     int seq;        /* RTSP command sequence number */
52     char session_id[512];
53     enum RTSPProtocol protocol;
54     char last_reply[2048]; /* XXX: allocate ? */
55     RTPDemuxContext *cur_rtp;
56 } RTSPState;
57
58 typedef struct RTSPStream {
59     URLContext *rtp_handle; /* RTP stream handle */
60     RTPDemuxContext *rtp_ctx; /* RTP parse context */
61
62     int stream_index; /* corresponding stream index, if any. -1 if none (MPEG2TS case) */
63     int interleaved_min, interleaved_max;  /* interleave ids, if TCP transport */
64     char control_url[1024]; /* url for this stream (from SDP) */
65
66     int sdp_port; /* port (from SDP content - not used in RTSP) */
67     struct in_addr sdp_ip; /* IP address  (from SDP content - not used in RTSP) */
68     int sdp_ttl;  /* IP TTL (from SDP content - not used in RTSP) */
69     int sdp_payload_type; /* payload type - only used in SDP */
70     rtp_payload_data_t rtp_payload_data; /* rtp payload parsing infos from SDP */
71
72     RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure)
73     void *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol)
74 } RTSPStream;
75
76 static int rtsp_read_play(AVFormatContext *s);
77
78 /* XXX: currently, the only way to change the protocols consists in
79    changing this variable */
80
81 #if LIBAVFORMAT_VERSION_INT < (53 << 16)
82 int rtsp_default_protocols = (1 << RTSP_PROTOCOL_RTP_UDP);
83 #endif
84
85 static int rtsp_probe(AVProbeData *p)
86 {
87     if (av_strstart(p->filename, "rtsp:", NULL))
88         return AVPROBE_SCORE_MAX;
89     return 0;
90 }
91
92 static int redir_isspace(int c)
93 {
94     return c == ' ' || c == '\t' || c == '\n' || c == '\r';
95 }
96
97 static void skip_spaces(const char **pp)
98 {
99     const char *p;
100     p = *pp;
101     while (redir_isspace(*p))
102         p++;
103     *pp = p;
104 }
105
106 static void get_word_sep(char *buf, int buf_size, const char *sep,
107                          const char **pp)
108 {
109     const char *p;
110     char *q;
111
112     p = *pp;
113     if (*p == '/')
114         p++;
115     skip_spaces(&p);
116     q = buf;
117     while (!strchr(sep, *p) && *p != '\0') {
118         if ((q - buf) < buf_size - 1)
119             *q++ = *p;
120         p++;
121     }
122     if (buf_size > 0)
123         *q = '\0';
124     *pp = p;
125 }
126
127 static void get_word(char *buf, int buf_size, const char **pp)
128 {
129     const char *p;
130     char *q;
131
132     p = *pp;
133     skip_spaces(&p);
134     q = buf;
135     while (!redir_isspace(*p) && *p != '\0') {
136         if ((q - buf) < buf_size - 1)
137             *q++ = *p;
138         p++;
139     }
140     if (buf_size > 0)
141         *q = '\0';
142     *pp = p;
143 }
144
145 /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other
146    params>] */
147 static int sdp_parse_rtpmap(AVCodecContext *codec, RTSPStream *rtsp_st, int payload_type, const char *p)
148 {
149     char buf[256];
150     int i;
151     AVCodec *c;
152     const char *c_name;
153
154     /* Loop into AVRtpDynamicPayloadTypes[] and AVRtpPayloadTypes[] and
155        see if we can handle this kind of payload */
156     get_word_sep(buf, sizeof(buf), "/", &p);
157     if (payload_type >= RTP_PT_PRIVATE) {
158         RTPDynamicProtocolHandler *handler= RTPFirstDynamicPayloadHandler;
159         while(handler) {
160             if (!strcmp(buf, handler->enc_name) && (codec->codec_type == handler->codec_type)) {
161                 codec->codec_id = handler->codec_id;
162                 rtsp_st->dynamic_handler= handler;
163                 if(handler->open) {
164                     rtsp_st->dynamic_protocol_context= handler->open();
165                 }
166                 break;
167             }
168             handler= handler->next;
169         }
170     } else {
171         /* We are in a standard case ( from http://www.iana.org/assignments/rtp-parameters) */
172         /* search into AVRtpPayloadTypes[] */
173         codec->codec_id = ff_rtp_codec_id(buf, codec->codec_type);
174     }
175
176     c = avcodec_find_decoder(codec->codec_id);
177     if (c && c->name)
178         c_name = c->name;
179     else
180         c_name = (char *)NULL;
181
182     if (c_name) {
183         get_word_sep(buf, sizeof(buf), "/", &p);
184         i = atoi(buf);
185         switch (codec->codec_type) {
186             case CODEC_TYPE_AUDIO:
187                 av_log(codec, AV_LOG_DEBUG, " audio codec set to : %s\n", c_name);
188                 codec->sample_rate = RTSP_DEFAULT_AUDIO_SAMPLERATE;
189                 codec->channels = RTSP_DEFAULT_NB_AUDIO_CHANNELS;
190                 if (i > 0) {
191                     codec->sample_rate = i;
192                     get_word_sep(buf, sizeof(buf), "/", &p);
193                     i = atoi(buf);
194                     if (i > 0)
195                         codec->channels = i;
196                     // TODO: there is a bug here; if it is a mono stream, and less than 22000Hz, faad upconverts to stereo and twice the
197                     //  frequency.  No problem, but the sample rate is being set here by the sdp line.  Upcoming patch forthcoming. (rdm)
198                 }
199                 av_log(codec, AV_LOG_DEBUG, " audio samplerate set to : %i\n", codec->sample_rate);
200                 av_log(codec, AV_LOG_DEBUG, " audio channels set to : %i\n", codec->channels);
201                 break;
202             case CODEC_TYPE_VIDEO:
203                 av_log(codec, AV_LOG_DEBUG, " video codec set to : %s\n", c_name);
204                 break;
205             default:
206                 break;
207         }
208         return 0;
209     }
210
211     return -1;
212 }
213
214 /* return the length and optionnaly the data */
215 static int hex_to_data(uint8_t *data, const char *p)
216 {
217     int c, len, v;
218
219     len = 0;
220     v = 1;
221     for(;;) {
222         skip_spaces(&p);
223         if (p == '\0')
224             break;
225         c = toupper((unsigned char)*p++);
226         if (c >= '0' && c <= '9')
227             c = c - '0';
228         else if (c >= 'A' && c <= 'F')
229             c = c - 'A' + 10;
230         else
231             break;
232         v = (v << 4) | c;
233         if (v & 0x100) {
234             if (data)
235                 data[len] = v;
236             len++;
237             v = 1;
238         }
239     }
240     return len;
241 }
242
243 static void sdp_parse_fmtp_config(AVCodecContext *codec, char *attr, char *value)
244 {
245     switch (codec->codec_id) {
246         case CODEC_ID_MPEG4:
247         case CODEC_ID_AAC:
248             if (!strcmp(attr, "config")) {
249                 /* decode the hexa encoded parameter */
250                 int len = hex_to_data(NULL, value);
251                 codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
252                 if (!codec->extradata)
253                     return;
254                 codec->extradata_size = len;
255                 hex_to_data(codec->extradata, value);
256             }
257             break;
258         default:
259             break;
260     }
261     return;
262 }
263
264 typedef struct attrname_map
265 {
266     const char *str;
267     uint16_t type;
268     uint32_t offset;
269 } attrname_map_t;
270
271 /* All known fmtp parmeters and the corresping RTPAttrTypeEnum */
272 #define ATTR_NAME_TYPE_INT 0
273 #define ATTR_NAME_TYPE_STR 1
274 static attrname_map_t attr_names[]=
275 {
276     {"SizeLength",       ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, sizelength)},
277     {"IndexLength",      ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, indexlength)},
278     {"IndexDeltaLength", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, indexdeltalength)},
279     {"profile-level-id", ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, profile_level_id)},
280     {"StreamType",       ATTR_NAME_TYPE_INT, offsetof(rtp_payload_data_t, streamtype)},
281     {"mode",             ATTR_NAME_TYPE_STR, offsetof(rtp_payload_data_t, mode)},
282     {NULL, -1, -1},
283 };
284
285 /** parse the attribute line from the fmtp a line of an sdp resonse.  This is broken out as a function
286 * because it is used in rtp_h264.c, which is forthcoming.
287 */
288 int rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size)
289 {
290     skip_spaces(p);
291     if(**p)
292     {
293         get_word_sep(attr, attr_size, "=", p);
294         if (**p == '=')
295             (*p)++;
296         get_word_sep(value, value_size, ";", p);
297         if (**p == ';')
298             (*p)++;
299         return 1;
300     }
301     return 0;
302 }
303
304 /* parse a SDP line and save stream attributes */
305 static void sdp_parse_fmtp(AVStream *st, const char *p)
306 {
307     char attr[256];
308     char value[4096];
309     int i;
310
311     RTSPStream *rtsp_st = st->priv_data;
312     AVCodecContext *codec = st->codec;
313     rtp_payload_data_t *rtp_payload_data = &rtsp_st->rtp_payload_data;
314
315     /* loop on each attribute */
316     while(rtsp_next_attr_and_value(&p, attr, sizeof(attr), value, sizeof(value)))
317     {
318         /* grab the codec extra_data from the config parameter of the fmtp line */
319         sdp_parse_fmtp_config(codec, attr, value);
320         /* Looking for a known attribute */
321         for (i = 0; attr_names[i].str; ++i) {
322             if (!strcasecmp(attr, attr_names[i].str)) {
323                 if (attr_names[i].type == ATTR_NAME_TYPE_INT)
324                     *(int *)((char *)rtp_payload_data + attr_names[i].offset) = atoi(value);
325                 else if (attr_names[i].type == ATTR_NAME_TYPE_STR)
326                     *(char **)((char *)rtp_payload_data + attr_names[i].offset) = av_strdup(value);
327             }
328         }
329     }
330 }
331
332 /** Parse a string \p in the form of Range:npt=xx-xx, and determine the start
333  *  and end time.
334  *  Used for seeking in the rtp stream.
335  */
336 static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
337 {
338     char buf[256];
339
340     skip_spaces(&p);
341     if (!av_stristart(p, "npt=", &p))
342         return;
343
344     *start = AV_NOPTS_VALUE;
345     *end = AV_NOPTS_VALUE;
346
347     get_word_sep(buf, sizeof(buf), "-", &p);
348     *start = parse_date(buf, 1);
349     if (*p == '-') {
350         p++;
351         get_word_sep(buf, sizeof(buf), "-", &p);
352         *end = parse_date(buf, 1);
353     }
354 //    av_log(NULL, AV_LOG_DEBUG, "Range Start: %lld\n", *start);
355 //    av_log(NULL, AV_LOG_DEBUG, "Range End: %lld\n", *end);
356 }
357
358 typedef struct SDPParseState {
359     /* SDP only */
360     struct in_addr default_ip;
361     int default_ttl;
362 } SDPParseState;
363
364 static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
365                            int letter, const char *buf)
366 {
367     RTSPState *rt = s->priv_data;
368     char buf1[64], st_type[64];
369     const char *p;
370     int codec_type, payload_type, i;
371     AVStream *st;
372     RTSPStream *rtsp_st;
373     struct in_addr sdp_ip;
374     int ttl;
375
376 #ifdef DEBUG
377     printf("sdp: %c='%s'\n", letter, buf);
378 #endif
379
380     p = buf;
381     switch(letter) {
382     case 'c':
383         get_word(buf1, sizeof(buf1), &p);
384         if (strcmp(buf1, "IN") != 0)
385             return;
386         get_word(buf1, sizeof(buf1), &p);
387         if (strcmp(buf1, "IP4") != 0)
388             return;
389         get_word_sep(buf1, sizeof(buf1), "/", &p);
390         if (inet_aton(buf1, &sdp_ip) == 0)
391             return;
392         ttl = 16;
393         if (*p == '/') {
394             p++;
395             get_word_sep(buf1, sizeof(buf1), "/", &p);
396             ttl = atoi(buf1);
397         }
398         if (s->nb_streams == 0) {
399             s1->default_ip = sdp_ip;
400             s1->default_ttl = ttl;
401         } else {
402             st = s->streams[s->nb_streams - 1];
403             rtsp_st = st->priv_data;
404             rtsp_st->sdp_ip = sdp_ip;
405             rtsp_st->sdp_ttl = ttl;
406         }
407         break;
408     case 's':
409         av_strlcpy(s->title, p, sizeof(s->title));
410         break;
411     case 'i':
412         if (s->nb_streams == 0) {
413             av_strlcpy(s->comment, p, sizeof(s->comment));
414             break;
415         }
416         break;
417     case 'm':
418         /* new stream */
419         get_word(st_type, sizeof(st_type), &p);
420         if (!strcmp(st_type, "audio")) {
421             codec_type = CODEC_TYPE_AUDIO;
422         } else if (!strcmp(st_type, "video")) {
423             codec_type = CODEC_TYPE_VIDEO;
424         } else {
425             return;
426         }
427         rtsp_st = av_mallocz(sizeof(RTSPStream));
428         if (!rtsp_st)
429             return;
430         rtsp_st->stream_index = -1;
431         dynarray_add(&rt->rtsp_streams, &rt->nb_rtsp_streams, rtsp_st);
432
433         rtsp_st->sdp_ip = s1->default_ip;
434         rtsp_st->sdp_ttl = s1->default_ttl;
435
436         get_word(buf1, sizeof(buf1), &p); /* port */
437         rtsp_st->sdp_port = atoi(buf1);
438
439         get_word(buf1, sizeof(buf1), &p); /* protocol (ignored) */
440
441         /* XXX: handle list of formats */
442         get_word(buf1, sizeof(buf1), &p); /* format list */
443         rtsp_st->sdp_payload_type = atoi(buf1);
444
445         if (!strcmp(ff_rtp_enc_name(rtsp_st->sdp_payload_type), "MP2T")) {
446             /* no corresponding stream */
447         } else {
448             st = av_new_stream(s, 0);
449             if (!st)
450                 return;
451             st->priv_data = rtsp_st;
452             rtsp_st->stream_index = st->index;
453             st->codec->codec_type = codec_type;
454             if (rtsp_st->sdp_payload_type < RTP_PT_PRIVATE) {
455                 /* if standard payload type, we can find the codec right now */
456                 rtp_get_codec_info(st->codec, rtsp_st->sdp_payload_type);
457             }
458         }
459         /* put a default control url */
460         av_strlcpy(rtsp_st->control_url, s->filename, sizeof(rtsp_st->control_url));
461         break;
462     case 'a':
463         if (av_strstart(p, "control:", &p) && s->nb_streams > 0) {
464             char proto[32];
465             /* get the control url */
466             st = s->streams[s->nb_streams - 1];
467             rtsp_st = st->priv_data;
468
469             /* XXX: may need to add full url resolution */
470             url_split(proto, sizeof(proto), NULL, 0, NULL, 0, NULL, NULL, 0, p);
471             if (proto[0] == '\0') {
472                 /* relative control URL */
473                 av_strlcat(rtsp_st->control_url, "/", sizeof(rtsp_st->control_url));
474                 av_strlcat(rtsp_st->control_url, p,   sizeof(rtsp_st->control_url));
475             } else {
476                 av_strlcpy(rtsp_st->control_url, p,   sizeof(rtsp_st->control_url));
477             }
478         } else if (av_strstart(p, "rtpmap:", &p)) {
479             /* NOTE: rtpmap is only supported AFTER the 'm=' tag */
480             get_word(buf1, sizeof(buf1), &p);
481             payload_type = atoi(buf1);
482             for(i = 0; i < s->nb_streams;i++) {
483                 st = s->streams[i];
484                 rtsp_st = st->priv_data;
485                 if (rtsp_st->sdp_payload_type == payload_type) {
486                     sdp_parse_rtpmap(st->codec, rtsp_st, payload_type, p);
487                 }
488             }
489         } else if (av_strstart(p, "fmtp:", &p)) {
490             /* NOTE: fmtp is only supported AFTER the 'a=rtpmap:xxx' tag */
491             get_word(buf1, sizeof(buf1), &p);
492             payload_type = atoi(buf1);
493             for(i = 0; i < s->nb_streams;i++) {
494                 st = s->streams[i];
495                 rtsp_st = st->priv_data;
496                 if (rtsp_st->sdp_payload_type == payload_type) {
497                     if(rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->parse_sdp_a_line) {
498                         if(!rtsp_st->dynamic_handler->parse_sdp_a_line(st, rtsp_st->dynamic_protocol_context, buf)) {
499                             sdp_parse_fmtp(st, p);
500                         }
501                     } else {
502                         sdp_parse_fmtp(st, p);
503                     }
504                 }
505             }
506         } else if(av_strstart(p, "framesize:", &p)) {
507             // let dynamic protocol handlers have a stab at the line.
508             get_word(buf1, sizeof(buf1), &p);
509             payload_type = atoi(buf1);
510             for(i = 0; i < s->nb_streams;i++) {
511                 st = s->streams[i];
512                 rtsp_st = st->priv_data;
513                 if (rtsp_st->sdp_payload_type == payload_type) {
514                     if(rtsp_st->dynamic_handler && rtsp_st->dynamic_handler->parse_sdp_a_line) {
515                         rtsp_st->dynamic_handler->parse_sdp_a_line(st, rtsp_st->dynamic_protocol_context, buf);
516                     }
517                 }
518             }
519         } else if(av_strstart(p, "range:", &p)) {
520             int64_t start, end;
521
522             // this is so that seeking on a streamed file can work.
523             rtsp_parse_range_npt(p, &start, &end);
524             s->start_time= start;
525             s->duration= (end==AV_NOPTS_VALUE)?AV_NOPTS_VALUE:end-start; // AV_NOPTS_VALUE means live broadcast (and can't seek)
526         }
527         break;
528     }
529 }
530
531 static int sdp_parse(AVFormatContext *s, const char *content)
532 {
533     const char *p;
534     int letter;
535     char buf[1024], *q;
536     SDPParseState sdp_parse_state, *s1 = &sdp_parse_state;
537
538     memset(s1, 0, sizeof(SDPParseState));
539     p = content;
540     for(;;) {
541         skip_spaces(&p);
542         letter = *p;
543         if (letter == '\0')
544             break;
545         p++;
546         if (*p != '=')
547             goto next_line;
548         p++;
549         /* get the content */
550         q = buf;
551         while (*p != '\n' && *p != '\r' && *p != '\0') {
552             if ((q - buf) < sizeof(buf) - 1)
553                 *q++ = *p;
554             p++;
555         }
556         *q = '\0';
557         sdp_parse_line(s, s1, letter, buf);
558     next_line:
559         while (*p != '\n' && *p != '\0')
560             p++;
561         if (*p == '\n')
562             p++;
563     }
564     return 0;
565 }
566
567 static void rtsp_parse_range(int *min_ptr, int *max_ptr, const char **pp)
568 {
569     const char *p;
570     int v;
571
572     p = *pp;
573     skip_spaces(&p);
574     v = strtol(p, (char **)&p, 10);
575     if (*p == '-') {
576         p++;
577         *min_ptr = v;
578         v = strtol(p, (char **)&p, 10);
579         *max_ptr = v;
580     } else {
581         *min_ptr = v;
582         *max_ptr = v;
583     }
584     *pp = p;
585 }
586
587 /* XXX: only one transport specification is parsed */
588 static void rtsp_parse_transport(RTSPHeader *reply, const char *p)
589 {
590     char transport_protocol[16];
591     char profile[16];
592     char lower_transport[16];
593     char parameter[16];
594     RTSPTransportField *th;
595     char buf[256];
596
597     reply->nb_transports = 0;
598
599     for(;;) {
600         skip_spaces(&p);
601         if (*p == '\0')
602             break;
603
604         th = &reply->transports[reply->nb_transports];
605
606         get_word_sep(transport_protocol, sizeof(transport_protocol),
607                      "/", &p);
608         if (*p == '/')
609             p++;
610         if (!strcasecmp (transport_protocol, "rtp")) {
611             get_word_sep(profile, sizeof(profile), "/;,", &p);
612             lower_transport[0] = '\0';
613             /* rtp/avp/<protocol> */
614             if (*p == '/') {
615                 p++;
616                 get_word_sep(lower_transport, sizeof(lower_transport),
617                              ";,", &p);
618                 }
619         } else if (!strcasecmp (transport_protocol, "x-pn-tng")) {
620             /* x-pn-tng/<protocol> */
621             get_word_sep(lower_transport, sizeof(lower_transport), "/;,", &p);
622             profile[0] = '\0';
623         }
624         if (!strcasecmp(lower_transport, "TCP"))
625             th->protocol = RTSP_PROTOCOL_RTP_TCP;
626         else
627             th->protocol = RTSP_PROTOCOL_RTP_UDP;
628
629         if (*p == ';')
630             p++;
631         /* get each parameter */
632         while (*p != '\0' && *p != ',') {
633             get_word_sep(parameter, sizeof(parameter), "=;,", &p);
634             if (!strcmp(parameter, "port")) {
635                 if (*p == '=') {
636                     p++;
637                     rtsp_parse_range(&th->port_min, &th->port_max, &p);
638                 }
639             } else if (!strcmp(parameter, "client_port")) {
640                 if (*p == '=') {
641                     p++;
642                     rtsp_parse_range(&th->client_port_min,
643                                      &th->client_port_max, &p);
644                 }
645             } else if (!strcmp(parameter, "server_port")) {
646                 if (*p == '=') {
647                     p++;
648                     rtsp_parse_range(&th->server_port_min,
649                                      &th->server_port_max, &p);
650                 }
651             } else if (!strcmp(parameter, "interleaved")) {
652                 if (*p == '=') {
653                     p++;
654                     rtsp_parse_range(&th->interleaved_min,
655                                      &th->interleaved_max, &p);
656                 }
657             } else if (!strcmp(parameter, "multicast")) {
658                 if (th->protocol == RTSP_PROTOCOL_RTP_UDP)
659                     th->protocol = RTSP_PROTOCOL_RTP_UDP_MULTICAST;
660             } else if (!strcmp(parameter, "ttl")) {
661                 if (*p == '=') {
662                     p++;
663                     th->ttl = strtol(p, (char **)&p, 10);
664                 }
665             } else if (!strcmp(parameter, "destination")) {
666                 struct in_addr ipaddr;
667
668                 if (*p == '=') {
669                     p++;
670                     get_word_sep(buf, sizeof(buf), ";,", &p);
671                     if (inet_aton(buf, &ipaddr))
672                         th->destination = ntohl(ipaddr.s_addr);
673                 }
674             }
675             while (*p != ';' && *p != '\0' && *p != ',')
676                 p++;
677             if (*p == ';')
678                 p++;
679         }
680         if (*p == ',')
681             p++;
682
683         reply->nb_transports++;
684     }
685 }
686
687 void rtsp_parse_line(RTSPHeader *reply, const char *buf)
688 {
689     const char *p;
690
691     /* NOTE: we do case independent match for broken servers */
692     p = buf;
693     if (av_stristart(p, "Session:", &p)) {
694         get_word_sep(reply->session_id, sizeof(reply->session_id), ";", &p);
695     } else if (av_stristart(p, "Content-Length:", &p)) {
696         reply->content_length = strtol(p, NULL, 10);
697     } else if (av_stristart(p, "Transport:", &p)) {
698         rtsp_parse_transport(reply, p);
699     } else if (av_stristart(p, "CSeq:", &p)) {
700         reply->seq = strtol(p, NULL, 10);
701     } else if (av_stristart(p, "Range:", &p)) {
702         rtsp_parse_range_npt(p, &reply->range_start, &reply->range_end);
703     }
704 }
705
706 static int url_readbuf(URLContext *h, unsigned char *buf, int size)
707 {
708     int ret, len;
709
710     len = 0;
711     while (len < size) {
712         ret = url_read(h, buf+len, size-len);
713         if (ret < 1)
714             return ret;
715         len += ret;
716     }
717     return len;
718 }
719
720 /* skip a RTP/TCP interleaved packet */
721 static void rtsp_skip_packet(AVFormatContext *s)
722 {
723     RTSPState *rt = s->priv_data;
724     int ret, len, len1;
725     uint8_t buf[1024];
726
727     ret = url_readbuf(rt->rtsp_hd, buf, 3);
728     if (ret != 3)
729         return;
730     len = AV_RB16(buf + 1);
731 #ifdef DEBUG
732     printf("skipping RTP packet len=%d\n", len);
733 #endif
734     /* skip payload */
735     while (len > 0) {
736         len1 = len;
737         if (len1 > sizeof(buf))
738             len1 = sizeof(buf);
739         ret = url_readbuf(rt->rtsp_hd, buf, len1);
740         if (ret != len1)
741             return;
742         len -= len1;
743     }
744 }
745
746 static void rtsp_send_cmd(AVFormatContext *s,
747                           const char *cmd, RTSPHeader *reply,
748                           unsigned char **content_ptr)
749 {
750     RTSPState *rt = s->priv_data;
751     char buf[4096], buf1[1024], *q;
752     unsigned char ch;
753     const char *p;
754     int content_length, line_count;
755     unsigned char *content = NULL;
756
757     memset(reply, 0, sizeof(RTSPHeader));
758
759     rt->seq++;
760     av_strlcpy(buf, cmd, sizeof(buf));
761     snprintf(buf1, sizeof(buf1), "CSeq: %d\r\n", rt->seq);
762     av_strlcat(buf, buf1, sizeof(buf));
763     if (rt->session_id[0] != '\0' && !strstr(cmd, "\nIf-Match:")) {
764         snprintf(buf1, sizeof(buf1), "Session: %s\r\n", rt->session_id);
765         av_strlcat(buf, buf1, sizeof(buf));
766     }
767     av_strlcat(buf, "\r\n", sizeof(buf));
768 #ifdef DEBUG
769     printf("Sending:\n%s--\n", buf);
770 #endif
771     url_write(rt->rtsp_hd, buf, strlen(buf));
772
773     /* parse reply (XXX: use buffers) */
774     line_count = 0;
775     rt->last_reply[0] = '\0';
776     for(;;) {
777         q = buf;
778         for(;;) {
779             if (url_readbuf(rt->rtsp_hd, &ch, 1) != 1)
780                 break;
781             if (ch == '\n')
782                 break;
783             if (ch == '$') {
784                 /* XXX: only parse it if first char on line ? */
785                 rtsp_skip_packet(s);
786             } else if (ch != '\r') {
787                 if ((q - buf) < sizeof(buf) - 1)
788                     *q++ = ch;
789             }
790         }
791         *q = '\0';
792 #ifdef DEBUG
793         printf("line='%s'\n", buf);
794 #endif
795         /* test if last line */
796         if (buf[0] == '\0')
797             break;
798         p = buf;
799         if (line_count == 0) {
800             /* get reply code */
801             get_word(buf1, sizeof(buf1), &p);
802             get_word(buf1, sizeof(buf1), &p);
803             reply->status_code = atoi(buf1);
804         } else {
805             rtsp_parse_line(reply, p);
806             av_strlcat(rt->last_reply, p,    sizeof(rt->last_reply));
807             av_strlcat(rt->last_reply, "\n", sizeof(rt->last_reply));
808         }
809         line_count++;
810     }
811
812     if (rt->session_id[0] == '\0' && reply->session_id[0] != '\0')
813         av_strlcpy(rt->session_id, reply->session_id, sizeof(rt->session_id));
814
815     content_length = reply->content_length;
816     if (content_length > 0) {
817         /* leave some room for a trailing '\0' (useful for simple parsing) */
818         content = av_malloc(content_length + 1);
819         (void)url_readbuf(rt->rtsp_hd, content, content_length);
820         content[content_length] = '\0';
821     }
822     if (content_ptr)
823         *content_ptr = content;
824     else
825         av_free(content);
826 }
827
828
829 /* close and free RTSP streams */
830 static void rtsp_close_streams(RTSPState *rt)
831 {
832     int i;
833     RTSPStream *rtsp_st;
834
835     for(i=0;i<rt->nb_rtsp_streams;i++) {
836         rtsp_st = rt->rtsp_streams[i];
837         if (rtsp_st) {
838             if (rtsp_st->rtp_ctx)
839                 rtp_parse_close(rtsp_st->rtp_ctx);
840             if (rtsp_st->rtp_handle)
841                 url_close(rtsp_st->rtp_handle);
842             if (rtsp_st->dynamic_handler && rtsp_st->dynamic_protocol_context)
843                 rtsp_st->dynamic_handler->close(rtsp_st->dynamic_protocol_context);
844         }
845     }
846     av_free(rt->rtsp_streams);
847 }
848
849 /**
850  * @returns 0 on success, <0 on error, 1 if protocol is unavailable.
851  */
852 static int
853 make_setup_request (AVFormatContext *s, const char *host, int port, int protocol)
854 {
855     RTSPState *rt = s->priv_data;
856     int j, i, err;
857     RTSPStream *rtsp_st;
858     AVStream *st;
859     RTSPHeader reply1, *reply = &reply1;
860     char cmd[2048];
861
862     /* for each stream, make the setup request */
863     /* XXX: we assume the same server is used for the control of each
864        RTSP stream */
865
866     for(j = RTSP_RTP_PORT_MIN, i = 0; i < rt->nb_rtsp_streams; ++i) {
867         char transport[2048];
868
869         rtsp_st = rt->rtsp_streams[i];
870
871         /* compute available transports */
872         transport[0] = '\0';
873
874         /* RTP/UDP */
875         if (protocol == RTSP_PROTOCOL_RTP_UDP) {
876             char buf[256];
877
878             /* first try in specified port range */
879             if (RTSP_RTP_PORT_MIN != 0) {
880                 while(j <= RTSP_RTP_PORT_MAX) {
881                     snprintf(buf, sizeof(buf), "rtp://%s?localport=%d", host, j);
882                     j += 2; /* we will use two port by rtp stream (rtp and rtcp) */
883                     if (url_open(&rtsp_st->rtp_handle, buf, URL_RDWR) == 0) {
884                         goto rtp_opened;
885                     }
886                 }
887             }
888
889 /*            then try on any port
890 **            if (url_open(&rtsp_st->rtp_handle, "rtp://", URL_RDONLY) < 0) {
891 **                err = AVERROR_INVALIDDATA;
892 **                goto fail;
893 **            }
894 */
895
896         rtp_opened:
897             port = rtp_get_local_port(rtsp_st->rtp_handle);
898             if (transport[0] != '\0')
899                 av_strlcat(transport, ",", sizeof(transport));
900             snprintf(transport + strlen(transport), sizeof(transport) - strlen(transport) - 1,
901                      "RTP/AVP/UDP;unicast;client_port=%d-%d",
902                      port, port + 1);
903         }
904
905         /* RTP/TCP */
906         else if (protocol == RTSP_PROTOCOL_RTP_TCP) {
907             if (transport[0] != '\0')
908                 av_strlcat(transport, ",", sizeof(transport));
909             snprintf(transport + strlen(transport), sizeof(transport) - strlen(transport) - 1,
910                      "RTP/AVP/TCP");
911         }
912
913         else if (protocol == RTSP_PROTOCOL_RTP_UDP_MULTICAST) {
914             if (transport[0] != '\0')
915                 av_strlcat(transport, ",", sizeof(transport));
916             snprintf(transport + strlen(transport),
917                      sizeof(transport) - strlen(transport) - 1,
918                      "RTP/AVP/UDP;multicast");
919         }
920         snprintf(cmd, sizeof(cmd),
921                  "SETUP %s RTSP/1.0\r\n"
922                  "Transport: %s\r\n",
923                  rtsp_st->control_url, transport);
924         rtsp_send_cmd(s, cmd, reply, NULL);
925         if (reply->status_code == 461 /* Unsupported protocol */ && i == 0) {
926             err = 1;
927             goto fail;
928         } else if (reply->status_code != RTSP_STATUS_OK ||
929                    reply->nb_transports != 1) {
930             err = AVERROR_INVALIDDATA;
931             goto fail;
932         }
933
934         /* XXX: same protocol for all streams is required */
935         if (i > 0) {
936             if (reply->transports[0].protocol != rt->protocol) {
937                 err = AVERROR_INVALIDDATA;
938                 goto fail;
939             }
940         } else {
941             rt->protocol = reply->transports[0].protocol;
942         }
943
944         /* close RTP connection if not choosen */
945         if (reply->transports[0].protocol != RTSP_PROTOCOL_RTP_UDP &&
946             (protocol == RTSP_PROTOCOL_RTP_UDP)) {
947             url_close(rtsp_st->rtp_handle);
948             rtsp_st->rtp_handle = NULL;
949         }
950
951         switch(reply->transports[0].protocol) {
952         case RTSP_PROTOCOL_RTP_TCP:
953             rtsp_st->interleaved_min = reply->transports[0].interleaved_min;
954             rtsp_st->interleaved_max = reply->transports[0].interleaved_max;
955             break;
956
957         case RTSP_PROTOCOL_RTP_UDP:
958             {
959                 char url[1024];
960
961                 /* XXX: also use address if specified */
962                 snprintf(url, sizeof(url), "rtp://%s:%d",
963                          host, reply->transports[0].server_port_min);
964                 if (rtp_set_remote_url(rtsp_st->rtp_handle, url) < 0) {
965                     err = AVERROR_INVALIDDATA;
966                     goto fail;
967                 }
968             }
969             break;
970         case RTSP_PROTOCOL_RTP_UDP_MULTICAST:
971             {
972                 char url[1024];
973                 struct in_addr in;
974
975                 in.s_addr = htonl(reply->transports[0].destination);
976                 snprintf(url, sizeof(url), "rtp://%s:%d?ttl=%d",
977                          inet_ntoa(in),
978                          reply->transports[0].port_min,
979                          reply->transports[0].ttl);
980                 if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) {
981                     err = AVERROR_INVALIDDATA;
982                     goto fail;
983                 }
984             }
985             break;
986         }
987         /* open the RTP context */
988         st = NULL;
989         if (rtsp_st->stream_index >= 0)
990             st = s->streams[rtsp_st->stream_index];
991         if (!st)
992             s->ctx_flags |= AVFMTCTX_NOHEADER;
993         rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data);
994
995         if (!rtsp_st->rtp_ctx) {
996             err = AVERROR(ENOMEM);
997             goto fail;
998         } else {
999             if(rtsp_st->dynamic_handler) {
1000                 rtsp_st->rtp_ctx->dynamic_protocol_context= rtsp_st->dynamic_protocol_context;
1001                 rtsp_st->rtp_ctx->parse_packet= rtsp_st->dynamic_handler->parse_packet;
1002             }
1003         }
1004     }
1005
1006     return 0;
1007
1008 fail:
1009     for (i=0; i<rt->nb_rtsp_streams; i++) {
1010         if (rt->rtsp_streams[i]->rtp_handle) {
1011             url_close(rt->rtsp_streams[i]->rtp_handle);
1012             rt->rtsp_streams[i]->rtp_handle = NULL;
1013         }
1014     }
1015     return err;
1016 }
1017
1018 static int rtsp_read_header(AVFormatContext *s,
1019                             AVFormatParameters *ap)
1020 {
1021     RTSPState *rt = s->priv_data;
1022     char host[1024], path[1024], tcpname[1024], cmd[2048], *option_list, *option;
1023     URLContext *rtsp_hd;
1024     int port, ret, err;
1025     RTSPHeader reply1, *reply = &reply1;
1026     unsigned char *content = NULL;
1027     int protocol_mask = 0;
1028
1029     /* extract hostname and port */
1030     url_split(NULL, 0, NULL, 0,
1031               host, sizeof(host), &port, path, sizeof(path), s->filename);
1032     if (port < 0)
1033         port = RTSP_DEFAULT_PORT;
1034
1035     /* search for options */
1036     option_list = strchr(path, '?');
1037     if (option_list) {
1038         /* remove the options from the path */
1039         *option_list++ = 0;
1040         while(option_list) {
1041             /* move the option pointer */
1042             option = option_list;
1043             option_list = strchr(option_list, '&');
1044             if (option_list)
1045                 *(option_list++) = 0;
1046             /* handle the options */
1047             if (strcmp(option, "udp") == 0)
1048                 protocol_mask = (1<< RTSP_PROTOCOL_RTP_UDP);
1049             else if (strcmp(option, "multicast") == 0)
1050                 protocol_mask = (1<< RTSP_PROTOCOL_RTP_UDP_MULTICAST);
1051             else if (strcmp(option, "tcp") == 0)
1052                 protocol_mask = (1<< RTSP_PROTOCOL_RTP_TCP);
1053         }
1054     }
1055
1056     if (!protocol_mask)
1057         protocol_mask = (1 << RTSP_PROTOCOL_RTP_LAST) - 1;
1058
1059     /* open the tcp connexion */
1060     snprintf(tcpname, sizeof(tcpname), "tcp://%s:%d", host, port);
1061     if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0)
1062         return AVERROR(EIO);
1063     rt->rtsp_hd = rtsp_hd;
1064     rt->seq = 0;
1065
1066     /* describe the stream */
1067     snprintf(cmd, sizeof(cmd),
1068              "DESCRIBE %s RTSP/1.0\r\n"
1069              "Accept: application/sdp\r\n",
1070              s->filename);
1071     rtsp_send_cmd(s, cmd, reply, &content);
1072     if (!content) {
1073         err = AVERROR_INVALIDDATA;
1074         goto fail;
1075     }
1076     if (reply->status_code != RTSP_STATUS_OK) {
1077         err = AVERROR_INVALIDDATA;
1078         goto fail;
1079     }
1080
1081     /* now we got the SDP description, we parse it */
1082     ret = sdp_parse(s, (const char *)content);
1083     av_freep(&content);
1084     if (ret < 0) {
1085         err = AVERROR_INVALIDDATA;
1086         goto fail;
1087     }
1088
1089     do {
1090         int protocol = ff_log2_tab[protocol_mask & ~(protocol_mask - 1)];
1091
1092         err = make_setup_request(s, host, port, protocol);
1093         if (err < 0)
1094             goto fail;
1095         protocol_mask &= ~(1 << protocol);
1096         if (protocol_mask == 0 && err == 1) {
1097             err = AVERROR(FF_NETERROR(EPROTONOSUPPORT));
1098             goto fail;
1099         }
1100     } while (err);
1101
1102     rt->state = RTSP_STATE_IDLE;
1103     rt->seek_timestamp = 0; /* default is to start stream at position
1104                                zero */
1105     if (ap->initial_pause) {
1106         /* do not start immediately */
1107     } else {
1108         if (rtsp_read_play(s) < 0) {
1109             err = AVERROR_INVALIDDATA;
1110             goto fail;
1111         }
1112     }
1113     return 0;
1114  fail:
1115     rtsp_close_streams(rt);
1116     av_freep(&content);
1117     url_close(rt->rtsp_hd);
1118     return err;
1119 }
1120
1121 static int tcp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
1122                            uint8_t *buf, int buf_size)
1123 {
1124     RTSPState *rt = s->priv_data;
1125     int id, len, i, ret;
1126     RTSPStream *rtsp_st;
1127
1128 #ifdef DEBUG_RTP_TCP
1129     printf("tcp_read_packet:\n");
1130 #endif
1131  redo:
1132     for(;;) {
1133         ret = url_readbuf(rt->rtsp_hd, buf, 1);
1134 #ifdef DEBUG_RTP_TCP
1135         printf("ret=%d c=%02x [%c]\n", ret, buf[0], buf[0]);
1136 #endif
1137         if (ret != 1)
1138             return -1;
1139         if (buf[0] == '$')
1140             break;
1141     }
1142     ret = url_readbuf(rt->rtsp_hd, buf, 3);
1143     if (ret != 3)
1144         return -1;
1145     id = buf[0];
1146     len = AV_RB16(buf + 1);
1147 #ifdef DEBUG_RTP_TCP
1148     printf("id=%d len=%d\n", id, len);
1149 #endif
1150     if (len > buf_size || len < 12)
1151         goto redo;
1152     /* get the data */
1153     ret = url_readbuf(rt->rtsp_hd, buf, len);
1154     if (ret != len)
1155         return -1;
1156
1157     /* find the matching stream */
1158     for(i = 0; i < rt->nb_rtsp_streams; i++) {
1159         rtsp_st = rt->rtsp_streams[i];
1160         if (id >= rtsp_st->interleaved_min &&
1161             id <= rtsp_st->interleaved_max)
1162             goto found;
1163     }
1164     goto redo;
1165  found:
1166     *prtsp_st = rtsp_st;
1167     return len;
1168 }
1169
1170 static int udp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st,
1171                            uint8_t *buf, int buf_size)
1172 {
1173     RTSPState *rt = s->priv_data;
1174     RTSPStream *rtsp_st;
1175     fd_set rfds;
1176     int fd1, fd2, fd_max, n, i, ret;
1177     struct timeval tv;
1178
1179     for(;;) {
1180         if (url_interrupt_cb())
1181             return AVERROR(EINTR);
1182         FD_ZERO(&rfds);
1183         fd_max = -1;
1184         for(i = 0; i < rt->nb_rtsp_streams; i++) {
1185             rtsp_st = rt->rtsp_streams[i];
1186             /* currently, we cannot probe RTCP handle because of blocking restrictions */
1187             rtp_get_file_handles(rtsp_st->rtp_handle, &fd1, &fd2);
1188             if (fd1 > fd_max)
1189                 fd_max = fd1;
1190             FD_SET(fd1, &rfds);
1191         }
1192         tv.tv_sec = 0;
1193         tv.tv_usec = 100 * 1000;
1194         n = select(fd_max + 1, &rfds, NULL, NULL, &tv);
1195         if (n > 0) {
1196             for(i = 0; i < rt->nb_rtsp_streams; i++) {
1197                 rtsp_st = rt->rtsp_streams[i];
1198                 rtp_get_file_handles(rtsp_st->rtp_handle, &fd1, &fd2);
1199                 if (FD_ISSET(fd1, &rfds)) {
1200                     ret = url_read(rtsp_st->rtp_handle, buf, buf_size);
1201                     if (ret > 0) {
1202                         *prtsp_st = rtsp_st;
1203                         return ret;
1204                     }
1205                 }
1206             }
1207         }
1208     }
1209 }
1210
1211 static int rtsp_read_packet(AVFormatContext *s,
1212                             AVPacket *pkt)
1213 {
1214     RTSPState *rt = s->priv_data;
1215     RTSPStream *rtsp_st;
1216     int ret, len;
1217     uint8_t buf[RTP_MAX_PACKET_LENGTH];
1218
1219     /* get next frames from the same RTP packet */
1220     if (rt->cur_rtp) {
1221         ret = rtp_parse_packet(rt->cur_rtp, pkt, NULL, 0);
1222         if (ret == 0) {
1223             rt->cur_rtp = NULL;
1224             return 0;
1225         } else if (ret == 1) {
1226             return 0;
1227         } else {
1228             rt->cur_rtp = NULL;
1229         }
1230     }
1231
1232     /* read next RTP packet */
1233  redo:
1234     switch(rt->protocol) {
1235     default:
1236     case RTSP_PROTOCOL_RTP_TCP:
1237         len = tcp_read_packet(s, &rtsp_st, buf, sizeof(buf));
1238         break;
1239     case RTSP_PROTOCOL_RTP_UDP:
1240     case RTSP_PROTOCOL_RTP_UDP_MULTICAST:
1241         len = udp_read_packet(s, &rtsp_st, buf, sizeof(buf));
1242         if (len >=0 && rtsp_st->rtp_ctx)
1243             rtp_check_and_send_back_rr(rtsp_st->rtp_ctx, len);
1244         break;
1245     }
1246     if (len < 0)
1247         return len;
1248     ret = rtp_parse_packet(rtsp_st->rtp_ctx, pkt, buf, len);
1249     if (ret < 0)
1250         goto redo;
1251     if (ret == 1) {
1252         /* more packets may follow, so we save the RTP context */
1253         rt->cur_rtp = rtsp_st->rtp_ctx;
1254     }
1255     return 0;
1256 }
1257
1258 static int rtsp_read_play(AVFormatContext *s)
1259 {
1260     RTSPState *rt = s->priv_data;
1261     RTSPHeader reply1, *reply = &reply1;
1262     char cmd[1024];
1263
1264     av_log(s, AV_LOG_DEBUG, "hello state=%d\n", rt->state);
1265
1266     if (rt->state == RTSP_STATE_PAUSED) {
1267         snprintf(cmd, sizeof(cmd),
1268                  "PLAY %s RTSP/1.0\r\n",
1269                  s->filename);
1270     } else {
1271         snprintf(cmd, sizeof(cmd),
1272                  "PLAY %s RTSP/1.0\r\n"
1273                  "Range: npt=%0.3f-\r\n",
1274                  s->filename,
1275                  (double)rt->seek_timestamp / AV_TIME_BASE);
1276     }
1277     rtsp_send_cmd(s, cmd, reply, NULL);
1278     if (reply->status_code != RTSP_STATUS_OK) {
1279         return -1;
1280     } else {
1281         rt->state = RTSP_STATE_PLAYING;
1282         return 0;
1283     }
1284 }
1285
1286 /* pause the stream */
1287 static int rtsp_read_pause(AVFormatContext *s)
1288 {
1289     RTSPState *rt = s->priv_data;
1290     RTSPHeader reply1, *reply = &reply1;
1291     char cmd[1024];
1292
1293     rt = s->priv_data;
1294
1295     if (rt->state != RTSP_STATE_PLAYING)
1296         return 0;
1297
1298     snprintf(cmd, sizeof(cmd),
1299              "PAUSE %s RTSP/1.0\r\n",
1300              s->filename);
1301     rtsp_send_cmd(s, cmd, reply, NULL);
1302     if (reply->status_code != RTSP_STATUS_OK) {
1303         return -1;
1304     } else {
1305         rt->state = RTSP_STATE_PAUSED;
1306         return 0;
1307     }
1308 }
1309
1310 static int rtsp_read_seek(AVFormatContext *s, int stream_index,
1311                           int64_t timestamp, int flags)
1312 {
1313     RTSPState *rt = s->priv_data;
1314
1315     rt->seek_timestamp = av_rescale_q(timestamp, s->streams[stream_index]->time_base, AV_TIME_BASE_Q);
1316     switch(rt->state) {
1317     default:
1318     case RTSP_STATE_IDLE:
1319         break;
1320     case RTSP_STATE_PLAYING:
1321         if (rtsp_read_play(s) != 0)
1322             return -1;
1323         break;
1324     case RTSP_STATE_PAUSED:
1325         rt->state = RTSP_STATE_IDLE;
1326         break;
1327     }
1328     return 0;
1329 }
1330
1331 static int rtsp_read_close(AVFormatContext *s)
1332 {
1333     RTSPState *rt = s->priv_data;
1334     RTSPHeader reply1, *reply = &reply1;
1335     char cmd[1024];
1336
1337 #if 0
1338     /* NOTE: it is valid to flush the buffer here */
1339     if (rt->protocol == RTSP_PROTOCOL_RTP_TCP) {
1340         url_fclose(&rt->rtsp_gb);
1341     }
1342 #endif
1343     snprintf(cmd, sizeof(cmd),
1344              "TEARDOWN %s RTSP/1.0\r\n",
1345              s->filename);
1346     rtsp_send_cmd(s, cmd, reply, NULL);
1347
1348     rtsp_close_streams(rt);
1349     url_close(rt->rtsp_hd);
1350     return 0;
1351 }
1352
1353 #ifdef CONFIG_RTSP_DEMUXER
1354 AVInputFormat rtsp_demuxer = {
1355     "rtsp",
1356     NULL_IF_CONFIG_SMALL("RTSP input format"),
1357     sizeof(RTSPState),
1358     rtsp_probe,
1359     rtsp_read_header,
1360     rtsp_read_packet,
1361     rtsp_read_close,
1362     rtsp_read_seek,
1363     .flags = AVFMT_NOFILE,
1364     .read_play = rtsp_read_play,
1365     .read_pause = rtsp_read_pause,
1366 };
1367 #endif
1368
1369 static int sdp_probe(AVProbeData *p1)
1370 {
1371     const char *p = p1->buf, *p_end = p1->buf + p1->buf_size;
1372
1373     /* we look for a line beginning "c=IN IP4" */
1374     while (p < p_end && *p != '\0') {
1375         if (p + sizeof("c=IN IP4") - 1 < p_end && av_strstart(p, "c=IN IP4", NULL))
1376             return AVPROBE_SCORE_MAX / 2;
1377
1378         while(p < p_end - 1 && *p != '\n') p++;
1379         if (++p >= p_end)
1380             break;
1381         if (*p == '\r')
1382             p++;
1383     }
1384     return 0;
1385 }
1386
1387 #define SDP_MAX_SIZE 8192
1388
1389 static int sdp_read_header(AVFormatContext *s,
1390                            AVFormatParameters *ap)
1391 {
1392     RTSPState *rt = s->priv_data;
1393     RTSPStream *rtsp_st;
1394     int size, i, err;
1395     char *content;
1396     char url[1024];
1397     AVStream *st;
1398
1399     /* read the whole sdp file */
1400     /* XXX: better loading */
1401     content = av_malloc(SDP_MAX_SIZE);
1402     size = get_buffer(s->pb, content, SDP_MAX_SIZE - 1);
1403     if (size <= 0) {
1404         av_free(content);
1405         return AVERROR_INVALIDDATA;
1406     }
1407     content[size] ='\0';
1408
1409     sdp_parse(s, content);
1410     av_free(content);
1411
1412     /* open each RTP stream */
1413     for(i=0;i<rt->nb_rtsp_streams;i++) {
1414         rtsp_st = rt->rtsp_streams[i];
1415
1416         snprintf(url, sizeof(url), "rtp://%s:%d?localport=%d&ttl=%d",
1417                  inet_ntoa(rtsp_st->sdp_ip),
1418                  rtsp_st->sdp_port,
1419                  rtsp_st->sdp_port,
1420                  rtsp_st->sdp_ttl);
1421         if (url_open(&rtsp_st->rtp_handle, url, URL_RDWR) < 0) {
1422             err = AVERROR_INVALIDDATA;
1423             goto fail;
1424         }
1425         /* open the RTP context */
1426         st = NULL;
1427         if (rtsp_st->stream_index >= 0)
1428             st = s->streams[rtsp_st->stream_index];
1429         if (!st)
1430             s->ctx_flags |= AVFMTCTX_NOHEADER;
1431         rtsp_st->rtp_ctx = rtp_parse_open(s, st, rtsp_st->rtp_handle, rtsp_st->sdp_payload_type, &rtsp_st->rtp_payload_data);
1432         if (!rtsp_st->rtp_ctx) {
1433             err = AVERROR(ENOMEM);
1434             goto fail;
1435         } else {
1436             if(rtsp_st->dynamic_handler) {
1437                 rtsp_st->rtp_ctx->dynamic_protocol_context= rtsp_st->dynamic_protocol_context;
1438                 rtsp_st->rtp_ctx->parse_packet= rtsp_st->dynamic_handler->parse_packet;
1439             }
1440         }
1441     }
1442     return 0;
1443  fail:
1444     rtsp_close_streams(rt);
1445     return err;
1446 }
1447
1448 static int sdp_read_packet(AVFormatContext *s,
1449                             AVPacket *pkt)
1450 {
1451     return rtsp_read_packet(s, pkt);
1452 }
1453
1454 static int sdp_read_close(AVFormatContext *s)
1455 {
1456     RTSPState *rt = s->priv_data;
1457     rtsp_close_streams(rt);
1458     return 0;
1459 }
1460
1461 #ifdef CONFIG_SDP_DEMUXER
1462 AVInputFormat sdp_demuxer = {
1463     "sdp",
1464     NULL_IF_CONFIG_SMALL("SDP"),
1465     sizeof(RTSPState),
1466     sdp_probe,
1467     sdp_read_header,
1468     sdp_read_packet,
1469     sdp_read_close,
1470 };
1471 #endif
1472
1473 #ifdef CONFIG_REDIR_DEMUXER
1474 /* dummy redirector format (used directly in av_open_input_file now) */
1475 static int redir_probe(AVProbeData *pd)
1476 {
1477     const char *p;
1478     p = pd->buf;
1479     while (redir_isspace(*p))
1480         p++;
1481     if (av_strstart(p, "http://", NULL) ||
1482         av_strstart(p, "rtsp://", NULL))
1483         return AVPROBE_SCORE_MAX;
1484     return 0;
1485 }
1486
1487 static int redir_read_header(AVFormatContext *s, AVFormatParameters *ap)
1488 {
1489     char buf[4096], *q;
1490     int c;
1491     AVFormatContext *ic = NULL;
1492     ByteIOContext *f = s->pb;
1493
1494     /* parse each URL and try to open it */
1495     c = url_fgetc(f);
1496     while (c != URL_EOF) {
1497         /* skip spaces */
1498         for(;;) {
1499             if (!redir_isspace(c))
1500                 break;
1501             c = url_fgetc(f);
1502         }
1503         if (c == URL_EOF)
1504             break;
1505         /* record url */
1506         q = buf;
1507         for(;;) {
1508             if (c == URL_EOF || redir_isspace(c))
1509                 break;
1510             if ((q - buf) < sizeof(buf) - 1)
1511                 *q++ = c;
1512             c = url_fgetc(f);
1513         }
1514         *q = '\0';
1515         //printf("URL='%s'\n", buf);
1516         /* try to open the media file */
1517         if (av_open_input_file(&ic, buf, NULL, 0, NULL) == 0)
1518             break;
1519     }
1520     if (!ic)
1521         return AVERROR(EIO);
1522
1523     *s = *ic;
1524     url_fclose(f);
1525
1526     return 0;
1527 }
1528
1529 AVInputFormat redir_demuxer = {
1530     "redir",
1531     NULL_IF_CONFIG_SMALL("Redirector format"),
1532     0,
1533     redir_probe,
1534     redir_read_header,
1535     NULL,
1536     NULL,
1537 };
1538 #endif