audio-algo-river/audio/algo/river/convolution.h

19 lines
340 B
C
Raw Normal View History

2015-04-02 23:13:36 +02:00
/** @file
* @author Edouard DUPIN
* @author Fatima MARFOUQ
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#pragma once
2015-04-02 23:13:36 +02:00
#include <etk/types.h>
namespace audio {
namespace algo {
namespace river {
2015-04-02 23:13:36 +02:00
float convolution(float* _dataMinus, float* _dataPlus, size_t _count);
}
}
}