19 lines
311 B
C++
19 lines
311 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @author Fatima MARFOUQ
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license MPL v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <etk/types.hpp>
|
|
|
|
namespace audio {
|
|
namespace algo {
|
|
namespace river {
|
|
float power(float* _data, int32_t _count);
|
|
}
|
|
}
|
|
}
|
|
|