audio-algo-river/audio/algo/river/convolution.cpp

18 lines
419 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 MPL v2.0 (see license file)
2015-04-02 23:13:36 +02:00
*/
2016-10-02 20:49:48 +02:00
#include <audio/algo/river/convolution.hpp>
2015-04-02 23:13:36 +02:00
float audio::algo::river::convolution(float* _dataMinus, float* _dataPlus, size_t _count) {
2015-04-02 23:13:36 +02:00
float out = 0.0f;
for (size_t iii = 0; iii < _count; ++iii) {
out += *_dataMinus-- * *_dataPlus++;
}
return out;
}