Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

128 lines
3.8KB

  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 "analyze_fft1024.h"
  27. #include "sqrt_integer.h"
  28. #include "utility/dspinst.h"
  29. // 140312 - PAH - slightly faster copy
  30. static void copy_to_fft_buffer(void *destination, const void *source)
  31. {
  32. const uint16_t *src = (const uint16_t *)source;
  33. uint32_t *dst = (uint32_t *)destination;
  34. for (int i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
  35. *dst++ = *src++; // real sample plus a zero for imaginary
  36. }
  37. }
  38. static void apply_window_to_fft_buffer(void *buffer, const void *window)
  39. {
  40. int16_t *buf = (int16_t *)buffer;
  41. const int16_t *win = (int16_t *)window;;
  42. for (int i=0; i < 1024; i++) {
  43. int32_t val = *buf * *win++;
  44. //*buf = signed_saturate_rshift(val, 16, 15);
  45. *buf = val >> 15;
  46. buf += 2;
  47. }
  48. }
  49. void AudioAnalyzeFFT1024::update(void)
  50. {
  51. audio_block_t *block;
  52. block = receiveReadOnly();
  53. if (!block) return;
  54. switch (state) {
  55. case 0:
  56. blocklist[0] = block;
  57. state = 1;
  58. break;
  59. case 1:
  60. blocklist[1] = block;
  61. state = 2;
  62. break;
  63. case 2:
  64. blocklist[2] = block;
  65. state = 3;
  66. break;
  67. case 3:
  68. blocklist[3] = block;
  69. state = 4;
  70. break;
  71. case 4:
  72. blocklist[4] = block;
  73. state = 5;
  74. break;
  75. case 5:
  76. blocklist[5] = block;
  77. state = 6;
  78. break;
  79. case 6:
  80. blocklist[6] = block;
  81. state = 7;
  82. break;
  83. case 7:
  84. blocklist[7] = block;
  85. // TODO: perhaps distribute the work over multiple update() ??
  86. // github pull requsts welcome......
  87. copy_to_fft_buffer(buffer+0x000, blocklist[0]->data);
  88. copy_to_fft_buffer(buffer+0x100, blocklist[1]->data);
  89. copy_to_fft_buffer(buffer+0x200, blocklist[2]->data);
  90. copy_to_fft_buffer(buffer+0x300, blocklist[3]->data);
  91. copy_to_fft_buffer(buffer+0x400, blocklist[4]->data);
  92. copy_to_fft_buffer(buffer+0x500, blocklist[5]->data);
  93. copy_to_fft_buffer(buffer+0x600, blocklist[6]->data);
  94. copy_to_fft_buffer(buffer+0x700, blocklist[7]->data);
  95. if (window) apply_window_to_fft_buffer(buffer, window);
  96. arm_cfft_radix4_q15(&fft_inst, buffer);
  97. // TODO: support averaging multiple copies
  98. for (int i=0; i < 512; i++) {
  99. uint32_t tmp = *((uint32_t *)buffer + i); // real & imag
  100. uint32_t magsq = multiply_16tx16t_add_16bx16b(tmp, tmp);
  101. output[i] = sqrt_uint32_approx(magsq);
  102. }
  103. outputflag = true;
  104. release(blocklist[0]);
  105. release(blocklist[1]);
  106. release(blocklist[2]);
  107. release(blocklist[3]);
  108. blocklist[0] = blocklist[4];
  109. blocklist[1] = blocklist[5];
  110. blocklist[2] = blocklist[6];
  111. blocklist[3] = blocklist[7];
  112. state = 4;
  113. break;
  114. }
  115. }