You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

585 lines
23KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * Haivision Open SRT (Secure Reliable Transport) protocol
  21. */
  22. #include <srt/srt.h>
  23. #include "libavutil/avassert.h"
  24. #include "libavutil/opt.h"
  25. #include "libavutil/parseutils.h"
  26. #include "libavutil/time.h"
  27. #include "avformat.h"
  28. #include "internal.h"
  29. #include "network.h"
  30. #include "os_support.h"
  31. #include "url.h"
  32. /* This is for MPEG-TS and it's a default SRTO_PAYLOADSIZE for SRTT_LIVE (8 TS packets) */
  33. #ifndef SRT_LIVE_DEFAULT_PAYLOAD_SIZE
  34. #define SRT_LIVE_DEFAULT_PAYLOAD_SIZE 1316
  35. #endif
  36. /* This is the maximum payload size for Live mode, should you have a different payload type than MPEG-TS */
  37. #ifndef SRT_LIVE_MAX_PAYLOAD_SIZE
  38. #define SRT_LIVE_MAX_PAYLOAD_SIZE 1456
  39. #endif
  40. enum SRTMode {
  41. SRT_MODE_CALLER = 0,
  42. SRT_MODE_LISTENER = 1,
  43. SRT_MODE_RENDEZVOUS = 2
  44. };
  45. typedef struct SRTContext {
  46. const AVClass *class;
  47. int fd;
  48. int eid;
  49. int64_t rw_timeout;
  50. int64_t listen_timeout;
  51. int recv_buffer_size;
  52. int send_buffer_size;
  53. int64_t maxbw;
  54. int pbkeylen;
  55. char *passphrase;
  56. int mss;
  57. int ffs;
  58. int ipttl;
  59. int iptos;
  60. int64_t inputbw;
  61. int oheadbw;
  62. int64_t latency;
  63. int tlpktdrop;
  64. int nakreport;
  65. int64_t connect_timeout;
  66. int payload_size;
  67. int64_t rcvlatency;
  68. int64_t peerlatency;
  69. enum SRTMode mode;
  70. } SRTContext;
  71. #define D AV_OPT_FLAG_DECODING_PARAM
  72. #define E AV_OPT_FLAG_ENCODING_PARAM
  73. #define OFFSET(x) offsetof(SRTContext, x)
  74. static const AVOption libsrt_options[] = {
  75. { "rw_timeout", "Timeout of socket I/O operations", OFFSET(rw_timeout), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  76. { "listen_timeout", "Connection awaiting timeout", OFFSET(listen_timeout), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  77. { "send_buffer_size", "Socket send buffer size (in bytes)", OFFSET(send_buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
  78. { "recv_buffer_size", "Socket receive buffer size (in bytes)", OFFSET(recv_buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
  79. { "maxbw", "Maximum bandwidth (bytes per second) that the connection can use", OFFSET(maxbw), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  80. { "pbkeylen", "Crypto key len in bytes {16,24,32} Default: 16 (128-bit)", OFFSET(pbkeylen), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 32, .flags = D|E },
  81. { "passphrase", "Crypto PBKDF2 Passphrase size[0,10..64] 0:disable crypto", OFFSET(passphrase), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
  82. { "mss", "The Maximum Segment Size", OFFSET(mss), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1500, .flags = D|E },
  83. { "ffs", "Flight flag size (window size) (in bytes)", OFFSET(ffs), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
  84. { "ipttl", "IP Time To Live", OFFSET(ipttl), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 255, .flags = D|E },
  85. { "iptos", "IP Type of Service", OFFSET(iptos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 255, .flags = D|E },
  86. { "inputbw", "Estimated input stream rate", OFFSET(inputbw), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  87. { "oheadbw", "MaxBW ceiling based on % over input stream rate", OFFSET(oheadbw), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 100, .flags = D|E },
  88. { "latency", "receiver delay to absorb bursts of missed packet retransmissions", OFFSET(latency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  89. { "tsbpddelay", "deprecated, same effect as latency option", OFFSET(latency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  90. { "rcvlatency", "receive latency", OFFSET(rcvlatency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  91. { "peerlatency", "peer latency", OFFSET(peerlatency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  92. { "tlpktdrop", "Enable receiver pkt drop", OFFSET(tlpktdrop), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, .flags = D|E },
  93. { "nakreport", "Enable receiver to send periodic NAK reports", OFFSET(nakreport), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, .flags = D|E },
  94. { "connect_timeout", "Connect timeout. Caller default: 3000, rendezvous (x 10)", OFFSET(connect_timeout), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  95. { "payload size", "maximum declared size of a packet transferred", OFFSET(payload_size), AV_OPT_TYPE_INT, { .i64 = SRT_LIVE_DEFAULT_PAYLOAD_SIZE }, -1, SRT_LIVE_MAX_PAYLOAD_SIZE, .flags = D|E },
  96. { "ts_size", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_LIVE_DEFAULT_PAYLOAD_SIZE }, INT_MIN, INT_MAX, .flags = D|E, "payload_size" },
  97. { "max_size", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_LIVE_MAX_PAYLOAD_SIZE }, INT_MIN, INT_MAX, .flags = D|E, "payload_size" },
  98. { "mode", "Connection mode (caller, listener, rendezvous)", OFFSET(mode), AV_OPT_TYPE_INT, { .i64 = SRT_MODE_CALLER }, SRT_MODE_CALLER, SRT_MODE_RENDEZVOUS, .flags = D|E, "mode" },
  99. { "caller", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_MODE_CALLER }, INT_MIN, INT_MAX, .flags = D|E, "mode" },
  100. { "listener", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_MODE_LISTENER }, INT_MIN, INT_MAX, .flags = D|E, "mode" },
  101. { "rendezvous", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_MODE_RENDEZVOUS }, INT_MIN, INT_MAX, .flags = D|E, "mode" },
  102. { NULL }
  103. };
  104. static int libsrt_neterrno(URLContext *h)
  105. {
  106. int err = srt_getlasterror(NULL);
  107. av_log(h, AV_LOG_ERROR, "%s\n", srt_getlasterror_str());
  108. if (err == SRT_EASYNCRCV)
  109. return AVERROR(EAGAIN);
  110. return AVERROR_UNKNOWN;
  111. }
  112. static int libsrt_socket_nonblock(int socket, int enable)
  113. {
  114. int ret = srt_setsockopt(socket, 0, SRTO_SNDSYN, &enable, sizeof(enable));
  115. if (ret < 0)
  116. return ret;
  117. return srt_setsockopt(socket, 0, SRTO_RCVSYN, &enable, sizeof(enable));
  118. }
  119. static int libsrt_network_wait_fd(URLContext *h, int eid, int fd, int write)
  120. {
  121. int ret, len = 1;
  122. int modes = write ? SRT_EPOLL_OUT : SRT_EPOLL_IN;
  123. SRTSOCKET ready[1];
  124. if (srt_epoll_add_usock(eid, fd, &modes) < 0)
  125. return libsrt_neterrno(h);
  126. if (write) {
  127. ret = srt_epoll_wait(eid, 0, 0, ready, &len, POLLING_TIME, 0, 0, 0, 0);
  128. } else {
  129. ret = srt_epoll_wait(eid, ready, &len, 0, 0, POLLING_TIME, 0, 0, 0, 0);
  130. }
  131. if (ret < 0) {
  132. if (srt_getlasterror(NULL) == SRT_ETIMEOUT)
  133. ret = AVERROR(EAGAIN);
  134. else
  135. ret = libsrt_neterrno(h);
  136. } else {
  137. ret = 0;
  138. }
  139. if (srt_epoll_remove_usock(eid, fd) < 0)
  140. return libsrt_neterrno(h);
  141. return ret;
  142. }
  143. /* TODO de-duplicate code from ff_network_wait_fd_timeout() */
  144. static int libsrt_network_wait_fd_timeout(URLContext *h, int eid, int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb)
  145. {
  146. int ret;
  147. int64_t wait_start = 0;
  148. while (1) {
  149. if (ff_check_interrupt(int_cb))
  150. return AVERROR_EXIT;
  151. ret = libsrt_network_wait_fd(h, eid, fd, write);
  152. if (ret != AVERROR(EAGAIN))
  153. return ret;
  154. if (timeout > 0) {
  155. if (!wait_start)
  156. wait_start = av_gettime_relative();
  157. else if (av_gettime_relative() - wait_start > timeout)
  158. return AVERROR(ETIMEDOUT);
  159. }
  160. }
  161. }
  162. static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, URLContext *h, int timeout)
  163. {
  164. int ret;
  165. int reuse = 1;
  166. if (srt_setsockopt(fd, SOL_SOCKET, SRTO_REUSEADDR, &reuse, sizeof(reuse))) {
  167. av_log(h, AV_LOG_WARNING, "setsockopt(SRTO_REUSEADDR) failed\n");
  168. }
  169. ret = srt_bind(fd, addr, addrlen);
  170. if (ret)
  171. return libsrt_neterrno(h);
  172. ret = srt_listen(fd, 1);
  173. if (ret)
  174. return libsrt_neterrno(h);
  175. while ((ret = libsrt_network_wait_fd_timeout(h, eid, fd, 1, timeout, &h->interrupt_callback))) {
  176. switch (ret) {
  177. case AVERROR(ETIMEDOUT):
  178. continue;
  179. default:
  180. return ret;
  181. }
  182. }
  183. ret = srt_accept(fd, NULL, NULL);
  184. if (ret < 0)
  185. return libsrt_neterrno(h);
  186. if (libsrt_socket_nonblock(ret, 1) < 0)
  187. av_log(h, AV_LOG_DEBUG, "libsrt_socket_nonblock failed\n");
  188. return ret;
  189. }
  190. static int libsrt_listen_connect(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, int timeout, URLContext *h, int will_try_next)
  191. {
  192. int ret;
  193. if (libsrt_socket_nonblock(fd, 1) < 0)
  194. av_log(h, AV_LOG_DEBUG, "ff_socket_nonblock failed\n");
  195. while ((ret = srt_connect(fd, addr, addrlen))) {
  196. ret = libsrt_neterrno(h);
  197. switch (ret) {
  198. case AVERROR(EINTR):
  199. if (ff_check_interrupt(&h->interrupt_callback))
  200. return AVERROR_EXIT;
  201. continue;
  202. case AVERROR(EINPROGRESS):
  203. case AVERROR(EAGAIN):
  204. ret = libsrt_network_wait_fd_timeout(h, eid, fd, 1, timeout, &h->interrupt_callback);
  205. if (ret < 0)
  206. return ret;
  207. ret = srt_getlasterror(NULL);
  208. srt_clearlasterror();
  209. if (ret != 0) {
  210. char buf[128];
  211. ret = AVERROR(ret);
  212. av_strerror(ret, buf, sizeof(buf));
  213. if (will_try_next)
  214. av_log(h, AV_LOG_WARNING,
  215. "Connection to %s failed (%s), trying next address\n",
  216. h->filename, buf);
  217. else
  218. av_log(h, AV_LOG_ERROR, "Connection to %s failed: %s\n",
  219. h->filename, buf);
  220. }
  221. default:
  222. return ret;
  223. }
  224. }
  225. return ret;
  226. }
  227. static int libsrt_setsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char * optnamestr, const void * optval, int optlen)
  228. {
  229. if (srt_setsockopt(fd, 0, optname, optval, optlen) < 0) {
  230. av_log(h, AV_LOG_ERROR, "failed to set option %s on socket: %s\n", optnamestr, srt_getlasterror_str());
  231. return AVERROR(EIO);
  232. }
  233. return 0;
  234. }
  235. /* - The "POST" options can be altered any time on a connected socket.
  236. They MAY have also some meaning when set prior to connecting; such
  237. option is SRTO_RCVSYN, which makes connect/accept call asynchronous.
  238. Because of that this option is treated special way in this app. */
  239. static int libsrt_set_options_post(URLContext *h, int fd)
  240. {
  241. SRTContext *s = h->priv_data;
  242. if ((s->inputbw >= 0 && libsrt_setsockopt(h, fd, SRTO_INPUTBW, "SRTO_INPUTBW", &s->inputbw, sizeof(s->inputbw)) < 0) ||
  243. (s->oheadbw >= 0 && libsrt_setsockopt(h, fd, SRTO_OHEADBW, "SRTO_OHEADBW", &s->oheadbw, sizeof(s->oheadbw)) < 0)) {
  244. return AVERROR(EIO);
  245. }
  246. return 0;
  247. }
  248. /* - The "PRE" options must be set prior to connecting and can't be altered
  249. on a connected socket, however if set on a listening socket, they are
  250. derived by accept-ed socket. */
  251. static int libsrt_set_options_pre(URLContext *h, int fd)
  252. {
  253. SRTContext *s = h->priv_data;
  254. int yes = 1;
  255. int latency = s->latency / 1000;
  256. int rcvlatency = s->rcvlatency / 1000;
  257. int peerlatency = s->peerlatency / 1000;
  258. int connect_timeout = s->connect_timeout;
  259. if ((s->mode == SRT_MODE_RENDEZVOUS && libsrt_setsockopt(h, fd, SRTO_RENDEZVOUS, "SRTO_RENDEZVOUS", &yes, sizeof(yes)) < 0) ||
  260. (s->maxbw >= 0 && libsrt_setsockopt(h, fd, SRTO_MAXBW, "SRTO_MAXBW", &s->maxbw, sizeof(s->maxbw)) < 0) ||
  261. (s->pbkeylen >= 0 && libsrt_setsockopt(h, fd, SRTO_PBKEYLEN, "SRTO_PBKEYLEN", &s->pbkeylen, sizeof(s->pbkeylen)) < 0) ||
  262. (s->passphrase && libsrt_setsockopt(h, fd, SRTO_PASSPHRASE, "SRTO_PASSPHRASE", s->passphrase, strlen(s->passphrase)) < 0) ||
  263. (s->mss >= 0 && libsrt_setsockopt(h, fd, SRTO_MSS, "SRTO_MMS", &s->mss, sizeof(s->mss)) < 0) ||
  264. (s->ffs >= 0 && libsrt_setsockopt(h, fd, SRTO_FC, "SRTO_FC", &s->ffs, sizeof(s->ffs)) < 0) ||
  265. (s->ipttl >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTTL, "SRTO_UPTTL", &s->ipttl, sizeof(s->ipttl)) < 0) ||
  266. (s->iptos >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTOS, "SRTO_IPTOS", &s->iptos, sizeof(s->iptos)) < 0) ||
  267. (s->latency >= 0 && libsrt_setsockopt(h, fd, SRTO_LATENCY, "SRTO_LATENCY", &latency, sizeof(latency)) < 0) ||
  268. (s->rcvlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_RCVLATENCY, "SRTO_RCVLATENCY", &rcvlatency, sizeof(rcvlatency)) < 0) ||
  269. (s->peerlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_PEERLATENCY, "SRTO_PEERLATENCY", &peerlatency, sizeof(peerlatency)) < 0) ||
  270. (s->tlpktdrop >= 0 && libsrt_setsockopt(h, fd, SRTO_TLPKTDROP, "SRTO_TLPKDROP", &s->tlpktdrop, sizeof(s->tlpktdrop)) < 0) ||
  271. (s->nakreport >= 0 && libsrt_setsockopt(h, fd, SRTO_NAKREPORT, "SRTO_NAKREPORT", &s->nakreport, sizeof(s->nakreport)) < 0) ||
  272. (connect_timeout >= 0 && libsrt_setsockopt(h, fd, SRTO_CONNTIMEO, "SRTO_CONNTIMEO", &connect_timeout, sizeof(connect_timeout)) < 0) ||
  273. (s->payload_size >= 0 && libsrt_setsockopt(h, fd, SRTO_PAYLOADSIZE, "SRTO_PAYLOADSIZE", &s->payload_size, sizeof(s->payload_size)) < 0) ||
  274. ((h->flags & AVIO_FLAG_WRITE) && libsrt_setsockopt(h, fd, SRTO_SENDER, "SRTO_SENDER", &yes, sizeof(yes)) < 0)) {
  275. return AVERROR(EIO);
  276. }
  277. return 0;
  278. }
  279. static int libsrt_setup(URLContext *h, const char *uri, int flags)
  280. {
  281. struct addrinfo hints = { 0 }, *ai, *cur_ai;
  282. int port, fd = -1;
  283. SRTContext *s = h->priv_data;
  284. const char *p;
  285. char buf[256];
  286. int ret;
  287. char hostname[1024],proto[1024],path[1024];
  288. char portstr[10];
  289. int open_timeout = 5000000;
  290. int eid;
  291. eid = srt_epoll_create();
  292. if (eid < 0)
  293. return libsrt_neterrno(h);
  294. s->eid = eid;
  295. av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
  296. &port, path, sizeof(path), uri);
  297. if (strcmp(proto, "srt"))
  298. return AVERROR(EINVAL);
  299. if (port <= 0 || port >= 65536) {
  300. av_log(h, AV_LOG_ERROR, "Port missing in uri\n");
  301. return AVERROR(EINVAL);
  302. }
  303. p = strchr(uri, '?');
  304. if (p) {
  305. if (av_find_info_tag(buf, sizeof(buf), "timeout", p)) {
  306. s->rw_timeout = strtol(buf, NULL, 10);
  307. }
  308. if (av_find_info_tag(buf, sizeof(buf), "listen_timeout", p)) {
  309. s->listen_timeout = strtol(buf, NULL, 10);
  310. }
  311. }
  312. if (s->rw_timeout >= 0) {
  313. open_timeout = h->rw_timeout = s->rw_timeout;
  314. }
  315. hints.ai_family = AF_UNSPEC;
  316. hints.ai_socktype = SOCK_DGRAM;
  317. snprintf(portstr, sizeof(portstr), "%d", port);
  318. if (s->mode == SRT_MODE_LISTENER)
  319. hints.ai_flags |= AI_PASSIVE;
  320. ret = getaddrinfo(hostname[0] ? hostname : NULL, portstr, &hints, &ai);
  321. if (ret) {
  322. av_log(h, AV_LOG_ERROR,
  323. "Failed to resolve hostname %s: %s\n",
  324. hostname, gai_strerror(ret));
  325. return AVERROR(EIO);
  326. }
  327. cur_ai = ai;
  328. restart:
  329. fd = srt_socket(cur_ai->ai_family, cur_ai->ai_socktype, 0);
  330. if (fd < 0) {
  331. ret = libsrt_neterrno(h);
  332. goto fail;
  333. }
  334. if ((ret = libsrt_set_options_pre(h, fd)) < 0) {
  335. goto fail;
  336. }
  337. /* Set the socket's send or receive buffer sizes, if specified.
  338. If unspecified or setting fails, system default is used. */
  339. if (s->recv_buffer_size > 0) {
  340. srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_RCVBUF, &s->recv_buffer_size, sizeof (s->recv_buffer_size));
  341. }
  342. if (s->send_buffer_size > 0) {
  343. srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_SNDBUF, &s->send_buffer_size, sizeof (s->send_buffer_size));
  344. }
  345. if (s->mode == SRT_MODE_LISTENER) {
  346. // multi-client
  347. if ((ret = libsrt_listen(s->eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, open_timeout / 1000)) < 0)
  348. goto fail1;
  349. fd = ret;
  350. } else {
  351. if (s->mode == SRT_MODE_RENDEZVOUS) {
  352. ret = srt_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
  353. if (ret)
  354. goto fail1;
  355. }
  356. if ((ret = libsrt_listen_connect(s->eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
  357. open_timeout / 1000, h, !!cur_ai->ai_next)) < 0) {
  358. if (ret == AVERROR_EXIT)
  359. goto fail1;
  360. else
  361. goto fail;
  362. }
  363. }
  364. if ((ret = libsrt_set_options_post(h, fd)) < 0) {
  365. goto fail;
  366. }
  367. h->is_streamed = 1;
  368. s->fd = fd;
  369. freeaddrinfo(ai);
  370. return 0;
  371. fail:
  372. if (cur_ai->ai_next) {
  373. /* Retry with the next sockaddr */
  374. cur_ai = cur_ai->ai_next;
  375. if (fd >= 0)
  376. srt_close(fd);
  377. ret = 0;
  378. goto restart;
  379. }
  380. fail1:
  381. if (fd >= 0)
  382. srt_close(fd);
  383. freeaddrinfo(ai);
  384. return ret;
  385. }
  386. static int libsrt_open(URLContext *h, const char *uri, int flags)
  387. {
  388. SRTContext *s = h->priv_data;
  389. const char * p;
  390. char buf[256];
  391. if (srt_startup() < 0) {
  392. return AVERROR_UNKNOWN;
  393. }
  394. /* SRT options (srt/srt.h) */
  395. p = strchr(uri, '?');
  396. if (p) {
  397. if (av_find_info_tag(buf, sizeof(buf), "maxbw", p)) {
  398. s->maxbw = strtoll(buf, NULL, 0);
  399. }
  400. if (av_find_info_tag(buf, sizeof(buf), "pbkeylen", p)) {
  401. s->pbkeylen = strtol(buf, NULL, 10);
  402. }
  403. if (av_find_info_tag(buf, sizeof(buf), "passphrase", p)) {
  404. s->passphrase = av_strndup(buf, strlen(buf));
  405. }
  406. if (av_find_info_tag(buf, sizeof(buf), "mss", p)) {
  407. s->mss = strtol(buf, NULL, 10);
  408. }
  409. if (av_find_info_tag(buf, sizeof(buf), "ffs", p)) {
  410. s->ffs = strtol(buf, NULL, 10);
  411. }
  412. if (av_find_info_tag(buf, sizeof(buf), "ipttl", p)) {
  413. s->ipttl = strtol(buf, NULL, 10);
  414. }
  415. if (av_find_info_tag(buf, sizeof(buf), "iptos", p)) {
  416. s->iptos = strtol(buf, NULL, 10);
  417. }
  418. if (av_find_info_tag(buf, sizeof(buf), "inputbw", p)) {
  419. s->inputbw = strtoll(buf, NULL, 10);
  420. }
  421. if (av_find_info_tag(buf, sizeof(buf), "oheadbw", p)) {
  422. s->oheadbw = strtoll(buf, NULL, 10);
  423. }
  424. if (av_find_info_tag(buf, sizeof(buf), "latency", p)) {
  425. s->latency = strtol(buf, NULL, 10);
  426. }
  427. if (av_find_info_tag(buf, sizeof(buf), "tsbpddelay", p)) {
  428. s->latency = strtol(buf, NULL, 10);
  429. }
  430. if (av_find_info_tag(buf, sizeof(buf), "rcvlatency", p)) {
  431. s->rcvlatency = strtol(buf, NULL, 10);
  432. }
  433. if (av_find_info_tag(buf, sizeof(buf), "peerlatency", p)) {
  434. s->peerlatency = strtol(buf, NULL, 10);
  435. }
  436. if (av_find_info_tag(buf, sizeof(buf), "tlpktdrop", p)) {
  437. s->tlpktdrop = strtol(buf, NULL, 10);
  438. }
  439. if (av_find_info_tag(buf, sizeof(buf), "nakreport", p)) {
  440. s->nakreport = strtol(buf, NULL, 10);
  441. }
  442. if (av_find_info_tag(buf, sizeof(buf), "connect_timeout", p)) {
  443. s->connect_timeout = strtol(buf, NULL, 10);
  444. }
  445. if (av_find_info_tag(buf, sizeof(buf), "payload_size", p)) {
  446. s->payload_size = strtol(buf, NULL, 10);
  447. }
  448. if (av_find_info_tag(buf, sizeof(buf), "mode", p)) {
  449. if (!strcmp(buf, "caller")) {
  450. s->mode = SRT_MODE_CALLER;
  451. } else if (!strcmp(buf, "listener")) {
  452. s->mode = SRT_MODE_LISTENER;
  453. } else if (!strcmp(buf, "rendezvous")) {
  454. s->mode = SRT_MODE_RENDEZVOUS;
  455. } else {
  456. return AVERROR(EIO);
  457. }
  458. }
  459. }
  460. h->max_packet_size = s->payload_size > 0 ? s->payload_size : SRT_LIVE_DEFAULT_PAYLOAD_SIZE;
  461. return libsrt_setup(h, uri, flags);
  462. }
  463. static int libsrt_read(URLContext *h, uint8_t *buf, int size)
  464. {
  465. SRTContext *s = h->priv_data;
  466. int ret;
  467. if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
  468. ret = libsrt_network_wait_fd_timeout(h, s->eid, s->fd, 0, h->rw_timeout, &h->interrupt_callback);
  469. if (ret)
  470. return ret;
  471. }
  472. ret = srt_recvmsg(s->fd, buf, size);
  473. if (ret < 0) {
  474. ret = libsrt_neterrno(h);
  475. }
  476. return ret;
  477. }
  478. static int libsrt_write(URLContext *h, const uint8_t *buf, int size)
  479. {
  480. SRTContext *s = h->priv_data;
  481. int ret;
  482. if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
  483. ret = libsrt_network_wait_fd_timeout(h, s->eid, s->fd, 1, h->rw_timeout, &h->interrupt_callback);
  484. if (ret)
  485. return ret;
  486. }
  487. ret = srt_sendmsg(s->fd, buf, size, -1, 0);
  488. if (ret < 0) {
  489. ret = libsrt_neterrno(h);
  490. }
  491. return ret;
  492. }
  493. static int libsrt_close(URLContext *h)
  494. {
  495. SRTContext *s = h->priv_data;
  496. srt_close(s->fd);
  497. srt_epoll_release(s->eid);
  498. srt_cleanup();
  499. return 0;
  500. }
  501. static int libsrt_get_file_handle(URLContext *h)
  502. {
  503. SRTContext *s = h->priv_data;
  504. return s->fd;
  505. }
  506. static const AVClass libsrt_class = {
  507. .class_name = "libsrt",
  508. .item_name = av_default_item_name,
  509. .option = libsrt_options,
  510. .version = LIBAVUTIL_VERSION_INT,
  511. };
  512. const URLProtocol ff_libsrt_protocol = {
  513. .name = "srt",
  514. .url_open = libsrt_open,
  515. .url_read = libsrt_read,
  516. .url_write = libsrt_write,
  517. .url_close = libsrt_close,
  518. .url_get_file_handle = libsrt_get_file_handle,
  519. .priv_data_size = sizeof(SRTContext),
  520. .flags = URL_PROTOCOL_FLAG_NETWORK,
  521. .priv_data_class = &libsrt_class,
  522. };