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.

112 lines
3.6KB

  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. #if defined(KINETISK)
  29. void AudioFilterBiquad::update(void)
  30. {
  31. audio_block_t *block;
  32. int32_t b0, b1, b2, a1, a2, sum;
  33. uint32_t in2, out2, bprev, aprev, flag;
  34. uint32_t *data, *end;
  35. int32_t *state;
  36. block = receiveWritable();
  37. if (!block) return;
  38. end = (uint32_t *)(block->data) + AUDIO_BLOCK_SAMPLES/2;
  39. state = (int32_t *)definition;
  40. do {
  41. b0 = *state++;
  42. b1 = *state++;
  43. b2 = *state++;
  44. a1 = *state++;
  45. a2 = *state++;
  46. bprev = *state++;
  47. aprev = *state++;
  48. sum = *state & 0x3FFF;
  49. data = end - AUDIO_BLOCK_SAMPLES/2;
  50. do {
  51. in2 = *data;
  52. sum = signed_multiply_accumulate_32x16b(sum, b0, in2);
  53. sum = signed_multiply_accumulate_32x16t(sum, b1, bprev);
  54. sum = signed_multiply_accumulate_32x16b(sum, b2, bprev);
  55. sum = signed_multiply_accumulate_32x16t(sum, a1, aprev);
  56. sum = signed_multiply_accumulate_32x16b(sum, a2, aprev);
  57. out2 = signed_saturate_rshift(sum, 16, 14);
  58. sum &= 0x3FFF;
  59. sum = signed_multiply_accumulate_32x16t(sum, b0, in2);
  60. sum = signed_multiply_accumulate_32x16b(sum, b1, in2);
  61. sum = signed_multiply_accumulate_32x16t(sum, b2, bprev);
  62. sum = signed_multiply_accumulate_32x16b(sum, a1, out2);
  63. sum = signed_multiply_accumulate_32x16t(sum, a2, aprev);
  64. bprev = in2;
  65. aprev = pack_16b_16b(
  66. signed_saturate_rshift(sum, 16, 14), out2);
  67. sum &= 0x3FFF;
  68. bprev = in2;
  69. *data++ = aprev;
  70. } while (data < end);
  71. flag = *state & 0x80000000;
  72. *state++ = sum | flag;
  73. *(state-2) = aprev;
  74. *(state-3) = bprev;
  75. } while (flag);
  76. transmit(block);
  77. release(block);
  78. }
  79. void AudioFilterBiquad::setCoefficients(uint32_t stage, const int *coefficients)
  80. {
  81. if (stage >= 4) return;
  82. int32_t *dest = definition + (stage << 3);
  83. __disable_irq();
  84. if (stage > 0) *(dest - 1) |= 0x80000000;
  85. *dest++ = *coefficients++;
  86. *dest++ = *coefficients++;
  87. *dest++ = *coefficients++;
  88. *dest++ = *coefficients++ * -1;
  89. *dest++ = *coefficients++ * -1;
  90. //*dest++ = 0;
  91. //*dest++ = 0; // clearing filter state causes loud pop
  92. dest += 2;
  93. *dest &= 0x80000000;
  94. __enable_irq();
  95. }
  96. #elif defined(KINETISL)
  97. void AudioFilterBiquad::update(void)
  98. {
  99. audio_block_t *block;
  100. block = receiveReadOnly();
  101. if (block) release(block);
  102. }
  103. #endif