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.

97 lines
3.3KB

  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include "filter_biquad.h"
  27. #include "utility/dspinst.h"
  28. void AudioFilterBiquad::update(void)
  29. {
  30. audio_block_t *block;
  31. int32_t b0, b1, b2, a1, a2, sum;
  32. uint32_t in2, out2, bprev, aprev, flag;
  33. uint32_t *data, *end;
  34. int32_t *state;
  35. block = receiveWritable();
  36. if (!block) return;
  37. end = (uint32_t *)(block->data) + AUDIO_BLOCK_SAMPLES/2;
  38. state = (int32_t *)definition;
  39. do {
  40. b0 = *state++;
  41. b1 = *state++;
  42. b2 = *state++;
  43. a1 = *state++;
  44. a2 = *state++;
  45. bprev = *state++;
  46. aprev = *state++;
  47. sum = *state & 0x3FFF;
  48. data = end - AUDIO_BLOCK_SAMPLES/2;
  49. do {
  50. in2 = *data;
  51. sum = signed_multiply_accumulate_32x16b(sum, b0, in2);
  52. sum = signed_multiply_accumulate_32x16t(sum, b1, bprev);
  53. sum = signed_multiply_accumulate_32x16b(sum, b2, bprev);
  54. sum = signed_multiply_accumulate_32x16t(sum, a1, aprev);
  55. sum = signed_multiply_accumulate_32x16b(sum, a2, aprev);
  56. out2 = signed_saturate_rshift(sum, 16, 14);
  57. sum &= 0x3FFF;
  58. sum = signed_multiply_accumulate_32x16t(sum, b0, in2);
  59. sum = signed_multiply_accumulate_32x16b(sum, b1, in2);
  60. sum = signed_multiply_accumulate_32x16t(sum, b2, bprev);
  61. sum = signed_multiply_accumulate_32x16b(sum, a1, out2);
  62. sum = signed_multiply_accumulate_32x16t(sum, a2, aprev);
  63. bprev = in2;
  64. aprev = pack_16x16(
  65. signed_saturate_rshift(sum, 16, 14), out2);
  66. sum &= 0x3FFF;
  67. bprev = in2;
  68. *data++ = aprev;
  69. } while (data < end);
  70. flag = *state & 0x80000000;
  71. *state++ = sum | flag;
  72. *(state-2) = aprev;
  73. *(state-3) = bprev;
  74. } while (flag);
  75. transmit(block);
  76. release(block);
  77. }
  78. void AudioFilterBiquad::setCoefficients(uint32_t stage, const int *coefficients)
  79. {
  80. if (stage >= 4) return;
  81. int32_t *dest = definition + (stage << 3);
  82. __disable_irq();
  83. if (stage > 0) *(dest - 1) |= 0x80000000;
  84. *dest++ = *coefficients++;
  85. *dest++ = *coefficients++;
  86. *dest++ = *coefficients++;
  87. *dest++ = *coefficients++ * -1;
  88. *dest++ = *coefficients++ * -1;
  89. *dest++ = 0;
  90. *dest++ = 0;
  91. *dest &= 0x80000000;
  92. __enable_irq();
  93. }