Basic Audio Signal Processing Library

Dependents:   unzen_sample_nucleo_f746 skeleton_unzen_nucleo_f746 ifmag_noise_canceller synthesizer_f746

オーディオ信号処理用のライブラリです。

mbed-dspのフィルタ群向けに作ったクラス・ラッパーのほか、以下のクラスを用意しています。

  • ヒステリシス
  • sin/cosオシレータ
  • リミッター

クラスは全て名前空間amakusaに含まれます。

Committer:
shorie
Date:
Sun Dec 11 21:04:06 2016 +0000
Revision:
0:058daa59980d
Child:
1:0a37bce4f985
Publish

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shorie 0:058daa59980d 1 namespace amakusa
shorie 0:058daa59980d 2 {
shorie 0:058daa59980d 3 /**
shorie 0:058daa59980d 4 * @brief A limitter. linear at [-0.5,0.5]
shorie 0:058daa59980d 5 */
shorie 0:058daa59980d 6 class LimitterLinAtan
shorie 0:058daa59980d 7 {
shorie 0:058daa59980d 8 private:
shorie 0:058daa59980d 9 void run( float src[], float dst[], int count );
shorie 0:058daa59980d 10 };
shorie 0:058daa59980d 11 }