54 #define POLL_TIMEOUT_MS 100
55 #define READ_PACKET_TIMEOUT_S 10
56 #define MAX_TIMEOUTS READ_PACKET_TIMEOUT_S * 1000 / POLL_TIMEOUT_MS
57 #define SDP_MAX_SIZE 16384
58 #define RECVBUF_SIZE 10 * RTP_MAX_PACKET_LENGTH
59 #define DEFAULT_REORDERING_DELAY 100000
61 #define OFFSET(x) offsetof(RTSPState, x)
62 #define DEC AV_OPT_FLAG_DECODING_PARAM
63 #define ENC AV_OPT_FLAG_ENCODING_PARAM
65 #define RTSP_FLAG_OPTS(name, longname) \
66 { name, longname, OFFSET(rtsp_flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC, "rtsp_flags" }, \
67 { "filter_src", "Only receive packets from the negotiated peer IP", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_FILTER_SRC}, 0, 0, DEC, "rtsp_flags" }, \
68 { "listen", "Wait for incoming connections", 0, AV_OPT_TYPE_CONST, {.i64 = RTSP_FLAG_LISTEN}, 0, 0, DEC, "rtsp_flags" }
70 #define RTSP_MEDIATYPE_OPTS(name, longname) \
71 { name, longname, OFFSET(media_type_mask), AV_OPT_TYPE_FLAGS, { .i64 = (1 << (AVMEDIA_TYPE_DATA+1)) - 1 }, INT_MIN, INT_MAX, DEC, "allowed_media_types" }, \
72 { "video", "Video", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_VIDEO}, 0, 0, DEC, "allowed_media_types" }, \
73 { "audio", "Audio", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_AUDIO}, 0, 0, DEC, "allowed_media_types" }, \
74 { "data", "Data", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_DATA}, 0, 0, DEC, "allowed_media_types" }
76 #define RTSP_REORDERING_OPTS() \
77 { "reorder_queue_size", "Number of packets to buffer for handling of reordered packets", OFFSET(reordering_queue_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, DEC }
80 {
"initial_pause",
"Don't start playing the stream immediately",
OFFSET(initial_pause),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1,
DEC },
82 {
"rtsp_transport",
"RTSP transport protocols",
OFFSET(lower_transport_mask),
AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX,
DEC|
ENC,
"rtsp_transport" }, \
91 {
"timeout",
"Maximum timeout (in seconds) to wait for incoming connections. -1 is infinite. Implies flag listen",
OFFSET(initial_timeout),
AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX,
DEC },
92 {
"stimeout",
"timeout (in micro seconds) of socket i/o operations.",
OFFSET(stimeout),
AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX,
DEC },
112 const char *sep,
const char **pp)
120 while (!strchr(sep, *p) && *p !=
'\0') {
121 if ((q - buf) < buf_size - 1)
133 if (**pp ==
'/') (*pp)++;
168 struct addrinfo hints = { 0 }, *ai = NULL;
172 memcpy(sock, ai->ai_addr,
FFMIN(
sizeof(*sock), ai->ai_addrlen));
186 if (handler->
alloc) {
196 int payload_type,
const char *p)
218 init_rtp_handler(handler, rtsp_st, codec);
271 char *
value,
int value_size)
286 typedef struct SDPParseState {
294 int letter,
const char *buf)
297 char buf1[64], st_type[64];
306 av_dlog(s,
"sdp: %c='%s'\n", letter, buf);
309 if (s1->skip_media && letter !=
'm')
314 if (strcmp(buf1,
"IN") != 0)
317 if (strcmp(buf1,
"IP4") && strcmp(buf1,
"IP6"))
329 s1->default_ip = sdp_ip;
330 s1->default_ttl = ttl;
350 get_word(st_type,
sizeof(st_type), &p);
351 if (!strcmp(st_type,
"audio")) {
353 }
else if (!strcmp(st_type,
"video")) {
355 }
else if (!strcmp(st_type,
"application")) {
368 rtsp_st->
sdp_ip = s1->default_ip;
369 rtsp_st->
sdp_ttl = s1->default_ttl;
375 if (!strcmp(buf1,
"udp"))
377 else if (strstr(buf1,
"/AVPF") || strstr(buf1,
"/SAVPF"))
387 if (!rt->
ts && CONFIG_RTPDEC)
393 init_rtp_handler(handler, rtsp_st, NULL);
394 if (handler && handler->
init)
418 init_rtp_handler(handler, rtsp_st, st->
codec);
419 if (handler && handler->
init)
431 if (!strncmp(p,
"rtsp://", 7))
442 if (proto[0] ==
'\0') {
456 payload_type = atoi(buf1);
460 sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
467 payload_type = atoi(buf1);
485 }
else if (
av_strstart(p,
"IsRealDataType:integer;",&p)) {
488 }
else if (
av_strstart(p,
"SampleRate:integer;", &p) &&
534 SDPParseState sdp_parse_state = { { 0 } }, *s1 = &sdp_parse_state;
548 while (*p !=
'\n' && *p !=
'\r' && *p !=
'\0') {
549 if ((q - buf) <
sizeof(buf) - 1)
554 sdp_parse_line(s, s1, letter, buf);
556 while (*p !=
'\n' && *p !=
'\0')
621 if (rt->
ts && CONFIG_RTPDEC)
632 if (reordering_queue_size < 0) {
634 reordering_queue_size = 0;
645 if (s->
oformat && CONFIG_RTSP_MUXER) {
660 else if (CONFIG_RTPDEC)
663 reordering_queue_size);
682 #if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
683 static void rtsp_parse_range(
int *min_ptr,
int *max_ptr,
const char **pp)
691 v = strtol(q, &p, 10);
695 v = strtol(p, &p, 10);
707 char transport_protocol[16];
709 char lower_transport[16];
723 get_word_sep(transport_protocol,
sizeof(transport_protocol),
727 lower_transport[0] =
'\0';
734 }
else if (!
av_strcasecmp (transport_protocol,
"x-pn-tng") ||
737 get_word_sep(lower_transport,
sizeof(lower_transport),
"/;,", &p);
742 lower_transport[0] =
'\0';
758 while (*p !=
'\0' && *p !=
',') {
760 if (!strcmp(parameter,
"port")) {
765 }
else if (!strcmp(parameter,
"client_port")) {
771 }
else if (!strcmp(parameter,
"server_port")) {
777 }
else if (!strcmp(parameter,
"interleaved")) {
783 }
else if (!strcmp(parameter,
"multicast")) {
786 }
else if (!strcmp(parameter,
"ttl")) {
790 th->
ttl = strtol(p, &end, 10);
793 }
else if (!strcmp(parameter,
"destination")) {
799 }
else if (!strcmp(parameter,
"source")) {
805 }
else if (!strcmp(parameter,
"mode")) {
809 if (!strcmp(buf,
"record") ||
810 !strcmp(buf,
"receive"))
815 while (*p !=
';' && *p !=
'\0' && *p !=
',')
827 static void handle_rtp_info(
RTSPState *rt,
const char *url,
828 uint32_t seq, uint32_t rtptime)
831 if (!rtptime || !url[0])
847 static void rtsp_parse_rtp_info(
RTSPState *rt,
const char *p)
850 char key[20], value[1024], url[1024] =
"";
851 uint32_t seq = 0, rtptime = 0;
863 if (!strcmp(key,
"url"))
865 else if (!strcmp(key,
"seq"))
866 seq = strtoul(value, NULL, 10);
867 else if (!strcmp(key,
"rtptime"))
868 rtptime = strtoul(value, NULL, 10);
870 handle_rtp_info(rt, url, seq, rtptime);
879 handle_rtp_info(rt, url, seq, rtptime);
893 (t = strtol(p, NULL, 10)) > 0) {
899 rtsp_parse_transport(reply, p);
901 reply->
seq = strtol(p, NULL, 10);
912 reply->
notice = strtol(p, NULL, 10);
916 }
else if (
av_stristart(p,
"WWW-Authenticate:", &p) && rt) {
919 }
else if (
av_stristart(p,
"Authentication-Info:", &p) && rt) {
922 }
else if (
av_stristart(p,
"Content-Base:", &p) && rt) {
924 if (method && !strcmp(method,
"DESCRIBE"))
928 if (method && !strcmp(method,
"PLAY"))
929 rtsp_parse_rtp_info(rt, p);
931 if (strstr(p,
"GET_PARAMETER") &&
932 method && !strcmp(method,
"OPTIONS"))
934 }
else if (
av_stristart(p,
"x-Accept-Dynamic-Rate:", &p) && rt) {
955 av_dlog(s,
"skipping RTP packet len=%d\n", len);
960 if (len1 >
sizeof(buf))
970 unsigned char **content_ptr,
971 int return_on_interleaved_data,
const char *method)
974 char buf[4096], buf1[1024], *q;
977 int ret, content_length, line_count = 0, request = 0;
978 unsigned char *content = NULL;
984 memset(reply, 0,
sizeof(*reply));
992 av_dlog(s,
"ret=%d c=%02x [%c]\n", ret, ch, ch);
999 if (return_on_interleaved_data) {
1003 }
else if (ch !=
'\r') {
1004 if ((q - buf) <
sizeof(buf) - 1)
1010 av_dlog(s,
"line='%s'\n", buf);
1016 if (line_count == 0) {
1019 if (!strncmp(buf1,
"RTSP/", 5)) {
1040 if (content_length > 0) {
1042 content =
av_malloc(content_length + 1);
1044 content[content_length] =
'\0';
1047 *content_ptr = content;
1054 const char* ptr =
buf;
1056 if (!strcmp(reply->
reason,
"OPTIONS")) {
1057 snprintf(buf,
sizeof(buf),
"RTSP/1.0 200 OK\r\n");
1064 snprintf(buf,
sizeof(buf),
"RTSP/1.0 501 Not Implemented\r\n");
1089 if (rt->
seq != reply->
seq) {
1095 if (reply->
notice == 2101 ||
1097 reply->
notice == 2306 ) {
1099 }
else if (reply->
notice >= 4400 && reply->
notice < 5500) {
1101 }
else if (reply->
notice == 2401 ||
1122 const char *method,
const char *url,
1123 const char *headers,
1124 const unsigned char *send_content,
1125 int send_content_length)
1128 char buf[4096], *out_buf;
1134 snprintf(buf,
sizeof(buf),
"%s %s RTSP/1.0\r\n", method, url);
1138 if (rt->
session_id[0] !=
'\0' && (!headers ||
1139 !strstr(headers,
"\nIf-Match:"))) {
1144 rt->
auth, url, method);
1149 if (send_content_length > 0 && send_content)
1150 av_strlcatf(buf,
sizeof(buf),
"Content-Length: %d\r\n", send_content_length);
1156 out_buf = base64buf;
1159 av_dlog(s,
"Sending:\n%s--\n", buf);
1162 if (send_content_length > 0 && send_content) {
1165 "with content data not supported\n");
1176 const char *url,
const char *headers)
1178 return rtsp_send_cmd_with_content_async(s, method, url, headers, NULL, 0);
1183 unsigned char **content_ptr)
1186 content_ptr, NULL, 0);
1190 const char *method,
const char *url,
1193 unsigned char **content_ptr,
1194 const unsigned char *send_content,
1195 int send_content_length)
1199 int ret, attempts = 0;
1203 if ((ret = rtsp_send_cmd_with_content_async(s, method, url, header,
1205 send_content_length)))
1229 int lower_transport,
const char *real_challenge)
1232 int rtx = 0, j, i, err,
interleave = 0, port_off;
1236 const char *trans_pref;
1239 trans_pref =
"x-pn-tng";
1241 trans_pref =
"RAW/RAW";
1243 trans_pref =
"RTP/AVP";
1253 port_off -= port_off & 0x01;
1255 for (j = rt->
rtp_port_min + port_off, i = 0; i < rt->nb_rtsp_streams; ++i) {
1256 char transport[2048];
1292 while (j <= rt->rtp_port_max) {
1293 ff_url_join(buf,
sizeof(buf),
"rtp", NULL, host, -1,
1294 "?localport=%d", j);
1308 snprintf(transport,
sizeof(transport) - 1,
1309 "%s/UDP;", trans_pref);
1311 av_strlcat(transport,
"unicast;",
sizeof(transport));
1313 "client_port=%d", port);
1316 av_strlcatf(transport,
sizeof(transport),
"-%d", port + 1);
1329 snprintf(transport,
sizeof(transport) - 1,
1330 "%s/TCP;", trans_pref);
1332 av_strlcat(transport,
"unicast;",
sizeof(transport));
1334 "interleaved=%d-%d",
1335 interleave, interleave + 1);
1340 snprintf(transport,
sizeof(transport) - 1,
1341 "%s/UDP;multicast", trans_pref);
1344 av_strlcat(transport,
";mode=record",
sizeof(transport));
1347 av_strlcat(transport,
";mode=play",
sizeof(transport));
1349 "Transport: %s\r\n",
1352 av_strlcat(cmd,
"x-Dynamic-Rate: 0\r\n",
sizeof(cmd));
1354 char real_res[41], real_csum[9];
1359 "RealChallenge2: %s, sd=%s\r\n",
1399 char url[1024],
options[30] =
"";
1402 av_strlcpy(options,
"?connect=1",
sizeof(options));
1427 char url[1024], namebuf[50], optbuf[20] =
"";
1441 snprintf(optbuf,
sizeof(optbuf),
"?ttl=%d", ttl);
1442 getnameinfo((
struct sockaddr*) &addr,
sizeof(addr),
1444 ff_url_join(url,
sizeof(url),
"rtp", NULL, namebuf,
1445 port,
"%s", optbuf);
1483 char host[1024], path[1024], tcpname[1024], cmd[2048], auth[128];
1484 int port, err, tcp_fd;
1486 int lower_transport_mask = 0;
1487 char real_challenge[64] =
"";
1489 socklen_t peer_len =
sizeof(peer);
1516 host,
sizeof(host), &port, path,
sizeof(path), s->
filename);
1523 if (!lower_transport_mask)
1532 "only UDP and TCP are supported for output.\n");
1542 host, port,
"%s", path);
1546 char httpname[1024];
1547 char sessioncookie[17];
1550 ff_url_join(httpname,
sizeof(httpname),
"http", auth, host, port,
"%s", path);
1551 snprintf(sessioncookie,
sizeof(sessioncookie),
"%08x%08x",
1563 "x-sessioncookie: %s\r\n"
1564 "Accept: application/x-rtsp-tunnelled\r\n"
1565 "Pragma: no-cache\r\n"
1566 "Cache-Control: no-cache\r\n",
1585 "x-sessioncookie: %s\r\n"
1586 "Content-Type: application/x-rtsp-tunnelled\r\n"
1587 "Pragma: no-cache\r\n"
1588 "Cache-Control: no-cache\r\n"
1589 "Content-Length: 32767\r\n"
1590 "Expires: Sun, 9 Jan 1972 00:00:00 GMT\r\n",
1620 ff_url_join(tcpname,
sizeof(tcpname),
"tcp", NULL, host, port,
1632 if (!getpeername(tcp_fd, (
struct sockaddr*) &peer, &peer_len)) {
1633 getnameinfo((
struct sockaddr*) &peer, peer_len, host,
sizeof(host),
1652 "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
1653 "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
1654 "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
1655 "GUID: 00000000-0000-0000-0000-000000000000\r\n",
1674 if (s->
iformat && CONFIG_RTSP_DEMUXER)
1676 else if (CONFIG_RTSP_MUXER)
1682 int lower_transport =
ff_log2_tab[lower_transport_mask &
1683 ~(lower_transport_mask - 1)];
1687 real_challenge : NULL);
1690 lower_transport_mask &= ~(1 << lower_transport);
1691 if (lower_transport_mask == 0 && err == 1) {
1692 err =
AVERROR(EPROTONOSUPPORT);
1719 uint8_t *buf,
int buf_size, int64_t wait_end)
1723 int n, i,
ret, tcp_fd, timeout_cnt = 0;
1725 struct pollfd *p = rt->
p;
1726 int *fds = NULL, fdsnum, fdsidx;
1736 p[max_p].fd = tcp_fd;
1737 p[max_p++].events = POLLIN;
1751 "Number of fds %d not supported\n", fdsnum);
1754 for (fdsidx = 0; fdsidx < fdsnum; fdsidx++) {
1755 p[max_p].fd = fds[fdsidx];
1756 p[max_p++].events = POLLIN;
1763 int j = 1 - (tcp_fd == -1);
1768 if (p[j].revents & POLLIN || p[j+1].revents & POLLIN) {
1771 *prtsp_st = rtsp_st;
1778 #if CONFIG_RTSP_DEMUXER
1779 if (tcp_fd != -1 && p[0].revents & POLLIN) {
1786 "Unable to answer to TEARDOWN\n");
1802 }
else if (n < 0 && errno != EINTR)
1834 "Unable to pick stream for packet - SSRC not known for "
1856 int64_t wait_end = 0;
1867 }
else if (rt->
ts && CONFIG_RTPDEC) {
1878 }
else if (ret == 1) {
1887 int64_t first_queue_time = 0;
1894 if (queue_time && (queue_time - first_queue_time < 0 ||
1895 !first_queue_time)) {
1896 first_queue_time = queue_time;
1900 if (first_queue_time) {
1901 wait_end = first_queue_time + s->
max_delay;
1904 first_queue_st = NULL;
1917 #if CONFIG_RTSP_DEMUXER
1934 len = pick_stream(s, &rtsp_st, rt->
recvbuf, len);
1939 if (len ==
AVERROR(EAGAIN) && first_queue_st &&
1941 rtsp_st = first_queue_st;
1977 if (rtpctx2 && st && st2 &&
1996 }
else if (rt->
ts && CONFIG_RTPDEC) {
2022 #if CONFIG_SDP_DEMUXER
2028 while (p < p_end && *p !=
'\0') {
2029 if (p +
sizeof(
"c=IN IP") - 1 < p_end &&
2033 while (p < p_end - 1 && *p !=
'\n') p++;
2066 content[
size] =
'\0';
2082 "?localport=%d&ttl=%d&connect=%d", rtsp_st->
sdp_port,
2108 static const AVClass sdp_demuxer_class = {
2123 .priv_class = &sdp_demuxer_class,
2127 #if CONFIG_RTP_DEMUXER
2138 char host[500], sdp[500];
2145 socklen_t addrlen =
sizeof(addr);
2157 ret =
ffurl_read(in, recvbuf,
sizeof(recvbuf));
2167 if ((recvbuf[0] & 0xc0) != 0x80) {
2176 payload_type = recvbuf[1] & 0x7f;
2185 "without an SDP file describing it\n",
2191 "properly you need an SDP file "
2195 av_url_split(NULL, 0, NULL, 0, host,
sizeof(host), &port,
2199 "v=0\r\nc=IN IP%d %s\r\nm=%s %d RTP/AVP %d\r\n",
2200 addr.ss_family == AF_INET ? 4 : 6, host,
2203 port, payload_type);
2214 ret = sdp_read_header(s);
2225 static const AVClass rtp_demuxer_class = {
2241 .priv_class = &rtp_demuxer_class,