選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

62 行
2.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. #ifndef synth_pinknoise_h_
  27. #define synth_pinknoise_h_
  28. #include "AudioStream.h"
  29. #include "utility/dspinst.h"
  30. class AudioSynthNoisePink : public AudioStream
  31. {
  32. public:
  33. AudioSynthNoisePink() : AudioStream(0, NULL) {
  34. plfsr = 0x5EED41F5 + instance_cnt++;
  35. paccu = 0;
  36. pncnt = 0;
  37. pinc = 0x0CCC;
  38. pdec = 0x0CCC;
  39. }
  40. void amplitude(float n) {
  41. if (n < 0.0) n = 0.0;
  42. else if (n > 1.0) n = 1.0;
  43. level = (int32_t)(n * 65536.0);
  44. }
  45. virtual void update(void);
  46. private:
  47. static const uint8_t pnmask[256];
  48. static const int32_t pfira[64];
  49. static const int32_t pfirb[64];
  50. static int16_t instance_cnt;
  51. int32_t plfsr; // linear feedback shift register
  52. int32_t pinc; // increment for all noise sources (bits)
  53. int32_t pdec; // decrement for all noise sources
  54. int32_t paccu; // accumulator
  55. uint8_t pncnt; // overflowing counter as index to pnmask[]
  56. int32_t level; // 0=off, 65536=max
  57. };
  58. #endif