Basic Audio Signal Processing Library

Dependents:   unzen_sample_nucleo_f746 skeleton_unzen_nucleo_f746 ifmag_noise_canceller synthesizer_f746

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

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

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

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

Revision:
6:ed10856c2305
Parent:
5:3d6cf4dbf458
--- a/firinterpolator.h	Fri Feb 10 13:24:30 2017 +0000
+++ b/firinterpolator.h	Fri Feb 10 13:26:52 2017 +0000
@@ -28,7 +28,6 @@
             * @brief Run the filter.
             * @param[in] pSrc Pointer to the source buffer to be filtered.
             * @param[out] pDst Pointer to the destination buffer to store the filtered signal. 
-            * @param[in] block_size Number of the sample to be filitered. If skipped or zero, block_size is assmued the one passed to the constructor. 
             */
         virtual void run( float32_t *pSrc, float32_t *pDst);
     private: