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.

566 lines
21KB

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