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.

245 lines
7.4KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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. * Reliable Internet Streaming Transport protocol
  21. */
  22. #include "libavutil/avassert.h"
  23. #include "libavutil/opt.h"
  24. #include "libavutil/parseutils.h"
  25. #include "libavutil/time.h"
  26. #include "avformat.h"
  27. #include "internal.h"
  28. #include "network.h"
  29. #include "os_support.h"
  30. #include "url.h"
  31. #include <librist/librist.h>
  32. // RIST_MAX_PACKET_SIZE - 28 minimum protocol overhead
  33. #define MAX_PAYLOAD_SIZE (10000-28)
  34. typedef struct RISTContext {
  35. const AVClass *class;
  36. int profile;
  37. int buffer_size;
  38. int packet_size;
  39. int log_level;
  40. int encryption;
  41. char *secret;
  42. struct rist_logging_settings logging_settings;
  43. struct rist_peer_config peer_config;
  44. struct rist_peer *peer;
  45. struct rist_ctx *ctx;
  46. } RISTContext;
  47. #define D AV_OPT_FLAG_DECODING_PARAM
  48. #define E AV_OPT_FLAG_ENCODING_PARAM
  49. #define OFFSET(x) offsetof(RISTContext, x)
  50. static const AVOption librist_options[] = {
  51. { "rist_profile","set profile", OFFSET(profile), AV_OPT_TYPE_INT, {.i64=RIST_PROFILE_MAIN}, 0, 2, .flags = D|E, "profile" },
  52. { "simple", NULL, 0, AV_OPT_TYPE_CONST, {.i64=RIST_PROFILE_SIMPLE}, 0, 0, .flags = D|E, "profile" },
  53. { "main", NULL, 0, AV_OPT_TYPE_CONST, {.i64=RIST_PROFILE_MAIN}, 0, 0, .flags = D|E, "profile" },
  54. { "advanced", NULL, 0, AV_OPT_TYPE_CONST, {.i64=RIST_PROFILE_ADVANCED}, 0, 0, .flags = D|E, "profile" },
  55. { "buffer_size", "set buffer_size in ms", OFFSET(buffer_size), AV_OPT_TYPE_INT, {.i64=0}, 0, 30000, .flags = D|E },
  56. { "pkt_size", "set packet size", OFFSET(packet_size), AV_OPT_TYPE_INT, {.i64=1316}, 1, MAX_PAYLOAD_SIZE, .flags = D|E },
  57. { "log_level", "set loglevel", OFFSET(log_level), AV_OPT_TYPE_INT, {.i64=RIST_LOG_INFO}, -1, INT_MAX, .flags = D|E },
  58. { "secret", "set encryption secret",OFFSET(secret), AV_OPT_TYPE_STRING,{.str=NULL}, 0, 0, .flags = D|E },
  59. { "encryption","set encryption type",OFFSET(encryption), AV_OPT_TYPE_INT ,{.i64=0}, 0, INT_MAX, .flags = D|E },
  60. { NULL }
  61. };
  62. static int risterr2ret(int err)
  63. {
  64. switch (err) {
  65. case RIST_ERR_MALLOC:
  66. return AVERROR(ENOMEM);
  67. default:
  68. return AVERROR_EXTERNAL;
  69. }
  70. }
  71. static int log_cb(void *arg, enum rist_log_level log_level, const char *msg)
  72. {
  73. int level;
  74. switch (log_level) {
  75. case RIST_LOG_ERROR: level = AV_LOG_ERROR; break;
  76. case RIST_LOG_WARN: level = AV_LOG_WARNING; break;
  77. case RIST_LOG_NOTICE: level = AV_LOG_INFO; break;
  78. case RIST_LOG_INFO: level = AV_LOG_VERBOSE; break;
  79. case RIST_LOG_DEBUG: level = AV_LOG_DEBUG; break;
  80. case RIST_LOG_DISABLE: level = AV_LOG_QUIET; break;
  81. default: level = AV_LOG_WARNING;
  82. }
  83. av_log(arg, level, "%s", msg);
  84. return 0;
  85. }
  86. static int librist_close(URLContext *h)
  87. {
  88. RISTContext *s = h->priv_data;
  89. int ret = 0;
  90. s->peer = NULL;
  91. if (s->ctx)
  92. ret = rist_destroy(s->ctx);
  93. s->ctx = NULL;
  94. return risterr2ret(ret);
  95. }
  96. static int librist_open(URLContext *h, const char *uri, int flags)
  97. {
  98. RISTContext *s = h->priv_data;
  99. struct rist_logging_settings *logging_settings = &s->logging_settings;
  100. struct rist_peer_config *peer_config = &s->peer_config;
  101. int ret;
  102. if ((flags & AVIO_FLAG_READ_WRITE) == AVIO_FLAG_READ_WRITE)
  103. return AVERROR(EINVAL);
  104. ret = rist_logging_set(&logging_settings, s->log_level, log_cb, h, NULL, NULL);
  105. if (ret < 0)
  106. return risterr2ret(ret);
  107. if (flags & AVIO_FLAG_WRITE) {
  108. h->max_packet_size = s->packet_size;
  109. ret = rist_sender_create(&s->ctx, s->profile, 0, logging_settings);
  110. }
  111. if (ret < 0)
  112. goto err;
  113. if (flags & AVIO_FLAG_READ) {
  114. h->max_packet_size = MAX_PAYLOAD_SIZE;
  115. ret = rist_receiver_create(&s->ctx, s->profile, logging_settings);
  116. }
  117. if (ret < 0)
  118. goto err;
  119. ret = rist_peer_config_defaults_set(peer_config);
  120. if (ret < 0)
  121. goto err;
  122. ret = rist_parse_address(uri, (const struct rist_peer_config **)&peer_config);
  123. if (ret < 0)
  124. goto err;
  125. if (((s->encryption == 128 || s->encryption == 256) && !s->secret) ||
  126. ((peer_config->key_size == 128 || peer_config->key_size == 256) && !peer_config->secret[0])) {
  127. av_log(h, AV_LOG_ERROR, "secret is mandatory if encryption is enabled\n");
  128. librist_close(h);
  129. return AVERROR(EINVAL);
  130. }
  131. if (s->secret && peer_config->secret[0] == 0)
  132. av_strlcpy(peer_config->secret, s->secret, RIST_MAX_STRING_SHORT);
  133. if (s->secret && (s->encryption == 128 || s->encryption == 256))
  134. peer_config->key_size = s->encryption;
  135. if (s->buffer_size) {
  136. peer_config->recovery_length_min = s->buffer_size;
  137. peer_config->recovery_length_max = s->buffer_size;
  138. }
  139. ret = rist_peer_create(s->ctx, &s->peer, &s->peer_config);
  140. if (ret < 0)
  141. goto err;
  142. ret = rist_start(s->ctx);
  143. if (ret < 0)
  144. goto err;
  145. return 0;
  146. err:
  147. librist_close(h);
  148. return risterr2ret(ret);
  149. }
  150. static int librist_read(URLContext *h, uint8_t *buf, int size)
  151. {
  152. RISTContext *s = h->priv_data;
  153. const struct rist_data_block *data_block;
  154. int ret;
  155. ret = rist_receiver_data_read(s->ctx, &data_block, POLLING_TIME);
  156. if (ret < 0)
  157. return risterr2ret(ret);
  158. if (ret == 0)
  159. return AVERROR(EAGAIN);
  160. if (data_block->payload_len > MAX_PAYLOAD_SIZE) {
  161. rist_receiver_data_block_free((struct rist_data_block**)&data_block);
  162. return AVERROR_EXTERNAL;
  163. }
  164. size = data_block->payload_len;
  165. memcpy(buf, data_block->payload, size);
  166. rist_receiver_data_block_free((struct rist_data_block**)&data_block);
  167. return size;
  168. }
  169. static int librist_write(URLContext *h, const uint8_t *buf, int size)
  170. {
  171. RISTContext *s = h->priv_data;
  172. struct rist_data_block data_block = { 0 };
  173. int ret;
  174. data_block.ts_ntp = 0;
  175. data_block.payload = buf;
  176. data_block.payload_len = size;
  177. ret = rist_sender_data_write(s->ctx, &data_block);
  178. if (ret < 0)
  179. return risterr2ret(ret);
  180. return ret;
  181. }
  182. static const AVClass librist_class = {
  183. .class_name = "librist",
  184. .item_name = av_default_item_name,
  185. .option = librist_options,
  186. .version = LIBAVUTIL_VERSION_INT,
  187. };
  188. const URLProtocol ff_librist_protocol = {
  189. .name = "rist",
  190. .url_open = librist_open,
  191. .url_read = librist_read,
  192. .url_write = librist_write,
  193. .url_close = librist_close,
  194. .priv_data_size = sizeof(RISTContext),
  195. .flags = URL_PROTOCOL_FLAG_NETWORK,
  196. .priv_data_class = &librist_class,
  197. };