3 * Copyright (c) 2002 Fabrice Bellard.
5 * This file is part of FFmpeg.
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.
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.
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
22 /* needed by inet_aton() */
25 #include "libavutil/avstring.h"
29 #ifdef HAVE_SYS_SELECT_H
30 #include <sys/select.h>
36 #include "rtp_internal.h"
40 //#define DEBUG_RTP_TCP
42 static int rtsp_read_play(AVFormatContext
*s
);
44 /* XXX: currently, the only way to change the protocols consists in
45 changing this variable */
47 #if LIBAVFORMAT_VERSION_INT < (53 << 16)
48 int rtsp_default_protocols
= (1 << RTSP_LOWER_TRANSPORT_UDP
);
51 static int rtsp_probe(AVProbeData
*p
)
53 if (av_strstart(p
->filename
, "rtsp:", NULL
))
54 return AVPROBE_SCORE_MAX
;
58 static int redir_isspace(int c
)
60 return c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r';
63 static void skip_spaces(const char **pp
)
67 while (redir_isspace(*p
))
72 static void get_word_sep(char *buf
, int buf_size
, const char *sep
,
83 while (!strchr(sep
, *p
) && *p
!= '\0') {
84 if ((q
- buf
) < buf_size
- 1)
93 static void get_word(char *buf
, int buf_size
, const char **pp
)
101 while (!redir_isspace(*p
) && *p
!= '\0') {
102 if ((q
- buf
) < buf_size
- 1)
111 /* parse the rtpmap description: <codec_name>/<clock_rate>[/<other
113 static int sdp_parse_rtpmap(AVCodecContext
*codec
, RTSPStream
*rtsp_st
, int payload_type
, const char *p
)
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
;
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
;
130 rtsp_st
->dynamic_protocol_context
= handler
->open();
134 handler
= handler
->next
;
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
);
142 c
= avcodec_find_decoder(codec
->codec_id
);
146 c_name
= (char *)NULL
;
149 get_word_sep(buf
, sizeof(buf
), "/", &p
);
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
;
157 codec
->sample_rate
= i
;
158 get_word_sep(buf
, sizeof(buf
), "/", &p
);
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)
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
);
168 case CODEC_TYPE_VIDEO
:
169 av_log(codec
, AV_LOG_DEBUG
, " video codec set to : %s\n", c_name
);
180 /* return the length and optionnaly the data */
181 static int hex_to_data(uint8_t *data
, const char *p
)
191 c
= toupper((unsigned char)*p
++);
192 if (c
>= '0' && c
<= '9')
194 else if (c
>= 'A' && c
<= 'F')
209 static void sdp_parse_fmtp_config(AVCodecContext
*codec
, char *attr
, char *value
)
211 switch (codec
->codec_id
) {
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
)
220 codec
->extradata_size
= len
;
221 hex_to_data(codec
->extradata
, value
);
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
[]=
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
)},
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.
253 int rtsp_next_attr_and_value(const char **p
, char *attr
, int attr_size
, char *value
, int value_size
)
258 get_word_sep(attr
, attr_size
, "=", p
);
261 get_word_sep(value
, value_size
, ";", p
);
269 /* parse a SDP line and save stream attributes */
270 static void sdp_parse_fmtp(AVStream
*st
, const char *p
)
276 RTSPStream
*rtsp_st
= st
->priv_data
;
277 AVCodecContext
*codec
= st
->codec
;
278 RTPPayloadData
*rtp_payload_data
= &rtsp_st
->rtp_payload_data
;
280 /* loop on each attribute */
281 while(rtsp_next_attr_and_value(&p
, attr
, sizeof(attr
), value
, sizeof(value
)))
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
);
297 /** Parse a string \p in the form of Range:npt=xx-xx, and determine the start
299 * Used for seeking in the rtp stream.
301 static void rtsp_parse_range_npt(const char *p
, int64_t *start
, int64_t *end
)
306 if (!av_stristart(p
, "npt=", &p
))
309 *start
= AV_NOPTS_VALUE
;
310 *end
= AV_NOPTS_VALUE
;
312 get_word_sep(buf
, sizeof(buf
), "-", &p
);
313 *start
= parse_date(buf
, 1);
316 get_word_sep(buf
, sizeof(buf
), "-", &p
);
317 *end
= parse_date(buf
, 1);
319 // av_log(NULL, AV_LOG_DEBUG, "Range Start: %lld\n", *start);
320 // av_log(NULL, AV_LOG_DEBUG, "Range End: %lld\n", *end);
323 typedef struct SDPParseState
{
325 struct in_addr default_ip
;
329 static void sdp_parse_line(AVFormatContext
*s
, SDPParseState
*s1
,
330 int letter
, const char *buf
)
332 RTSPState
*rt
= s
->priv_data
;
333 char buf1
[64], st_type
[64];
335 enum CodecType codec_type
;
339 struct in_addr sdp_ip
;
343 printf("sdp: %c='%s'\n", letter
, buf
);
349 get_word(buf1
, sizeof(buf1
), &p
);
350 if (strcmp(buf1
, "IN") != 0)
352 get_word(buf1
, sizeof(buf1
), &p
);
353 if (strcmp(buf1
, "IP4") != 0)
355 get_word_sep(buf1
, sizeof(buf1
), "/", &p
);
356 if (inet_aton(buf1
, &sdp_ip
) == 0)
361 get_word_sep(buf1
, sizeof(buf1
), "/", &p
);
364 if (s
->nb_streams
== 0) {
365 s1
->default_ip
= sdp_ip
;
366 s1
->default_ttl
= ttl
;
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
;
375 av_strlcpy(s
->title
, p
, sizeof(s
->title
));
378 if (s
->nb_streams
== 0) {
379 av_strlcpy(s
->comment
, p
, sizeof(s
->comment
));
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
;
393 rtsp_st
= av_mallocz(sizeof(RTSPStream
));
396 rtsp_st
->stream_index
= -1;
397 dynarray_add(&rt
->rtsp_streams
, &rt
->nb_rtsp_streams
, rtsp_st
);
399 rtsp_st
->sdp_ip
= s1
->default_ip
;
400 rtsp_st
->sdp_ttl
= s1
->default_ttl
;
402 get_word(buf1
, sizeof(buf1
), &p
); /* port */
403 rtsp_st
->sdp_port
= atoi(buf1
);
405 get_word(buf1
, sizeof(buf1
), &p
); /* protocol (ignored) */
407 /* XXX: handle list of formats */
408 get_word(buf1
, sizeof(buf1
), &p
); /* format list */
409 rtsp_st
->sdp_payload_type
= atoi(buf1
);
411 if (!strcmp(ff_rtp_enc_name(rtsp_st
->sdp_payload_type
), "MP2T")) {
412 /* no corresponding stream */
414 st
= av_new_stream(s
, 0);
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
);
425 /* put a default control url */
426 av_strlcpy(rtsp_st
->control_url
, s
->filename
, sizeof(rtsp_st
->control_url
));
429 if (av_strstart(p
, "control:", &p
) && s
->nb_streams
> 0) {
431 /* get the control url */
432 st
= s
->streams
[s
->nb_streams
- 1];
433 rtsp_st
= st
->priv_data
;
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
));
442 av_strlcpy(rtsp_st
->control_url
, p
, sizeof(rtsp_st
->control_url
));
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
++) {
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
);
464 sdp_parse_fmtp(st
, p
);
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
++) {
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
);
481 } else if(av_strstart(p
, "range:", &p
)) {
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
)) {
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
);
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
);
505 static int sdp_parse(AVFormatContext
*s
, const char *content
)
509 /* Some SDP lines, particularly for Realmedia or ASF RTSP streams,
510 * contain long SDP lines containing complete ASF Headers (several
511 * kB) or arrays of MDPR (RM stream descriptor) headers plus
512 * "rulebooks" describing their properties. Therefore, the SDP line
513 * buffer is large. */
515 SDPParseState sdp_parse_state
, *s1
= &sdp_parse_state
;
517 memset(s1
, 0, sizeof(SDPParseState
));
528 /* get the content */
530 while (*p
!= '\n' && *p
!= '\r' && *p
!= '\0') {
531 if ((q
- buf
) < sizeof(buf
) - 1)
536 sdp_parse_line(s
, s1
, letter
, buf
);
538 while (*p
!= '\n' && *p
!= '\0')
546 static void rtsp_parse_range(int *min_ptr
, int *max_ptr
, const char **pp
)
553 v
= strtol(p
, (char **)&p
, 10);
557 v
= strtol(p
, (char **)&p
, 10);
566 /* XXX: only one transport specification is parsed */
567 static void rtsp_parse_transport(RTSPHeader
*reply
, const char *p
)
569 char transport_protocol
[16];
571 char lower_transport
[16];
573 RTSPTransportField
*th
;
576 reply
->nb_transports
= 0;
583 th
= &reply
->transports
[reply
->nb_transports
];
585 get_word_sep(transport_protocol
, sizeof(transport_protocol
),
589 if (!strcasecmp (transport_protocol
, "rtp")) {
590 get_word_sep(profile
, sizeof(profile
), "/;,", &p
);
591 lower_transport
[0] = '\0';
592 /* rtp/avp/<protocol> */
595 get_word_sep(lower_transport
, sizeof(lower_transport
),
598 th
->transport
= RTSP_TRANSPORT_RTP
;
599 } else if (!strcasecmp (transport_protocol
, "x-pn-tng") ||
600 !strcasecmp (transport_protocol
, "x-real-rdt")) {
601 /* x-pn-tng/<protocol> */
602 get_word_sep(lower_transport
, sizeof(lower_transport
), "/;,", &p
);
604 th
->transport
= RTSP_TRANSPORT_RDT
;
606 if (!strcasecmp(lower_transport
, "TCP"))
607 th
->lower_transport
= RTSP_LOWER_TRANSPORT_TCP
;
609 th
->lower_transport
= RTSP_LOWER_TRANSPORT_UDP
;
613 /* get each parameter */
614 while (*p
!= '\0' && *p
!= ',') {
615 get_word_sep(parameter
, sizeof(parameter
), "=;,", &p
);
616 if (!strcmp(parameter
, "port")) {
619 rtsp_parse_range(&th
->port_min
, &th
->port_max
, &p
);
621 } else if (!strcmp(parameter
, "client_port")) {
624 rtsp_parse_range(&th
->client_port_min
,
625 &th
->client_port_max
, &p
);
627 } else if (!strcmp(parameter
, "server_port")) {
630 rtsp_parse_range(&th
->server_port_min
,
631 &th
->server_port_max
, &p
);
633 } else if (!strcmp(parameter
, "interleaved")) {
636 rtsp_parse_range(&th
->interleaved_min
,
637 &th
->interleaved_max
, &p
);
639 } else if (!strcmp(parameter
, "multicast")) {
640 if (th
->lower_transport
== RTSP_LOWER_TRANSPORT_UDP
)
641 th
->lower_transport
= RTSP_LOWER_TRANSPORT_UDP_MULTICAST
;
642 } else if (!strcmp(parameter
, "ttl")) {
645 th
->ttl
= strtol(p
, (char **)&p
, 10);
647 } else if (!strcmp(parameter
, "destination")) {
648 struct in_addr ipaddr
;
652 get_word_sep(buf
, sizeof(buf
), ";,", &p
);
653 if (inet_aton(buf
, &ipaddr
))
654 th
->destination
= ntohl(ipaddr
.s_addr
);
657 while (*p
!= ';' && *p
!= '\0' && *p
!= ',')
665 reply
->nb_transports
++;
669 void rtsp_parse_line(RTSPHeader
*reply
, const char *buf
)
673 /* NOTE: we do case independent match for broken servers */
675 if (av_stristart(p
, "Session:", &p
)) {
676 get_word_sep(reply
->session_id
, sizeof(reply
->session_id
), ";", &p
);
677 } else if (av_stristart(p
, "Content-Length:", &p
)) {
678 reply
->content_length
= strtol(p
, NULL
, 10);
679 } else if (av_stristart(p
, "Transport:", &p
)) {
680 rtsp_parse_transport(reply
, p
);
681 } else if (av_stristart(p
, "CSeq:", &p
)) {
682 reply
->seq
= strtol(p
, NULL
, 10);
683 } else if (av_stristart(p
, "Range:", &p
)) {
684 rtsp_parse_range_npt(p
, &reply
->range_start
, &reply
->range_end
);
685 } else if (av_stristart(p
, "RealChallenge1:", &p
)) {
687 av_strlcpy(reply
->real_challenge
, p
, sizeof(reply
->real_challenge
));
688 } else if (av_stristart(p
, "Server:", &p
)) {
690 av_strlcpy(reply
->server
, p
, sizeof(reply
->server
));
694 static int url_readbuf(URLContext
*h
, unsigned char *buf
, int size
)
700 ret
= url_read(h
, buf
+len
, size
-len
);
708 /* skip a RTP/TCP interleaved packet */
709 static void rtsp_skip_packet(AVFormatContext
*s
)
711 RTSPState
*rt
= s
->priv_data
;
715 ret
= url_readbuf(rt
->rtsp_hd
, buf
, 3);
718 len
= AV_RB16(buf
+ 1);
720 printf("skipping RTP packet len=%d\n", len
);
725 if (len1
> sizeof(buf
))
727 ret
= url_readbuf(rt
->rtsp_hd
, buf
, len1
);
734 static void rtsp_send_cmd(AVFormatContext
*s
,
735 const char *cmd
, RTSPHeader
*reply
,
736 unsigned char **content_ptr
)
738 RTSPState
*rt
= s
->priv_data
;
739 char buf
[4096], buf1
[1024], *q
;
742 int content_length
, line_count
;
743 unsigned char *content
= NULL
;
745 memset(reply
, 0, sizeof(RTSPHeader
));
748 av_strlcpy(buf
, cmd
, sizeof(buf
));
749 snprintf(buf1
, sizeof(buf1
), "CSeq: %d\r\n", rt
->seq
);
750 av_strlcat(buf
, buf1
, sizeof(buf
));
751 if (rt
->session_id
[0] != '\0' && !strstr(cmd
, "\nIf-Match:")) {
752 snprintf(buf1
, sizeof(buf1
), "Session: %s\r\n", rt
->session_id
);
753 av_strlcat(buf
, buf1
, sizeof(buf
));
755 av_strlcat(buf
, "\r\n", sizeof(buf
));
757 printf("Sending:\n%s--\n", buf
);
759 url_write(rt
->rtsp_hd
, buf
, strlen(buf
));
761 /* parse reply (XXX: use buffers) */
763 rt
->last_reply
[0] = '\0';
767 if (url_readbuf(rt
->rtsp_hd
, &ch
, 1) != 1)
772 /* XXX: only parse it if first char on line ? */
774 } else if (ch
!= '\r') {
775 if ((q
- buf
) < sizeof(buf
) - 1)
781 printf("line='%s'\n", buf
);
783 /* test if last line */
787 if (line_count
== 0) {
789 get_word(buf1
, sizeof(buf1
), &p
);
790 get_word(buf1
, sizeof(buf1
), &p
);
791 reply
->status_code
= atoi(buf1
);
793 rtsp_parse_line(reply
, p
);
794 av_strlcat(rt
->last_reply
, p
, sizeof(rt
->last_reply
));
795 av_strlcat(rt
->last_reply
, "\n", sizeof(rt
->last_reply
));
800 if (rt
->session_id
[0] == '\0' && reply
->session_id
[0] != '\0')
801 av_strlcpy(rt
->session_id
, reply
->session_id
, sizeof(rt
->session_id
));
803 content_length
= reply
->content_length
;
804 if (content_length
> 0) {
805 /* leave some room for a trailing '\0' (useful for simple parsing) */
806 content
= av_malloc(content_length
+ 1);
807 (void)url_readbuf(rt
->rtsp_hd
, content
, content_length
);
808 content
[content_length
] = '\0';
811 *content_ptr
= content
;
817 /* close and free RTSP streams */
818 static void rtsp_close_streams(RTSPState
*rt
)
823 for(i
=0;i
<rt
->nb_rtsp_streams
;i
++) {
824 rtsp_st
= rt
->rtsp_streams
[i
];
826 if (rtsp_st
->tx_ctx
) {
827 if (rt
->transport
== RTSP_TRANSPORT_RDT
)
828 ff_rdt_parse_close(rtsp_st
->tx_ctx
);
830 rtp_parse_close(rtsp_st
->tx_ctx
);
832 if (rtsp_st
->rtp_handle
)
833 url_close(rtsp_st
->rtp_handle
);
834 if (rtsp_st
->dynamic_handler
&& rtsp_st
->dynamic_protocol_context
)
835 rtsp_st
->dynamic_handler
->close(rtsp_st
->dynamic_protocol_context
);
838 av_free(rt
->rtsp_streams
);
842 rtsp_open_transport_ctx(AVFormatContext
*s
, RTSPStream
*rtsp_st
)
844 RTSPState
*rt
= s
->priv_data
;
847 /* open the RTP context */
848 if (rtsp_st
->stream_index
>= 0)
849 st
= s
->streams
[rtsp_st
->stream_index
];
851 s
->ctx_flags
|= AVFMTCTX_NOHEADER
;
853 if (rt
->transport
== RTSP_TRANSPORT_RDT
)
854 rtsp_st
->tx_ctx
= ff_rdt_parse_open(s
, st
->index
,
855 rtsp_st
->dynamic_protocol_context
,
856 rtsp_st
->dynamic_handler
);
858 rtsp_st
->tx_ctx
= rtp_parse_open(s
, st
, rtsp_st
->rtp_handle
,
859 rtsp_st
->sdp_payload_type
,
860 &rtsp_st
->rtp_payload_data
);
862 if (!rtsp_st
->tx_ctx
) {
863 return AVERROR(ENOMEM
);
864 } else if (rt
->transport
!= RTSP_TRANSPORT_RDT
) {
865 if(rtsp_st
->dynamic_handler
) {
866 rtp_parse_set_dynamic_protocol(rtsp_st
->tx_ctx
,
867 rtsp_st
->dynamic_protocol_context
,
868 rtsp_st
->dynamic_handler
);
876 * @returns 0 on success, <0 on error, 1 if protocol is unavailable.
879 make_setup_request (AVFormatContext
*s
, const char *host
, int port
,
880 int lower_transport
, const char *real_challenge
)
882 RTSPState
*rt
= s
->priv_data
;
885 RTSPHeader reply1
, *reply
= &reply1
;
887 const char *trans_pref
;
889 if (rt
->transport
== RTSP_TRANSPORT_RDT
)
890 trans_pref
= "x-pn-tng";
892 trans_pref
= "RTP/AVP";
894 /* for each stream, make the setup request */
895 /* XXX: we assume the same server is used for the control of each
898 for(j
= RTSP_RTP_PORT_MIN
, i
= 0; i
< rt
->nb_rtsp_streams
; ++i
) {
899 char transport
[2048];
901 rtsp_st
= rt
->rtsp_streams
[i
];
904 if (lower_transport
== RTSP_LOWER_TRANSPORT_UDP
) {
907 /* first try in specified port range */
908 if (RTSP_RTP_PORT_MIN
!= 0) {
909 while(j
<= RTSP_RTP_PORT_MAX
) {
910 snprintf(buf
, sizeof(buf
), "rtp://%s?localport=%d", host
, j
);
911 j
+= 2; /* we will use two port by rtp stream (rtp and rtcp) */
912 if (url_open(&rtsp_st
->rtp_handle
, buf
, URL_RDWR
) == 0) {
918 /* then try on any port
919 ** if (url_open(&rtsp_st->rtp_handle, "rtp://", URL_RDONLY) < 0) {
920 ** err = AVERROR_INVALIDDATA;
926 port
= rtp_get_local_port(rtsp_st
->rtp_handle
);
927 snprintf(transport
, sizeof(transport
) - 1,
928 "%s/UDP;", trans_pref
);
929 if (rt
->server_type
!= RTSP_SERVER_REAL
)
930 av_strlcat(transport
, "unicast;", sizeof(transport
));
931 av_strlcatf(transport
, sizeof(transport
),
932 "client_port=%d", port
);
933 if (rt
->transport
== RTSP_TRANSPORT_RTP
)
934 av_strlcatf(transport
, sizeof(transport
), "-%d", port
+ 1);
938 else if (lower_transport
== RTSP_LOWER_TRANSPORT_TCP
) {
939 snprintf(transport
, sizeof(transport
) - 1,
940 "%s/TCP", trans_pref
);
943 else if (lower_transport
== RTSP_LOWER_TRANSPORT_UDP_MULTICAST
) {
944 snprintf(transport
, sizeof(transport
) - 1,
945 "%s/UDP;multicast", trans_pref
);
947 if (rt
->server_type
== RTSP_SERVER_REAL
)
948 av_strlcat(transport
, ";mode=play", sizeof(transport
));
949 snprintf(cmd
, sizeof(cmd
),
950 "SETUP %s RTSP/1.0\r\n"
952 rtsp_st
->control_url
, transport
);
953 if (i
== 0 && rt
->server_type
== RTSP_SERVER_REAL
) {
954 char real_res
[41], real_csum
[9];
955 ff_rdt_calc_response_and_checksum(real_res
, real_csum
,
957 av_strlcatf(cmd
, sizeof(cmd
),
959 "RealChallenge2: %s, sd=%s\r\n",
960 rt
->session_id
, real_res
, real_csum
);
962 rtsp_send_cmd(s
, cmd
, reply
, NULL
);
963 if (reply
->status_code
== 461 /* Unsupported protocol */ && i
== 0) {
966 } else if (reply
->status_code
!= RTSP_STATUS_OK
||
967 reply
->nb_transports
!= 1) {
968 err
= AVERROR_INVALIDDATA
;
972 /* XXX: same protocol for all streams is required */
974 if (reply
->transports
[0].lower_transport
!= rt
->lower_transport
||
975 reply
->transports
[0].transport
!= rt
->transport
) {
976 err
= AVERROR_INVALIDDATA
;
980 rt
->lower_transport
= reply
->transports
[0].lower_transport
;
981 rt
->transport
= reply
->transports
[0].transport
;
984 /* close RTP connection if not choosen */
985 if (reply
->transports
[0].lower_transport
!= RTSP_LOWER_TRANSPORT_UDP
&&
986 (lower_transport
== RTSP_LOWER_TRANSPORT_UDP
)) {
987 url_close(rtsp_st
->rtp_handle
);
988 rtsp_st
->rtp_handle
= NULL
;
991 switch(reply
->transports
[0].lower_transport
) {
992 case RTSP_LOWER_TRANSPORT_TCP
:
993 rtsp_st
->interleaved_min
= reply
->transports
[0].interleaved_min
;
994 rtsp_st
->interleaved_max
= reply
->transports
[0].interleaved_max
;
997 case RTSP_LOWER_TRANSPORT_UDP
:
1001 /* XXX: also use address if specified */
1002 snprintf(url
, sizeof(url
), "rtp://%s:%d",
1003 host
, reply
->transports
[0].server_port_min
);
1004 if (rtp_set_remote_url(rtsp_st
->rtp_handle
, url
) < 0) {
1005 err
= AVERROR_INVALIDDATA
;
1010 case RTSP_LOWER_TRANSPORT_UDP_MULTICAST
:
1015 in
.s_addr
= htonl(reply
->transports
[0].destination
);
1016 snprintf(url
, sizeof(url
), "rtp://%s:%d?ttl=%d",
1018 reply
->transports
[0].port_min
,
1019 reply
->transports
[0].ttl
);
1020 if (url_open(&rtsp_st
->rtp_handle
, url
, URL_RDWR
) < 0) {
1021 err
= AVERROR_INVALIDDATA
;
1028 if ((err
= rtsp_open_transport_ctx(s
, rtsp_st
)))
1032 if (rt
->server_type
== RTSP_SERVER_REAL
)
1033 rt
->need_subscription
= 1;
1038 for (i
=0; i
<rt
->nb_rtsp_streams
; i
++) {
1039 if (rt
->rtsp_streams
[i
]->rtp_handle
) {
1040 url_close(rt
->rtsp_streams
[i
]->rtp_handle
);
1041 rt
->rtsp_streams
[i
]->rtp_handle
= NULL
;
1047 static int rtsp_read_header(AVFormatContext
*s
,
1048 AVFormatParameters
*ap
)
1050 RTSPState
*rt
= s
->priv_data
;
1051 char host
[1024], path
[1024], tcpname
[1024], cmd
[2048], *option_list
, *option
;
1052 URLContext
*rtsp_hd
;
1054 RTSPHeader reply1
, *reply
= &reply1
;
1055 unsigned char *content
= NULL
;
1056 int lower_transport_mask
= 0;
1057 char real_challenge
[64];
1059 /* extract hostname and port */
1060 url_split(NULL
, 0, NULL
, 0,
1061 host
, sizeof(host
), &port
, path
, sizeof(path
), s
->filename
);
1063 port
= RTSP_DEFAULT_PORT
;
1065 /* search for options */
1066 option_list
= strchr(path
, '?');
1068 /* remove the options from the path */
1070 while(option_list
) {
1071 /* move the option pointer */
1072 option
= option_list
;
1073 option_list
= strchr(option_list
, '&');
1075 *(option_list
++) = 0;
1076 /* handle the options */
1077 if (strcmp(option
, "udp") == 0)
1078 lower_transport_mask
= (1<< RTSP_LOWER_TRANSPORT_UDP
);
1079 else if (strcmp(option
, "multicast") == 0)
1080 lower_transport_mask
= (1<< RTSP_LOWER_TRANSPORT_UDP_MULTICAST
);
1081 else if (strcmp(option
, "tcp") == 0)
1082 lower_transport_mask
= (1<< RTSP_LOWER_TRANSPORT_TCP
);
1086 if (!lower_transport_mask
)
1087 lower_transport_mask
= (1 << RTSP_LOWER_TRANSPORT_LAST
) - 1;
1089 /* open the tcp connexion */
1090 snprintf(tcpname
, sizeof(tcpname
), "tcp://%s:%d", host
, port
);
1091 if (url_open(&rtsp_hd
, tcpname
, URL_RDWR
) < 0)
1092 return AVERROR(EIO
);
1093 rt
->rtsp_hd
= rtsp_hd
;
1096 /* request options supported by the server; this also detects server type */
1097 for (rt
->server_type
= RTSP_SERVER_RTP
;;) {
1098 snprintf(cmd
, sizeof(cmd
),
1099 "OPTIONS %s RTSP/1.0\r\n", s
->filename
);
1100 if (rt
->server_type
== RTSP_SERVER_REAL
)
1103 * The following entries are required for proper
1104 * streaming from a Realmedia server. They are
1105 * interdependent in some way although we currently
1106 * don't quite understand how. Values were copied
1107 * from mplayer SVN r23589.
1108 * @param CompanyID is a 16-byte ID in base64
1109 * @param ClientChallenge is a 16-byte ID in hex
1111 "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
1112 "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
1113 "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
1114 "GUID: 00000000-0000-0000-0000-000000000000\r\n",
1116 rtsp_send_cmd(s
, cmd
, reply
, NULL
);
1117 if (reply
->status_code
!= RTSP_STATUS_OK
) {
1118 err
= AVERROR_INVALIDDATA
;
1122 /* detect server type if not standard-compliant RTP */
1123 if (rt
->server_type
!= RTSP_SERVER_REAL
&& reply
->real_challenge
[0]) {
1124 rt
->server_type
= RTSP_SERVER_REAL
;
1126 } else if (!strncasecmp(reply
->server
, "WMServer/", 9)) {
1127 rt
->server_type
= RTSP_SERVER_WMS
;
1128 } else if (rt
->server_type
== RTSP_SERVER_REAL
) {
1129 strcpy(real_challenge
, reply
->real_challenge
);
1134 /* describe the stream */
1135 snprintf(cmd
, sizeof(cmd
),
1136 "DESCRIBE %s RTSP/1.0\r\n"
1137 "Accept: application/sdp\r\n",
1139 if (rt
->server_type
== RTSP_SERVER_REAL
) {
1141 * The Require: attribute is needed for proper streaming from
1142 * Realmedia servers.
1145 "Require: com.real.retain-entity-for-setup\r\n",
1148 rtsp_send_cmd(s
, cmd
, reply
, &content
);
1150 err
= AVERROR_INVALIDDATA
;
1153 if (reply
->status_code
!= RTSP_STATUS_OK
) {
1154 err
= AVERROR_INVALIDDATA
;
1158 /* now we got the SDP description, we parse it */
1159 ret
= sdp_parse(s
, (const char *)content
);
1162 err
= AVERROR_INVALIDDATA
;
1167 int lower_transport
= ff_log2_tab
[lower_transport_mask
& ~(lower_transport_mask
- 1)];
1169 err
= make_setup_request(s
, host
, port
, lower_transport
,
1170 rt
->server_type
== RTSP_SERVER_REAL
?
1171 real_challenge
: NULL
);
1174 lower_transport_mask
&= ~(1 << lower_transport
);
1175 if (lower_transport_mask
== 0 && err
== 1) {
1176 err
= AVERROR(FF_NETERROR(EPROTONOSUPPORT
));
1181 rt
->state
= RTSP_STATE_IDLE
;
1182 rt
->seek_timestamp
= 0; /* default is to start stream at position
1184 if (ap
->initial_pause
) {
1185 /* do not start immediately */
1187 if (rtsp_read_play(s
) < 0) {
1188 err
= AVERROR_INVALIDDATA
;
1194 rtsp_close_streams(rt
);
1196 url_close(rt
->rtsp_hd
);
1200 static int tcp_read_packet(AVFormatContext
*s
, RTSPStream
**prtsp_st
,
1201 uint8_t *buf
, int buf_size
)
1203 RTSPState
*rt
= s
->priv_data
;
1204 int id
, len
, i
, ret
;
1205 RTSPStream
*rtsp_st
;
1207 #ifdef DEBUG_RTP_TCP
1208 printf("tcp_read_packet:\n");
1212 ret
= url_readbuf(rt
->rtsp_hd
, buf
, 1);
1213 #ifdef DEBUG_RTP_TCP
1214 printf("ret=%d c=%02x [%c]\n", ret
, buf
[0], buf
[0]);
1221 ret
= url_readbuf(rt
->rtsp_hd
, buf
, 3);
1225 len
= AV_RB16(buf
+ 1);
1226 #ifdef DEBUG_RTP_TCP
1227 printf("id=%d len=%d\n", id
, len
);
1229 if (len
> buf_size
|| len
< 12)
1232 ret
= url_readbuf(rt
->rtsp_hd
, buf
, len
);
1235 if (rt
->transport
== RTSP_TRANSPORT_RDT
&&
1236 ff_rdt_parse_header(buf
, len
, &id
, NULL
, NULL
, NULL
, NULL
) < 0)
1239 /* find the matching stream */
1240 for(i
= 0; i
< rt
->nb_rtsp_streams
; i
++) {
1241 rtsp_st
= rt
->rtsp_streams
[i
];
1242 if (id
>= rtsp_st
->interleaved_min
&&
1243 id
<= rtsp_st
->interleaved_max
)
1248 *prtsp_st
= rtsp_st
;
1252 static int udp_read_packet(AVFormatContext
*s
, RTSPStream
**prtsp_st
,
1253 uint8_t *buf
, int buf_size
)
1255 RTSPState
*rt
= s
->priv_data
;
1256 RTSPStream
*rtsp_st
;
1258 int fd1
, fd2
, fd_max
, n
, i
, ret
;
1262 if (url_interrupt_cb())
1263 return AVERROR(EINTR
);
1266 for(i
= 0; i
< rt
->nb_rtsp_streams
; i
++) {
1267 rtsp_st
= rt
->rtsp_streams
[i
];
1268 /* currently, we cannot probe RTCP handle because of blocking restrictions */
1269 rtp_get_file_handles(rtsp_st
->rtp_handle
, &fd1
, &fd2
);
1275 tv
.tv_usec
= 100 * 1000;
1276 n
= select(fd_max
+ 1, &rfds
, NULL
, NULL
, &tv
);
1278 for(i
= 0; i
< rt
->nb_rtsp_streams
; i
++) {
1279 rtsp_st
= rt
->rtsp_streams
[i
];
1280 rtp_get_file_handles(rtsp_st
->rtp_handle
, &fd1
, &fd2
);
1281 if (FD_ISSET(fd1
, &rfds
)) {
1282 ret
= url_read(rtsp_st
->rtp_handle
, buf
, buf_size
);
1284 *prtsp_st
= rtsp_st
;
1293 static int rtsp_read_packet(AVFormatContext
*s
,
1296 RTSPState
*rt
= s
->priv_data
;
1297 RTSPStream
*rtsp_st
;
1299 uint8_t buf
[10 * RTP_MAX_PACKET_LENGTH
];
1301 if (rt
->server_type
== RTSP_SERVER_REAL
) {
1303 RTSPHeader reply1
, *reply
= &reply1
;
1304 enum AVDiscard cache
[MAX_STREAMS
];
1307 for (i
= 0; i
< s
->nb_streams
; i
++)
1308 cache
[i
] = s
->streams
[i
]->discard
;
1310 if (!rt
->need_subscription
) {
1311 if (memcmp (cache
, rt
->real_setup_cache
,
1312 sizeof(enum AVDiscard
) * s
->nb_streams
)) {
1313 av_strlcatf(cmd
, sizeof(cmd
),
1314 "SET_PARAMETER %s RTSP/1.0\r\n"
1315 "Unsubscribe: %s\r\n",
1316 s
->filename
, rt
->last_subscription
);
1317 rtsp_send_cmd(s
, cmd
, reply
, NULL
);
1318 if (reply
->status_code
!= RTSP_STATUS_OK
)
1319 return AVERROR_INVALIDDATA
;
1320 rt
->need_subscription
= 1;
1324 if (rt
->need_subscription
) {
1325 int r
, rule_nr
, first
= 1;
1327 memcpy(rt
->real_setup_cache
, cache
,
1328 sizeof(enum AVDiscard
) * s
->nb_streams
);
1329 rt
->last_subscription
[0] = 0;
1331 snprintf(cmd
, sizeof(cmd
),
1332 "SET_PARAMETER %s RTSP/1.0\r\n"
1335 for (i
= 0; i
< rt
->nb_rtsp_streams
; i
++) {
1337 for (r
= 0; r
< s
->nb_streams
; r
++) {
1338 if (s
->streams
[r
]->priv_data
== rt
->rtsp_streams
[i
]) {
1339 if (s
->streams
[r
]->discard
!= AVDISCARD_ALL
) {
1341 av_strlcat(rt
->last_subscription
, ",",
1342 sizeof(rt
->last_subscription
));
1343 ff_rdt_subscribe_rule(
1344 rt
->last_subscription
,
1345 sizeof(rt
->last_subscription
), i
, rule_nr
);
1352 av_strlcatf(cmd
, sizeof(cmd
), "%s\r\n", rt
->last_subscription
);
1353 rtsp_send_cmd(s
, cmd
, reply
, NULL
);
1354 if (reply
->status_code
!= RTSP_STATUS_OK
)
1355 return AVERROR_INVALIDDATA
;
1356 rt
->need_subscription
= 0;
1358 if (rt
->state
== RTSP_STATE_PLAYING
)
1363 /* get next frames from the same RTP packet */
1365 if (rt
->transport
== RTSP_TRANSPORT_RDT
)
1366 ret
= ff_rdt_parse_packet(rt
->cur_tx
, pkt
, NULL
, 0);
1368 ret
= rtp_parse_packet(rt
->cur_tx
, pkt
, NULL
, 0);
1372 } else if (ret
== 1) {
1379 /* read next RTP packet */
1381 switch(rt
->lower_transport
) {
1383 case RTSP_LOWER_TRANSPORT_TCP
:
1384 len
= tcp_read_packet(s
, &rtsp_st
, buf
, sizeof(buf
));
1386 case RTSP_LOWER_TRANSPORT_UDP
:
1387 case RTSP_LOWER_TRANSPORT_UDP_MULTICAST
:
1388 len
= udp_read_packet(s
, &rtsp_st
, buf
, sizeof(buf
));
1389 if (len
>=0 && rtsp_st
->tx_ctx
&& rt
->transport
== RTSP_TRANSPORT_RTP
)
1390 rtp_check_and_send_back_rr(rtsp_st
->tx_ctx
, len
);
1395 if (rt
->transport
== RTSP_TRANSPORT_RDT
)
1396 ret
= ff_rdt_parse_packet(rtsp_st
->tx_ctx
, pkt
, buf
, len
);
1398 ret
= rtp_parse_packet(rtsp_st
->tx_ctx
, pkt
, buf
, len
);
1402 /* more packets may follow, so we save the RTP context */
1403 rt
->cur_tx
= rtsp_st
->tx_ctx
;
1408 static int rtsp_read_play(AVFormatContext
*s
)
1410 RTSPState
*rt
= s
->priv_data
;
1411 RTSPHeader reply1
, *reply
= &reply1
;
1414 av_log(s
, AV_LOG_DEBUG
, "hello state=%d\n", rt
->state
);
1416 if (!(rt
->server_type
== RTSP_SERVER_REAL
&& rt
->need_subscription
)) {
1417 if (rt
->state
== RTSP_STATE_PAUSED
) {
1418 snprintf(cmd
, sizeof(cmd
),
1419 "PLAY %s RTSP/1.0\r\n",
1422 snprintf(cmd
, sizeof(cmd
),
1423 "PLAY %s RTSP/1.0\r\n"
1424 "Range: npt=%0.3f-\r\n",
1426 (double)rt
->seek_timestamp
/ AV_TIME_BASE
);
1428 rtsp_send_cmd(s
, cmd
, reply
, NULL
);
1429 if (reply
->status_code
!= RTSP_STATUS_OK
) {
1433 rt
->state
= RTSP_STATE_PLAYING
;
1437 /* pause the stream */
1438 static int rtsp_read_pause(AVFormatContext
*s
)
1440 RTSPState
*rt
= s
->priv_data
;
1441 RTSPHeader reply1
, *reply
= &reply1
;
1446 if (rt
->state
!= RTSP_STATE_PLAYING
)
1448 else if (!(rt
->server_type
== RTSP_SERVER_REAL
&& rt
->need_subscription
)) {
1449 snprintf(cmd
, sizeof(cmd
),
1450 "PAUSE %s RTSP/1.0\r\n",
1452 rtsp_send_cmd(s
, cmd
, reply
, NULL
);
1453 if (reply
->status_code
!= RTSP_STATUS_OK
) {
1457 rt
->state
= RTSP_STATE_PAUSED
;
1461 static int rtsp_read_seek(AVFormatContext
*s
, int stream_index
,
1462 int64_t timestamp
, int flags
)
1464 RTSPState
*rt
= s
->priv_data
;
1466 rt
->seek_timestamp
= av_rescale_q(timestamp
, s
->streams
[stream_index
]->time_base
, AV_TIME_BASE_Q
);
1469 case RTSP_STATE_IDLE
:
1471 case RTSP_STATE_PLAYING
:
1472 if (rtsp_read_play(s
) != 0)
1475 case RTSP_STATE_PAUSED
:
1476 rt
->state
= RTSP_STATE_IDLE
;
1482 static int rtsp_read_close(AVFormatContext
*s
)
1484 RTSPState
*rt
= s
->priv_data
;
1485 RTSPHeader reply1
, *reply
= &reply1
;
1489 /* NOTE: it is valid to flush the buffer here */
1490 if (rt
->lower_transport
== RTSP_LOWER_TRANSPORT_TCP
) {
1491 url_fclose(&rt
->rtsp_gb
);
1494 snprintf(cmd
, sizeof(cmd
),
1495 "TEARDOWN %s RTSP/1.0\r\n",
1497 rtsp_send_cmd(s
, cmd
, reply
, NULL
);
1499 rtsp_close_streams(rt
);
1500 url_close(rt
->rtsp_hd
);
1504 #ifdef CONFIG_RTSP_DEMUXER
1505 AVInputFormat rtsp_demuxer
= {
1507 NULL_IF_CONFIG_SMALL("RTSP input format"),
1514 .flags
= AVFMT_NOFILE
,
1515 .read_play
= rtsp_read_play
,
1516 .read_pause
= rtsp_read_pause
,
1520 static int sdp_probe(AVProbeData
*p1
)
1522 const char *p
= p1
->buf
, *p_end
= p1
->buf
+ p1
->buf_size
;
1524 /* we look for a line beginning "c=IN IP4" */
1525 while (p
< p_end
&& *p
!= '\0') {
1526 if (p
+ sizeof("c=IN IP4") - 1 < p_end
&& av_strstart(p
, "c=IN IP4", NULL
))
1527 return AVPROBE_SCORE_MAX
/ 2;
1529 while(p
< p_end
- 1 && *p
!= '\n') p
++;
1538 #define SDP_MAX_SIZE 8192
1540 static int sdp_read_header(AVFormatContext
*s
,
1541 AVFormatParameters
*ap
)
1543 RTSPState
*rt
= s
->priv_data
;
1544 RTSPStream
*rtsp_st
;
1549 /* read the whole sdp file */
1550 /* XXX: better loading */
1551 content
= av_malloc(SDP_MAX_SIZE
);
1552 size
= get_buffer(s
->pb
, content
, SDP_MAX_SIZE
- 1);
1555 return AVERROR_INVALIDDATA
;
1557 content
[size
] ='\0';
1559 sdp_parse(s
, content
);
1562 /* open each RTP stream */
1563 for(i
=0;i
<rt
->nb_rtsp_streams
;i
++) {
1564 rtsp_st
= rt
->rtsp_streams
[i
];
1566 snprintf(url
, sizeof(url
), "rtp://%s:%d?localport=%d&ttl=%d",
1567 inet_ntoa(rtsp_st
->sdp_ip
),
1571 if (url_open(&rtsp_st
->rtp_handle
, url
, URL_RDWR
) < 0) {
1572 err
= AVERROR_INVALIDDATA
;
1575 if ((err
= rtsp_open_transport_ctx(s
, rtsp_st
)))
1580 rtsp_close_streams(rt
);
1584 static int sdp_read_packet(AVFormatContext
*s
,
1587 return rtsp_read_packet(s
, pkt
);
1590 static int sdp_read_close(AVFormatContext
*s
)
1592 RTSPState
*rt
= s
->priv_data
;
1593 rtsp_close_streams(rt
);
1597 #ifdef CONFIG_SDP_DEMUXER
1598 AVInputFormat sdp_demuxer
= {
1600 NULL_IF_CONFIG_SMALL("SDP"),
1609 #ifdef CONFIG_REDIR_DEMUXER
1610 /* dummy redirector format (used directly in av_open_input_file now) */
1611 static int redir_probe(AVProbeData
*pd
)
1615 while (redir_isspace(*p
))
1617 if (av_strstart(p
, "http://", NULL
) ||
1618 av_strstart(p
, "rtsp://", NULL
))
1619 return AVPROBE_SCORE_MAX
;
1623 static int redir_read_header(AVFormatContext
*s
, AVFormatParameters
*ap
)
1627 AVFormatContext
*ic
= NULL
;
1628 ByteIOContext
*f
= s
->pb
;
1630 /* parse each URL and try to open it */
1632 while (c
!= URL_EOF
) {
1635 if (!redir_isspace(c
))
1644 if (c
== URL_EOF
|| redir_isspace(c
))
1646 if ((q
- buf
) < sizeof(buf
) - 1)
1651 //printf("URL='%s'\n", buf);
1652 /* try to open the media file */
1653 if (av_open_input_file(&ic
, buf
, NULL
, 0, NULL
) == 0)
1657 return AVERROR(EIO
);
1665 AVInputFormat redir_demuxer
= {
1667 NULL_IF_CONFIG_SMALL("Redirector format"),