res_format_attr_celt.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2011, Digium, Inc.
  5. *
  6. * David Vossel <dvossel@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*!
  19. * \file
  20. * \brief CELT format attribute interface
  21. *
  22. * \author David Vossel <dvossel@digium.com>
  23. */
  24. /*** MODULEINFO
  25. <support_level>core</support_level>
  26. ***/
  27. #include "asterisk.h"
  28. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  29. #include "asterisk/module.h"
  30. #include "asterisk/format.h"
  31. /*!
  32. * \brief CELT attribute structure.
  33. *
  34. * \note The only attribute that affects compatibility here is the sample rate.
  35. */
  36. struct celt_attr {
  37. unsigned int samplerate;
  38. unsigned int maxbitrate;
  39. unsigned int framesize;
  40. };
  41. static int celt_sdp_parse(struct ast_format_attr *format_attr, const char *attributes)
  42. {
  43. struct celt_attr *attr = (struct celt_attr *) format_attr;
  44. unsigned int val;
  45. if (sscanf(attributes, "framesize=%30u", &val) == 1) {
  46. attr->framesize = val;
  47. }
  48. return 0;
  49. }
  50. static void celt_sdp_generate(const struct ast_format_attr *format_attr, unsigned int payload, struct ast_str **str)
  51. {
  52. struct celt_attr *attr = (struct celt_attr *) format_attr;
  53. if (!attr->framesize) {
  54. return;
  55. }
  56. ast_str_append(str, 0, "a=fmtp:%u framesize=%u\r\n", payload, attr->framesize);
  57. }
  58. static enum ast_format_cmp_res celt_cmp(const struct ast_format_attr *fattr1, const struct ast_format_attr *fattr2)
  59. {
  60. struct celt_attr *attr1 = (struct celt_attr *) fattr1;
  61. struct celt_attr *attr2 = (struct celt_attr *) fattr2;
  62. if (attr1->samplerate == attr2->samplerate) {
  63. return AST_FORMAT_CMP_EQUAL;
  64. }
  65. return AST_FORMAT_CMP_NOT_EQUAL;
  66. }
  67. static int celt_get_val(const struct ast_format_attr *fattr, int key, void *result)
  68. {
  69. const struct celt_attr *attr = (struct celt_attr *) fattr;
  70. int *val = result;
  71. switch (key) {
  72. case CELT_ATTR_KEY_SAMP_RATE:
  73. *val = attr->samplerate;
  74. break;
  75. case CELT_ATTR_KEY_MAX_BITRATE:
  76. *val = attr->maxbitrate;
  77. break;
  78. case CELT_ATTR_KEY_FRAME_SIZE:
  79. *val = attr->framesize;
  80. break;
  81. default:
  82. ast_log(LOG_WARNING, "unknown attribute type %d\n", key);
  83. return -1;
  84. }
  85. return 0;
  86. }
  87. static int celt_isset(const struct ast_format_attr *fattr, va_list ap)
  88. {
  89. enum celt_attr_keys key;
  90. const struct celt_attr *attr = (struct celt_attr *) fattr;
  91. for (key = va_arg(ap, int);
  92. key != AST_FORMAT_ATTR_END;
  93. key = va_arg(ap, int))
  94. {
  95. switch (key) {
  96. case CELT_ATTR_KEY_SAMP_RATE:
  97. if (attr->samplerate != (va_arg(ap, int))) {
  98. return -1;
  99. }
  100. break;
  101. case CELT_ATTR_KEY_MAX_BITRATE:
  102. if (attr->maxbitrate != (va_arg(ap, int))) {
  103. return -1;
  104. }
  105. break;
  106. case CELT_ATTR_KEY_FRAME_SIZE:
  107. if (attr->framesize != (va_arg(ap, int))) {
  108. return -1;
  109. }
  110. break;
  111. default:
  112. ast_log(LOG_WARNING, "unknown attribute type %u\n", key);
  113. return -1;
  114. }
  115. }
  116. return 0;
  117. }
  118. static int celt_getjoint(const struct ast_format_attr *fattr1, const struct ast_format_attr *fattr2, struct ast_format_attr *result)
  119. {
  120. struct celt_attr *attr1 = (struct celt_attr *) fattr1;
  121. struct celt_attr *attr2 = (struct celt_attr *) fattr2;
  122. struct celt_attr *attr_res = (struct celt_attr *) result;
  123. /* sample rate is the only attribute that has any bearing on if joint capabilities exist or not */
  124. if (attr1->samplerate != attr2->samplerate) {
  125. return -1;
  126. }
  127. /* either would work, they are guaranteed the same at this point. */
  128. attr_res->samplerate = attr1->samplerate;
  129. /* Take the lowest max bitrate */
  130. attr_res->maxbitrate = MIN(attr1->maxbitrate, attr2->maxbitrate);
  131. attr_res->framesize = attr2->framesize; /* TODO figure out what joint framesize means */
  132. return 0;
  133. }
  134. static void celt_set(struct ast_format_attr *fattr, va_list ap)
  135. {
  136. enum celt_attr_keys key;
  137. struct celt_attr *attr = (struct celt_attr *) fattr;
  138. for (key = va_arg(ap, int);
  139. key != AST_FORMAT_ATTR_END;
  140. key = va_arg(ap, int))
  141. {
  142. switch (key) {
  143. case CELT_ATTR_KEY_SAMP_RATE:
  144. attr->samplerate = (va_arg(ap, int));
  145. break;
  146. case CELT_ATTR_KEY_MAX_BITRATE:
  147. attr->maxbitrate = (va_arg(ap, int));
  148. break;
  149. case CELT_ATTR_KEY_FRAME_SIZE:
  150. attr->framesize = (va_arg(ap, int));
  151. break;
  152. default:
  153. ast_log(LOG_WARNING, "unknown attribute type %u\n", key);
  154. }
  155. }
  156. }
  157. static struct ast_format_attr_interface celt_interface = {
  158. .id = AST_FORMAT_CELT,
  159. .format_attr_cmp = celt_cmp,
  160. .format_attr_get_joint = celt_getjoint,
  161. .format_attr_set = celt_set,
  162. .format_attr_isset = celt_isset,
  163. .format_attr_get_val = celt_get_val,
  164. .format_attr_sdp_parse = celt_sdp_parse,
  165. .format_attr_sdp_generate = celt_sdp_generate,
  166. };
  167. static int load_module(void)
  168. {
  169. if (ast_format_attr_reg_interface(&celt_interface)) {
  170. return AST_MODULE_LOAD_DECLINE;
  171. }
  172. return AST_MODULE_LOAD_SUCCESS;
  173. }
  174. static int unload_module(void)
  175. {
  176. ast_format_attr_unreg_interface(&celt_interface);
  177. return 0;
  178. }
  179. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "CELT Format Attribute Module",
  180. .load = load_module,
  181. .unload = unload_module,
  182. .load_pri = AST_MODPRI_CHANNEL_DEPEND,
  183. );