codec_resample.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2011, Digium, Inc.
  5. *
  6. * Russell Bryant <russell@digium.com>
  7. * David Vossel <dvossel@digium.com>
  8. *
  9. * See http://www.asterisk.org for more information about
  10. * the Asterisk project. Please do not directly contact
  11. * any of the maintainers of this project for assistance;
  12. * the project provides a web site, mailing lists and IRC
  13. * channels for your use.
  14. *
  15. * This program is free software, distributed under the terms of
  16. * the GNU General Public License Version 2. See the LICENSE file
  17. * at the top of the source tree.
  18. */
  19. /*!
  20. * \file
  21. *
  22. * \brief Resample slinear audio
  23. *
  24. * \ingroup codecs
  25. */
  26. /*** MODULEINFO
  27. <support_level>core</support_level>
  28. ***/
  29. #include "asterisk.h"
  30. #include "speex/speex_resampler.h"
  31. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  32. #include "asterisk/module.h"
  33. #include "asterisk/translate.h"
  34. #include "asterisk/slin.h"
  35. #define OUTBUF_SIZE 8096
  36. static struct ast_translator *translators;
  37. static int trans_size;
  38. static int id_list[] = {
  39. AST_FORMAT_SLINEAR,
  40. AST_FORMAT_SLINEAR12,
  41. AST_FORMAT_SLINEAR16,
  42. AST_FORMAT_SLINEAR24,
  43. AST_FORMAT_SLINEAR32,
  44. AST_FORMAT_SLINEAR44,
  45. AST_FORMAT_SLINEAR48,
  46. AST_FORMAT_SLINEAR96,
  47. AST_FORMAT_SLINEAR192,
  48. };
  49. static int resamp_new(struct ast_trans_pvt *pvt)
  50. {
  51. int err;
  52. if (!(pvt->pvt = speex_resampler_init(1, ast_format_rate(&pvt->t->src_format), ast_format_rate(&pvt->t->dst_format), 5, &err))) {
  53. return -1;
  54. }
  55. return 0;
  56. }
  57. static void resamp_destroy(struct ast_trans_pvt *pvt)
  58. {
  59. SpeexResamplerState *resamp_pvt = pvt->pvt;
  60. speex_resampler_destroy(resamp_pvt);
  61. }
  62. static int resamp_framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
  63. {
  64. SpeexResamplerState *resamp_pvt = pvt->pvt;
  65. unsigned int out_samples = (OUTBUF_SIZE / sizeof(int16_t)) - pvt->samples;
  66. unsigned int in_samples;
  67. if (!f->datalen) {
  68. return -1;
  69. }
  70. in_samples = f->datalen / 2;
  71. speex_resampler_process_int(resamp_pvt,
  72. 0,
  73. f->data.ptr,
  74. &in_samples,
  75. pvt->outbuf.i16 + pvt->samples,
  76. &out_samples);
  77. pvt->samples += out_samples;
  78. pvt->datalen += out_samples * 2;
  79. return 0;
  80. }
  81. static int unload_module(void)
  82. {
  83. int res = 0;
  84. int idx;
  85. for (idx = 0; idx < trans_size; idx++) {
  86. res |= ast_unregister_translator(&translators[idx]);
  87. }
  88. ast_free(translators);
  89. return res;
  90. }
  91. static int load_module(void)
  92. {
  93. int res = 0;
  94. int x, y, idx = 0;
  95. trans_size = ARRAY_LEN(id_list) * ARRAY_LEN(id_list);
  96. if (!(translators = ast_calloc(1, sizeof(struct ast_translator) * trans_size))) {
  97. return AST_MODULE_LOAD_FAILURE;
  98. }
  99. for (x = 0; x < ARRAY_LEN(id_list); x++) {
  100. for (y = 0; y < ARRAY_LEN(id_list); y++) {
  101. if (x == y) {
  102. continue;
  103. }
  104. translators[idx].newpvt = resamp_new;
  105. translators[idx].destroy = resamp_destroy;
  106. translators[idx].framein = resamp_framein;
  107. translators[idx].desc_size = 0;
  108. translators[idx].buffer_samples = (OUTBUF_SIZE / sizeof(int16_t));
  109. translators[idx].buf_size = OUTBUF_SIZE;
  110. ast_format_set(&translators[idx].src_format, id_list[x], 0);
  111. ast_format_set(&translators[idx].dst_format, id_list[y], 0);
  112. snprintf(translators[idx].name, sizeof(translators[idx].name), "slin %dkhz -> %dkhz",
  113. ast_format_rate(&translators[idx].src_format), ast_format_rate(&translators[idx].dst_format));
  114. res |= ast_register_translator(&translators[idx]);
  115. idx++;
  116. }
  117. }
  118. return AST_MODULE_LOAD_SUCCESS;
  119. }
  120. AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "SLIN Resampling Codec");