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