55 #define POLL_TIMEOUT_MS 100
56 #define READ_PACKET_TIMEOUT_S 10
57 #define MAX_TIMEOUTS READ_PACKET_TIMEOUT_S * 1000 / POLL_TIMEOUT_MS
58 #define SDP_MAX_SIZE 16384
59 #define RECVBUF_SIZE 10 * RTP_MAX_PACKET_LENGTH
60 #define DEFAULT_REORDERING_DELAY 100000
62 #define OFFSET(x) offsetof(RTSPState, x)
63 #define DEC AV_OPT_FLAG_DECODING_PARAM
64 #define ENC AV_OPT_FLAG_ENCODING_PARAM
66 #define RTSP_FLAG_OPTS(name, longname) \
67 { name, longname, OFFSET(rtsp_flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, DEC, "rtsp_flags" }, \
68 { "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" }
70 #define RTSP_MEDIATYPE_OPTS(name, longname) \
71 { name, longname, OFFSET(media_type_mask), AV_OPT_TYPE_FLAGS, { .i64 = (1 << (AVMEDIA_TYPE_SUBTITLE+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" }, \
75 { "subtitle", "Subtitle", 0, AV_OPT_TYPE_CONST, {.i64 = 1 << AVMEDIA_TYPE_SUBTITLE}, 0, 0, DEC, "allowed_media_types" }
77 #define COMMON_OPTS() \
78 { "reorder_queue_size", "set number of packets to buffer for handling of reordered packets", OFFSET(reordering_queue_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, DEC }, \
79 { "buffer_size", "Underlying protocol send/receive buffer size", OFFSET(buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, DEC|ENC } \
83 {
"initial_pause",
"do not start playing the stream immediately",
OFFSET(initial_pause),
AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1,
DEC },
85 {
"rtsp_transport",
"set RTSP transport protocols",
OFFSET(lower_transport_mask),
AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX,
DEC|
ENC,
"rtsp_transport" }, \
92 {
"prefer_tcp",
"try RTP via TCP first, if available", 0,
AV_OPT_TYPE_CONST, {.i64 =
RTSP_FLAG_PREFER_TCP}, 0, 0,
DEC|
ENC,
"rtsp_flags" },
96 {
"listen_timeout",
"set maximum timeout (in seconds) to wait for incoming connections (-1 is infinite, imply flag listen)",
OFFSET(initial_timeout),
AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX,
DEC },
97 #if FF_API_OLD_RTSP_OPTIONS
98 {
"timeout",
"set maximum timeout (in seconds) to wait for incoming connections (-1 is infinite, imply flag listen) (deprecated, use listen_timeout)",
OFFSET(initial_timeout),
AV_OPT_TYPE_INT, {.i64 = -1}, INT_MIN, INT_MAX,
DEC },
99 {
"stimeout",
"set timeout (in microseconds) of socket TCP I/O operations",
OFFSET(stimeout),
AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX,
DEC },
101 {
"timeout",
"set timeout (in microseconds) of socket TCP I/O operations",
OFFSET(stimeout),
AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX,
DEC },
105 #if FF_API_OLD_RTSP_OPTIONS
139 const char *sep,
const char **pp)
147 while (!strchr(sep, *p) && *p !=
'\0') {
148 if ((q - buf) < buf_size - 1)
160 if (**pp ==
'/') (*pp)++;
208 memcpy(sock, ai->ai_addr,
FFMIN(
sizeof(*sock), ai->ai_addrlen));
254 int payload_type,
const char *p)
276 init_rtp_handler(handler, rtsp_st, st);
286 if (desc && desc->
name)
319 finalize_rtp_handler_init(s, rtsp_st, st);
327 char *
value,
int value_size)
342 typedef struct SDPParseState {
347 int nb_default_include_source_addrs;
348 struct RTSPSource **default_include_source_addrs;
349 int nb_default_exclude_source_addrs;
350 struct RTSPSource **default_exclude_source_addrs;
353 char delayed_fmtp[2048];
356 static void copy_default_source_addrs(
struct RTSPSource **addrs,
int count,
361 for (i = 0; i <
count; i++) {
363 rtsp_src2 =
av_malloc(
sizeof(*rtsp_src2));
366 memcpy(rtsp_src2, rtsp_src,
sizeof(*rtsp_src));
372 int payload_type,
const char *
line)
388 int letter,
const char *buf)
391 char buf1[64], st_type[64];
404 if (s1->skip_media && letter !=
'm')
409 if (strcmp(buf1,
"IN") != 0)
412 if (strcmp(buf1,
"IP4") && strcmp(buf1,
"IP6"))
424 s1->default_ip = sdp_ip;
425 s1->default_ttl = ttl;
447 get_word(st_type,
sizeof(st_type), &p);
448 if (!strcmp(st_type,
"audio")) {
450 }
else if (!strcmp(st_type,
"video")) {
452 }
else if (!strcmp(st_type,
"application")) {
454 }
else if (!strcmp(st_type,
"text")) {
467 rtsp_st->
sdp_ip = s1->default_ip;
468 rtsp_st->
sdp_ttl = s1->default_ttl;
470 copy_default_source_addrs(s1->default_include_source_addrs,
471 s1->nb_default_include_source_addrs,
474 copy_default_source_addrs(s1->default_exclude_source_addrs,
475 s1->nb_default_exclude_source_addrs,
483 if (!strcmp(buf1,
"udp"))
485 else if (strstr(buf1,
"/AVPF") || strstr(buf1,
"/SAVPF"))
495 if (CONFIG_RTPDEC && !rt->
ts)
501 init_rtp_handler(handler, rtsp_st,
NULL);
502 finalize_rtp_handler_init(s, rtsp_st,
NULL);
525 init_rtp_handler(handler, rtsp_st, st);
526 finalize_rtp_handler_init(s, rtsp_st, st);
538 if (!strncmp(p,
"rtsp://", 7))
549 if (proto[0] ==
'\0') {
563 payload_type = atoi(buf1);
567 sdp_parse_rtpmap(s, st, rtsp_st, payload_type, p);
571 parse_fmtp(s, rt, payload_type, s1->delayed_fmtp);
577 payload_type = atoi(buf1);
578 if (s1->seen_rtpmap) {
582 av_strlcpy(s1->delayed_fmtp, buf,
sizeof(s1->delayed_fmtp));
587 rtsp_st->
ssrc = strtoll(buf1,
NULL, 10);
607 }
else if (
av_strstart(p,
"IsRealDataType:integer;",&p)) {
610 }
else if (
av_strstart(p,
"SampleRate:integer;", &p) &&
625 if (strcmp(buf1,
"incl") && strcmp(buf1,
"excl"))
627 exclude = !strcmp(buf1,
"excl");
630 if (strcmp(buf1,
"IN") != 0)
633 if (strcmp(buf1,
"IP4") && strcmp(buf1,
"IP6") && strcmp(buf1,
"*"))
645 dynarray_add(&s1->default_exclude_source_addrs, &s1->nb_default_exclude_source_addrs, rtsp_src);
652 dynarray_add(&s1->default_include_source_addrs, &s1->nb_default_include_source_addrs, rtsp_src);
692 SDPParseState sdp_parse_state = { { 0 } }, *s1 = &sdp_parse_state;
706 while (*p !=
'\n' && *p !=
'\r' && *p !=
'\0') {
707 if ((q - buf) <
sizeof(buf) - 1)
712 sdp_parse_line(s, s1, letter, buf);
714 while (*p !=
'\n' && *p !=
'\0')
720 for (i = 0; i < s1->nb_default_include_source_addrs; i++)
721 av_freep(&s1->default_include_source_addrs[i]);
722 av_freep(&s1->default_include_source_addrs);
723 for (i = 0; i < s1->nb_default_exclude_source_addrs; i++)
724 av_freep(&s1->default_exclude_source_addrs[i]);
725 av_freep(&s1->default_exclude_source_addrs);
745 if (CONFIG_RTSP_MUXER && rtpctx->
pb && send_packets)
795 if (CONFIG_RTPDEC && rt->
ts)
806 if (reordering_queue_size < 0) {
808 reordering_queue_size = 0;
819 if (CONFIG_RTSP_MUXER && s->
oformat && st) {
835 else if (CONFIG_RTPDEC)
838 reordering_queue_size);
860 #if CONFIG_RTSP_DEMUXER || CONFIG_RTSP_MUXER
861 static void rtsp_parse_range(
int *min_ptr,
int *max_ptr,
const char **pp)
869 v = strtol(q, &p, 10);
873 v = strtol(p, &p, 10);
886 char transport_protocol[16];
888 char lower_transport[16];
902 get_word_sep(transport_protocol,
sizeof(transport_protocol),
906 lower_transport[0] =
'\0';
913 }
else if (!
av_strcasecmp (transport_protocol,
"x-pn-tng") ||
916 get_word_sep(lower_transport,
sizeof(lower_transport),
"/;,", &p);
921 lower_transport[0] =
'\0';
937 while (*p !=
'\0' && *p !=
',') {
939 if (!strcmp(parameter,
"port")) {
944 }
else if (!strcmp(parameter,
"client_port")) {
950 }
else if (!strcmp(parameter,
"server_port")) {
956 }
else if (!strcmp(parameter,
"interleaved")) {
962 }
else if (!strcmp(parameter,
"multicast")) {
965 }
else if (!strcmp(parameter,
"ttl")) {
969 th->
ttl = strtol(p, &end, 10);
972 }
else if (!strcmp(parameter,
"destination")) {
978 }
else if (!strcmp(parameter,
"source")) {
984 }
else if (!strcmp(parameter,
"mode")) {
988 if (!strcmp(buf,
"record") ||
989 !strcmp(buf,
"receive"))
994 while (*p !=
';' && *p !=
'\0' && *p !=
',')
1008 static void handle_rtp_info(
RTSPState *rt,
const char *url,
1009 uint32_t seq, uint32_t rtptime)
1012 if (!rtptime || !url[0])
1028 static void rtsp_parse_rtp_info(
RTSPState *rt,
const char *p)
1031 char key[20], value[1024], url[1024] =
"";
1032 uint32_t seq = 0, rtptime = 0;
1044 if (!strcmp(key,
"url"))
1046 else if (!strcmp(key,
"seq"))
1047 seq = strtoul(value,
NULL, 10);
1048 else if (!strcmp(key,
"rtptime"))
1049 rtptime = strtoul(value,
NULL, 10);
1051 handle_rtp_info(rt, url, seq, rtptime);
1060 handle_rtp_info(rt, url, seq, rtptime);
1075 (t = strtol(p,
NULL, 10)) > 0) {
1081 rtsp_parse_transport(s, reply, p);
1083 reply->
seq = strtol(p,
NULL, 10);
1098 }
else if (
av_stristart(p,
"WWW-Authenticate:", &p) && rt) {
1101 }
else if (
av_stristart(p,
"Authentication-Info:", &p) && rt) {
1104 }
else if (
av_stristart(p,
"Content-Base:", &p) && rt) {
1106 if (method && !strcmp(method,
"DESCRIBE"))
1110 if (method && !strcmp(method,
"PLAY"))
1111 rtsp_parse_rtp_info(rt, p);
1113 if (strstr(p,
"GET_PARAMETER") &&
1114 method && !strcmp(method,
"OPTIONS"))
1116 }
else if (
av_stristart(p,
"x-Accept-Dynamic-Rate:", &p) && rt) {
1142 if (len1 >
sizeof(buf))
1152 unsigned char **content_ptr,
1153 int return_on_interleaved_data,
const char *method)
1156 char buf[4096], buf1[1024], *q;
1159 int ret, content_length, line_count = 0, request = 0;
1160 unsigned char *content =
NULL;
1166 memset(reply, 0,
sizeof(*reply));
1179 if (ch ==
'$' && q == buf) {
1180 if (return_on_interleaved_data) {
1184 }
else if (ch !=
'\r') {
1185 if ((q - buf) <
sizeof(buf) - 1)
1197 if (line_count == 0) {
1200 if (!strncmp(buf1,
"RTSP/", 5)) {
1221 if (content_length > 0) {
1223 content =
av_malloc(content_length + 1);
1227 content[content_length] =
'\0';
1230 *content_ptr = content;
1237 const char* ptr =
buf;
1239 if (!strcmp(reply->
reason,
"OPTIONS")) {
1240 snprintf(buf,
sizeof(buf),
"RTSP/1.0 200 OK\r\n");
1247 snprintf(buf,
sizeof(buf),
"RTSP/1.0 501 Not Implemented\r\n");
1272 if (rt->
seq != reply->
seq) {
1278 if (reply->
notice == 2101 ||
1280 reply->
notice == 2306 ) {
1282 }
else if (reply->
notice >= 4400 && reply->
notice < 5500) {
1284 }
else if (reply->
notice == 2401 ||
1305 const char *method,
const char *url,
1306 const char *headers,
1307 const unsigned char *send_content,
1308 int send_content_length)
1311 char buf[4096], *out_buf;
1317 snprintf(buf,
sizeof(buf),
"%s %s RTSP/1.0\r\n", method, url);
1322 if (rt->
session_id[0] !=
'\0' && (!headers ||
1323 !strstr(headers,
"\nIf-Match:"))) {
1328 rt->
auth, url, method);
1333 if (send_content_length > 0 && send_content)
1334 av_strlcatf(buf,
sizeof(buf),
"Content-Length: %d\r\n", send_content_length);
1340 out_buf = base64buf;
1346 if (send_content_length > 0 && send_content) {
1359 const char *url,
const char *headers)
1361 return rtsp_send_cmd_with_content_async(s, method, url, headers,
NULL, 0);
1366 unsigned char **content_ptr)
1369 content_ptr,
NULL, 0);
1373 const char *method,
const char *url,
1376 unsigned char **content_ptr,
1377 const unsigned char *send_content,
1378 int send_content_length)
1382 int ret, attempts = 0;
1386 if ((ret = rtsp_send_cmd_with_content_async(s, method, url, header,
1388 send_content_length)))
1412 int lower_transport,
const char *real_challenge)
1415 int rtx = 0, j, i, err,
interleave = 0, port_off;
1419 const char *trans_pref;
1422 trans_pref =
"x-pn-tng";
1424 trans_pref =
"RAW/RAW";
1426 trans_pref =
"RTP/AVP";
1436 port_off -= port_off & 0x01;
1438 for (j = rt->
rtp_port_min + port_off, i = 0; i < rt->nb_rtsp_streams; ++i) {
1439 char transport[2048];
1475 while (j <= rt->rtp_port_max) {
1479 "?localport=%d", j);
1497 snprintf(transport,
sizeof(transport) - 1,
1498 "%s/UDP;", trans_pref);
1500 av_strlcat(transport,
"unicast;",
sizeof(transport));
1502 "client_port=%d", port);
1505 av_strlcatf(transport,
sizeof(transport),
"-%d", port + 1);
1518 snprintf(transport,
sizeof(transport) - 1,
1519 "%s/TCP;", trans_pref);
1521 av_strlcat(transport,
"unicast;",
sizeof(transport));
1523 "interleaved=%d-%d",
1524 interleave, interleave + 1);
1529 snprintf(transport,
sizeof(transport) - 1,
1530 "%s/UDP;multicast", trans_pref);
1533 av_strlcat(transport,
";mode=record",
sizeof(transport));
1536 av_strlcat(transport,
";mode=play",
sizeof(transport));
1538 "Transport: %s\r\n",
1541 av_strlcat(cmd,
"x-Dynamic-Rate: 0\r\n",
sizeof(cmd));
1543 char real_res[41], real_csum[9];
1548 "RealChallenge2: %s, sd=%s\r\n",
1588 char url[1024],
options[30] =
"";
1589 const char *peer = host;
1592 av_strlcpy(options,
"?connect=1",
sizeof(options));
1606 char url[1024], namebuf[50], optbuf[20] =
"";
1620 snprintf(optbuf,
sizeof(optbuf),
"?ttl=%d", ttl);
1621 getnameinfo((
struct sockaddr*) &addr,
sizeof(addr),
1624 port,
"%s", optbuf);
1662 char proto[128], host[1024], path[1024];
1663 char tcpname[1024], cmd[2048], auth[128];
1664 const char *lower_rtsp_proto =
"tcp";
1665 int port, err, tcp_fd;
1667 int lower_transport_mask = 0;
1669 char real_challenge[64] =
"";
1671 socklen_t peer_len =
sizeof(peer);
1697 host,
sizeof(host), &port, path,
sizeof(path), s->
url);
1699 if (!strcmp(proto,
"rtsps")) {
1700 lower_rtsp_proto =
"tls";
1709 port = default_port;
1713 if (!lower_transport_mask)
1722 "only UDP and TCP are supported for output.\n");
1732 host, port,
"%s", path);
1736 char httpname[1024];
1737 char sessioncookie[17];
1740 ff_url_join(httpname,
sizeof(httpname),
"http", auth, host, port,
"%s", path);
1741 snprintf(sessioncookie,
sizeof(sessioncookie),
"%08x%08x",
1753 "x-sessioncookie: %s\r\n"
1754 "Accept: application/x-rtsp-tunnelled\r\n"
1755 "Pragma: no-cache\r\n"
1756 "Cache-Control: no-cache\r\n",
1783 "x-sessioncookie: %s\r\n"
1784 "Content-Type: application/x-rtsp-tunnelled\r\n"
1785 "Pragma: no-cache\r\n"
1786 "Cache-Control: no-cache\r\n"
1787 "Content-Length: 32767\r\n"
1788 "Expires: Sun, 9 Jan 1972 00:00:00 GMT\r\n",
1836 if (!getpeername(tcp_fd, (
struct sockaddr*) &peer, &peer_len)) {
1837 getnameinfo((
struct sockaddr*) &peer, peer_len, host,
sizeof(host),
1856 "ClientChallenge: 9e26d33f2984236010ef6253fb1887f7\r\n"
1857 "PlayerStarttime: [28/03/2003:22:50:23 00:00]\r\n"
1858 "CompanyID: KnKV4M4I/B2FjJ1TToLycw==\r\n"
1859 "GUID: 00000000-0000-0000-0000-000000000000\r\n",
1878 if (CONFIG_RTSP_DEMUXER && s->
iformat)
1880 else if (CONFIG_RTSP_MUXER)
1888 int lower_transport =
ff_log2_tab[lower_transport_mask &
1889 ~(lower_transport_mask - 1)];
1897 real_challenge :
NULL);
1900 lower_transport_mask &= ~(1 << lower_transport);
1901 if (lower_transport_mask == 0 && err == 1) {
1902 err =
AVERROR(EPROTONOSUPPORT);
1946 "Unable to answer to TEARDOWN\n");
1963 uint8_t *buf,
int buf_size, int64_t wait_end)
1967 int n, i, ret, timeout_cnt = 0;
1968 struct pollfd *p = rt->
p;
1969 int *fds =
NULL, fdsnum, fdsidx;
1978 p[rt->
max_p++].events = POLLIN;
1990 "Number of fds %d not supported\n", fdsnum);
1993 for (fdsidx = 0; fdsidx < fdsnum; fdsidx++) {
1994 p[rt->
max_p].fd = fds[fdsidx];
1995 p[rt->
max_p++].events = POLLIN;
2014 if (p[j].revents & POLLIN || p[j+1].revents & POLLIN) {
2017 *prtsp_st = rtsp_st;
2024 #if CONFIG_RTSP_DEMUXER
2025 if (rt->
rtsp_hd && p[0].revents & POLLIN) {
2026 if ((ret = parse_rtsp_message(s)) < 0) {
2033 }
else if (n < 0 && errno != EINTR)
2065 "Unable to pick stream for packet - SSRC not known for "
2091 #if CONFIG_RTSP_DEMUXER
2108 len = pick_stream(s, rtsp_st, rt->
recvbuf, len);
2125 int64_t wait_end = 0;
2136 }
else if (CONFIG_RTPDEC && rt->
ts) {
2147 }
else if (ret == 1) {
2156 int64_t first_queue_time = 0;
2163 if (queue_time && (queue_time - first_queue_time < 0 ||
2164 !first_queue_time)) {
2165 first_queue_time = queue_time;
2169 if (first_queue_time) {
2170 wait_end = first_queue_time + s->
max_delay;
2173 first_queue_st =
NULL;
2184 len =
read_packet(s, &rtsp_st, first_queue_st, wait_end);
2185 if (len ==
AVERROR(EAGAIN) && first_queue_st &&
2188 "max delay reached. need to consume packet\n");
2189 rtsp_st = first_queue_st;
2224 if (rtpctx2 && st && st2 &&
2253 }
else if (CONFIG_RTPDEC && rt->
ts) {
2279 #if CONFIG_SDP_DEMUXER
2285 while (p < p_end && *p !=
'\0') {
2286 if (
sizeof(
"c=IN IP") - 1 < p_end - p &&
2290 while (p < p_end - 1 && *p !=
'\n') p++;
2299 static void append_source_addrs(
char *buf,
int size,
const char *
name,
2305 av_strlcatf(buf, size,
"&%s=%s", name, addrs[0]->addr);
2306 for (i = 1; i <
count; i++)
2336 content[
size] =
'\0';
2361 "?localport=%d&ttl=%d&connect=%d&write_to_source=%d",
2366 append_source_addrs(url,
sizeof(url),
"sources",
2369 append_source_addrs(url,
sizeof(url),
"block",
2399 static const AVClass sdp_demuxer_class = {
2414 .priv_class = &sdp_demuxer_class,
2418 #if CONFIG_RTP_DEMUXER
2429 char host[500], sdp[500];
2436 socklen_t addrlen =
sizeof(addr);
2448 ret =
ffurl_read(in, recvbuf,
sizeof(recvbuf));
2458 if ((recvbuf[0] & 0xc0) != 0x80) {
2467 payload_type = recvbuf[1] & 0x7f;
2482 "without an SDP file describing it\n",
2488 "properly you need an SDP file "
2496 "v=0\r\nc=IN IP%d %s\r\nm=%s %d RTP/AVP %d\r\n",
2497 addr.ss_family == AF_INET ? 4 : 6, host,
2500 port, payload_type);
2512 ret = sdp_read_header(s);
2524 static const AVClass rtp_demuxer_class = {
2540 .priv_class = &rtp_demuxer_class,
char auth[128]
plaintext authorization line (username:password)
int interleaved_min
interleave ids, if TCP transport; each TCP/RTSP data packet starts with a '$', stream length and stre...
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
void ff_rtsp_skip_packet(AVFormatContext *s)
Skip a RTP/TCP interleaved packet.
int rtp_port_min
Minimum and maximum local UDP ports.
int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
Parse a Windows Media Server-specific SDP line.
void ff_rtp_parse_set_crypto(RTPDemuxContext *s, const char *suite, const char *params)
Realmedia Data Transport.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int ff_rtp_get_local_rtp_port(URLContext *h)
Return the local rtp port used by the RTP connection.
int64_t start_time_realtime
Start time of the stream in real world time, in microseconds since the Unix epoch (00:00 1st January ...
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it. ...
#define RTP_MAX_PACKET_LENGTH
AVIOInterruptCB interrupt_callback
Custom interrupt callbacks for the I/O layer.
char source[INET6_ADDRSTRLEN+1]
source IP address
HTTPAuthType
Authentication types, ordered from weakest to strongest.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define LIBAVUTIL_VERSION_INT
static void rtsp_parse_range_npt(const char *p, int64_t *start, int64_t *end)
Parse a string p in the form of Range:npt=xx-xx, and determine the start and end time.
char control_uri[1024]
some MS RTSP streams contain a URL in the SDP that we need to use for all subsequent RTSP requests...
int av_parse_time(int64_t *timeval, const char *timestr, int duration)
Parse timestr and return in *time a corresponding number of microseconds.
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
#define RTSP_DEFAULT_PORT
struct pollfd * p
Polling array for udp.
int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
Open RTSP transport context.
MpegTSContext * avpriv_mpegts_parse_open(AVFormatContext *s)
int ffurl_connect(URLContext *uc, AVDictionary **options)
Connect an URLContext that has been allocated by ffurl_alloc.
static int parse_fmtp(AVFormatContext *s, AVStream *stream, PayloadContext *data, const char *attr, const char *value)
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
int ff_rdt_parse_packet(RDTDemuxContext *s, AVPacket *pkt, uint8_t **bufptr, int len)
Parse RDT-style packet data (header + media data).
int index
stream index in AVFormatContext
const char * av_default_item_name(void *ptr)
Return the context name.
#define AVIO_FLAG_READ
read-only
char * user_agent
User-Agent string.
#define AVIO_FLAG_WRITE
write-only
int mode_record
transport set to record data
enum AVMediaType codec_type
int avio_read_partial(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
void ff_network_close(void)
initialized and sending/receiving data
char real_challenge[64]
the "RealChallenge1:" field from the server
#define RTSP_FLAG_RTCP_TO_SOURCE
Send RTCP packets to the source address of received packets.
#define RTSP_RTP_PORT_MAX
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int nb_include_source_addrs
Number of source-specific multicast include source IP addresses (from SDP content) ...
int ctx_flags
Flags signalling stream properties.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
#define RTSP_FLAG_LISTEN
Wait for incoming connections.
char session_id[512]
copy of RTSPMessageHeader->session_id, i.e.
int auth_type
The currently chosen auth type.
int64_t seek_timestamp
the seek value requested when calling av_seek_frame().
const char * ff_rtp_enc_name(int payload_type)
Return the encoding name (as defined in http://www.iana.org/assignments/rtp-parameters) for a given p...
This struct describes the properties of an encoded stream.
int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port, int lower_transport, const char *real_challenge)
Do the SETUP requests for each stream for the chosen lower transport mode.
enum RTSPLowerTransport lower_transport
network layer transport protocol; e.g.
RTPDemuxContext * ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, int payload_type, int queue_size)
open a new RTP parse context for stream 'st'.
enum AVCodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type)
Return the codec id for the given encoding name and codec type.
int ff_rtsp_connect(AVFormatContext *s)
Connect to the RTSP server and set up the individual media streams.
Standards-compliant RTP-server.
int reordering_queue_size
Size of RTP packet reordering queue.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define RTSP_FLAG_PREFER_TCP
Try RTP via TCP first if possible.
static void interleave(uint8_t *dst, uint8_t *src, int w, int h, int dst_linesize, int src_linesize, enum FilterMode mode, int swap)
uint64_t first_rtcp_ntp_time
#define av_assert0(cond)
assert() equivalent, that is always enabled.
int av_stristart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str independent of case.
int get_parameter_supported
Whether the server supports the GET_PARAMETER method.
#define RTSP_MAX_TRANSPORTS
Opaque data information usually continuous.
int ttl
time-to-live value (required for multicast); the amount of HOPs that packets will be allowed to make ...
int(* init)(AVFormatContext *s, int st_index, PayloadContext *priv_data)
Initialize dynamic protocol handler, called after the full rtpmap line is parsed, may be null...
static int get_sockaddr(AVFormatContext *s, const char *buf, struct sockaddr_storage *sock)
int ff_network_init(void)
AVCodecParameters * avcodec_parameters_alloc(void)
Allocate a new AVCodecParameters and set its fields to default values (unknown/invalid/0).
miscellaneous OS support macros and functions.
int feedback
Enable sending RTCP feedback messages according to RFC 4585.
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
static av_cold int end(AVCodecContext *avctx)
int id
Format-specific stream ID.
enum AVStreamParseType need_parsing
#define DEFAULT_REORDERING_DELAY
static void handler(vbi_event *ev, void *user_data)
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
int ff_rtsp_next_attr_and_value(const char **p, char *attr, int attr_size, char *value, int value_size)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
AVStream ** streams
A list of all streams in the file.
int accept_dynamic_rate
Whether the server accepts the x-Dynamic-Rate header.
URLContext * rtsp_hd_out
Additional output handle, used when input and output are done separately, eg for HTTP tunneling...
int ff_rtp_get_codec_info(AVCodecParameters *par, int payload_type)
Initialize a codec context based on the payload type.
Describe a single stream, as identified by a single m= line block in the SDP content.
Custom IO - not a public option for lower_transport_mask, but set in the SDP demuxer based on a flag...
char * protocol_whitelist
',' separated list of allowed protocols.
void(* close)(PayloadContext *protocol_data)
Free any data needed by the rtp parsing for this dynamic data.
#define AVERROR_EOF
End of file.
void ff_http_init_auth_state(URLContext *dest, const URLContext *src)
Initialize the authentication state based on another HTTP URLContext.
#define AV_LOG_VERBOSE
Detailed information.
static av_cold int read_close(AVFormatContext *ctx)
static const uint8_t header[24]
int ff_rtsp_parse_streaming_commands(AVFormatContext *s)
Parse RTSP commands (OPTIONS, PAUSE and TEARDOWN) during streaming in listen mode.
int ff_rtsp_send_cmd(AVFormatContext *s, const char *method, const char *url, const char *headers, RTSPMessageHeader *reply, unsigned char **content_ptr)
Send a command to the RTSP server and wait for the reply.
static int ff_rtsp_averror(enum RTSPStatusCode status_code, int default_averror)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
void ff_rtsp_parse_line(AVFormatContext *s, RTSPMessageHeader *reply, const char *buf, RTSPState *rt, const char *method)
struct AVOutputFormat * oformat
The output container format.
#define RTSP_DEFAULT_AUDIO_SAMPLERATE
void ff_rdt_parse_close(RDTDemuxContext *s)
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
int ff_sdp_parse(AVFormatContext *s, const char *content)
Parse an SDP description of streams by populating an RTSPState struct within the AVFormatContext; als...
struct RTSPSource ** exclude_source_addrs
Source-specific multicast exclude source IP addresses (from SDP content)
Private data for the RTSP demuxer.
int64_t last_cmd_time
timestamp of the last RTSP command that we sent to the RTSP server.
int ffurl_alloc(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb)
Create a URLContext for accessing to the resource indicated by url, but do not initiate the connectio...
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
AVDictionary * metadata
Metadata that applies to the whole file.
int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
Return the file descriptors associated with this URL.
int timeout
copy of RTSPMessageHeader->timeout, i.e.
const char * protocol_whitelist
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
char * url
input or output URL.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
const AVOption ff_rtsp_options[]
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
enum AVMediaType codec_type
General type of the encoded data.
simple assert() macros that are a bit more flexible than ISO C assert().
enum RTSPControlTransport control_transport
RTSP transport mode, such as plain or tunneled.
struct RTSPSource ** include_source_addrs
Source-specific multicast include source IP addresses (from SDP content)
void ff_rtp_parse_set_dynamic_protocol(RTPDemuxContext *s, PayloadContext *ctx, const RTPDynamicProtocolHandler *handler)
char * av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size)
Encode data to base64 and null-terminate.
void avcodec_parameters_free(AVCodecParameters **par)
Free an AVCodecParameters instance and everything associated with it and write NULL to the supplied p...
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
struct RTSPStream ** rtsp_streams
streams in this session
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
int stream_index
corresponding stream index, if any.
int buf_size
Size of buf except extra allocated bytes.
int seq
RTSP command sequence number.
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
uint8_t * recvbuf
Reusable buffer for receiving packets.
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
#define RTSP_FLAG_CUSTOM_IO
Do all IO via the AVIOContext.
AVFormatContext * asf_ctx
The following are used for RTP/ASF streams.
int nb_rtsp_streams
number of items in the 'rtsp_streams' variable
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
#define AV_BASE64_SIZE(x)
Calculate the output size needed to base64-encode x bytes to a null-terminated string.
void * cur_transport_priv
RTSPStream->transport_priv of the last stream that we read a packet from.
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
GLsizei GLboolean const GLfloat * value
#define RTSP_TCP_MAX_PACKET_SIZE
enum AVStreamParseType need_parsing
HTTP tunneled - not a proper transport mode as such, only for use via AVOptions.
This describes a single item in the "Transport:" line of one stream as negotiated by the SETUP RTSP c...
RTSP over HTTP (tunneling)
static void get_word_until_chars(char *buf, int buf_size, const char *sep, const char **pp)
int ff_rtsp_tcp_write_packet(AVFormatContext *s, RTSPStream *rtsp_st)
Send buffered packets over TCP.
static void get_word(char *buf, int buf_size, const char **pp)
const RTPDynamicProtocolHandler * dynamic_handler
The following are used for dynamic protocols (rtpdec_*.c/rdt.c)
Usually treated as AVMEDIA_TYPE_DATA.
int(* parse_sdp_a_line)(AVFormatContext *s, int st_index, PayloadContext *priv_data, const char *line)
Parse the a= line from the sdp field.
RDTDemuxContext * ff_rdt_parse_open(AVFormatContext *ic, int first_stream_of_set_idx, void *priv_data, const RTPDynamicProtocolHandler *handler)
Allocate and init the RDT parsing context.
int ffurl_get_file_handle(URLContext *h)
Return the file descriptor associated with this URL.
#define AVERROR_EXIT
Immediate exit was requested; the called function should not be restarted.
int sdp_port
The following are used only in SDP, not RTSP.
struct MpegTSContext * ts
The following are used for parsing raw mpegts in udp.
int stale
Auth ok, but needs to be resent with a new nonce.
const uint8_t ff_log2_tab[256]
int sdp_payload_type
payload type
int nb_exclude_source_addrs
Number of source-specific multicast exclude source IP addresses (from SDP content) ...
void ffio_free_dyn_buf(AVIOContext **s)
Free a dynamic buffer.
static int read_header(FFV1Context *f)
int ff_rtp_send_rtcp_feedback(RTPDemuxContext *s, URLContext *fd, AVIOContext *avio)
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
enum RTSPLowerTransport lower_transport
the negotiated network layer transport protocol; e.g.
char addr[128]
Source-specific multicast include source IP address (from SDP content)
#define AV_LOG_INFO
Standard information.
struct sockaddr_storage sdp_ip
IP address (from SDP content)
char * av_strdup(const char *s)
Duplicate a string.
void ff_rtsp_undo_setup(AVFormatContext *s, int send_packets)
Undo the effect of ff_rtsp_make_setup_request, close the transport_priv and rtp_handle fields...
int ff_check_interrupt(AVIOInterruptCB *cb)
Check if the user has requested to interrupt a blocking function associated with cb.
AVIOContext * pb
I/O context.
int media_type_mask
Mask of all requested media types.
#define FF_RTP_FLAG_OPTS(ctx, fieldname)
#define RTSP_FLAG_OPTS(name, longname)
uint32_t ssrc
SSRC for this stream, to allow identifying RTCP packets before the first RTP packet.
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
#define RTSP_FLAG_FILTER_SRC
Filter incoming UDP packets - receive packets only from the right source address and port...
enum RTSPTransport transport
the negotiated data/packet transport protocol; e.g.
#define RTSPS_DEFAULT_PORT
int ff_rtsp_setup_output_streams(AVFormatContext *s, const char *addr)
Announce the stream to the server and set up the RTSPStream child objects for each media stream...
#define AVIO_FLAG_READ_WRITE
read-write pseudo flag
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
int rtsp_flags
Various option flags for the RTSP muxer/demuxer.
Describe the class of an AVClass context structure.
void ff_real_parse_sdp_a_line(AVFormatContext *s, int stream_index, const char *line)
Parse a server-related SDP line.
PayloadContext * dynamic_protocol_context
private data associated with the dynamic protocol
char last_reply[2048]
The last reply of the server to a RTSP command.
enum RTSPTransport transport
data/packet transport protocol; e.g.
int avpriv_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, const uint8_t *buf, int len)
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
#define RTSP_MEDIATYPE_OPTS(name, longname)
int64_t ff_rtp_queued_packet_time(RTPDemuxContext *s)
int ff_rtsp_tcp_read_packet(AVFormatContext *s, RTSPStream **prtsp_st, uint8_t *buf, int buf_size)
Receive one RTP packet from an TCP interleaved RTSP stream.
void ff_rtsp_close_streams(AVFormatContext *s)
Close and free all streams within the RTSP (de)muxer.
int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, URLContext *fd, AVIOContext *avio, int count)
some rtp servers assume client is dead if they don't hear from them...
const char * name
Name of the codec described by this descriptor.
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
This structure contains the data a format has to probe a file.
#define RTSP_DEFAULT_NB_AUDIO_CHANNELS
char * ff_http_auth_create_response(HTTPAuthState *state, const char *auth, const char *path, const char *method)
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes...
#define RTP_PT_IS_RTCP(x)
This struct describes the properties of a single codec described by an AVCodecID. ...
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
int64_t av_gettime_relative(void)
Get the current time in microseconds since some unspecified starting point.
#define flags(name, subs,...)
enum RTSPServerType server_type
brand of server that we're talking to; e.g.
int ffurl_close(URLContext *h)
int64_t start_time
Position of the first frame of the component, in AV_TIME_BASE fractional seconds. ...
enum RTSPClientState state
indicator of whether we are currently receiving data from the server.
int sample_rate
Audio only.
int ff_rtsp_fetch_packet(AVFormatContext *s, AVPacket *pkt)
Receive one packet from the RTSPStreams set up in the AVFormatContext (which should contain a RTSPSta...
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
int ff_rtsp_send_cmd_with_content(AVFormatContext *s, const char *method, const char *url, const char *headers, RTSPMessageHeader *reply, unsigned char **content_ptr, const unsigned char *send_content, int send_content_length)
Send a command to the RTSP server and wait for the reply.
static const AVOption sdp_options[]
const OptionDef options[]
int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s, AVStream *st, URLContext *handle, int packet_size, int idx)
static AVDictionary * map_to_opts(RTSPState *rt)
int ffio_init_context(AVIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
int need_subscription
The following are used for Real stream selection.
int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
Read as many bytes as possible (up to size), calling the read function multiple times if necessary...
void ff_rdt_calc_response_and_checksum(char response[41], char chksum[9], const char *challenge)
Calculate the response (RealChallenge2 in the RTSP header) to the challenge (RealChallenge1 in the RT...
struct AVInputFormat * iformat
The input container format.
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
void ff_http_auth_handle_header(HTTPAuthState *state, const char *key, const char *value)
int ff_rtsp_read_reply(AVFormatContext *s, RTSPMessageHeader *reply, unsigned char **content_ptr, int return_on_interleaved_data, const char *method)
Read a RTSP message from the server, or prepare to read data packets if we're reading data interleave...
int stimeout
timeout of socket i/o operations.
int ff_rtsp_send_cmd_async(AVFormatContext *s, const char *method, const char *url, const char *headers)
Send a command to the RTSP server without waiting for the reply.
static void get_word_sep(char *buf, int buf_size, const char *sep, const char **pp)
TCP; interleaved in RTSP.
HTTPAuthState auth_state
authentication state
#define RTSP_RTP_PORT_MIN
char control_url[1024]
url for this stream (from SDP)
void * priv_data
Format private data.
int ff_rtsp_setup_input_streams(AVFormatContext *s, RTSPMessageHeader *reply)
Get the description of the stream and set up the RTSPStream child objects.
void ff_rtp_parse_close(RTPDemuxContext *s)
int sdp_ttl
IP Time-To-Live (from SDP content)
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
char * protocol_blacklist
',' separated list of disallowed protocols.
int64_t duration
Duration of the stream, in AV_TIME_BASE fractional seconds.
int lower_transport_mask
A mask with all requested transport methods.
unbuffered private I/O API
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
AVCodecParameters * codecpar
Codec parameters associated with this stream.
#define av_malloc_array(a, b)
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
int ff_rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, uint8_t **bufptr, int len)
Parse an RTP or RTCP packet directly sent as a buffer.
struct sockaddr_storage destination
destination IP address
int ff_rtp_set_remote_url(URLContext *h, const char *uri)
If no filename is given to av_open_input_file because you want to get the local port first...
void avpriv_mpegts_parse_close(MpegTSContext *ts)
const RTPDynamicProtocolHandler * ff_rtp_handler_find_by_id(int id, enum AVMediaType codec_type)
Find a registered rtp dynamic protocol handler with a matching codec ID.
#define RTP_REORDER_QUEUE_DEFAULT_SIZE
int interleaved_min
interleave IDs; copies of RTSPTransportField->interleaved_min/max for the selected transport...
This structure stores compressed data.
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
int server_port_min
UDP unicast server port range; the ports to which we should connect to receive unicast UDP RTP/RTCP d...
void ff_rtsp_close_connections(AVFormatContext *s)
Close all connection handles within the RTSP (de)muxer.
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
static const AVOption rtp_options[]
int ffurl_read(URLContext *h, unsigned char *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf...
URLContext * rtp_handle
RTP stream handle (if UDP)
#define AV_NOPTS_VALUE
Undefined timestamp value.
const RTPDynamicProtocolHandler * ff_rtp_handler_find_by_name(const char *name, enum AVMediaType codec_type)
Find a registered rtp dynamic protocol handler with the specified name.
int port_min
UDP multicast port range; the ports to which we should connect to receive multicast UDP data...
void * transport_priv
RTP/RDT parse context if input, RTP AVFormatContext if output.
No authentication specified.
uint8_t pi<< 24) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_U8,(uint64_t)((*(constuint8_t *) pi-0x80U))<< 56) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S16,(uint64_t)(*(constint16_t *) pi)<< 48) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S32,(uint64_t)(*(constint32_t *) pi)<< 32) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S64,(*(constint64_t *) pi >>56)+0x80) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S64,*(constint64_t *) pi *(1.0f/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S64,*(constint64_t *) pi *(1.0/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_FLT, llrintf(*(constfloat *) pi *(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_DBL, llrint(*(constdouble *) pi *(INT64_C(1)<< 63)))#defineFMT_PAIR_FUNC(out, in) staticconv_func_type *constfmt_pair_to_conv_functions[AV_SAMPLE_FMT_NB *AV_SAMPLE_FMT_NB]={FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S64),};staticvoidcpy1(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, len);}staticvoidcpy2(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 2 *len);}staticvoidcpy4(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 4 *len);}staticvoidcpy8(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 8 *len);}AudioConvert *swri_audio_convert_alloc(enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, constint *ch_map, intflags){AudioConvert *ctx;conv_func_type *f=fmt_pair_to_conv_functions[av_get_packed_sample_fmt(out_fmt)+AV_SAMPLE_FMT_NB *av_get_packed_sample_fmt(in_fmt)];if(!f) returnNULL;ctx=av_mallocz(sizeof(*ctx));if(!ctx) returnNULL;if(channels==1){in_fmt=av_get_planar_sample_fmt(in_fmt);out_fmt=av_get_planar_sample_fmt(out_fmt);}ctx->channels=channels;ctx->conv_f=f;ctx->ch_map=ch_map;if(in_fmt==AV_SAMPLE_FMT_U8||in_fmt==AV_SAMPLE_FMT_U8P) memset(ctx->silence, 0x80, sizeof(ctx->silence));if(out_fmt==in_fmt &&!ch_map){switch(av_get_bytes_per_sample(in_fmt)){case1:ctx->simd_f=cpy1;break;case2:ctx->simd_f=cpy2;break;case4:ctx->simd_f=cpy4;break;case8:ctx->simd_f=cpy8;break;}}if(HAVE_X86ASM &&1) swri_audio_convert_init_x86(ctx, out_fmt, in_fmt, channels);if(ARCH_ARM) swri_audio_convert_init_arm(ctx, out_fmt, in_fmt, channels);if(ARCH_AARCH64) swri_audio_convert_init_aarch64(ctx, out_fmt, in_fmt, channels);returnctx;}voidswri_audio_convert_free(AudioConvert **ctx){av_freep(ctx);}intswri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, intlen){intch;intoff=0;constintos=(out->planar?1:out->ch_count)*out->bps;unsignedmisaligned=0;av_assert0(ctx->channels==out->ch_count);if(ctx->in_simd_align_mask){intplanes=in->planar?in->ch_count:1;unsignedm=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) in->ch[ch];misaligned|=m &ctx->in_simd_align_mask;}if(ctx->out_simd_align_mask){intplanes=out->planar?out->ch_count:1;unsignedm=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) out->ch[ch];misaligned|=m &ctx->out_simd_align_mask;}if(ctx->simd_f &&!ctx->ch_map &&!misaligned){off=len &~15;av_assert1(off >=0);av_assert1(off<=len);av_assert2(ctx->channels==SWR_CH_MAX||!in->ch[ctx->channels]);if(off >0){if(out->planar==in->planar){intplanes=out->planar?out->ch_count:1;for(ch=0;ch< planes;ch++){ctx->simd_f(out-> ch ch
int client_port_min
UDP client ports; these should be the local ports of the UDP RTP (and RTCP) sockets over which we rec...