audio-algo-river/audio/algo/river/convolution.hpp

19 lines
339 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
*/
#pragma once
2015-04-02 23:13:36 +02:00
2016-10-02 20:49:48 +02:00
#include <etk/types.hpp>
2015-04-02 23:13:36 +02:00
namespace audio {
namespace algo {
namespace river {
2015-04-02 23:13:36 +02:00
float convolution(float* _dataMinus, float* _dataPlus, size_t _count);
}
}
}