/** @file * @author Edouard DUPIN * @author Fatima MARFOUQ * @copyright 2011, Edouard DUPIN, all right reserved * @license APACHE v2.0 (see license file) */ #ifndef __AUDIO_ALGO_RIVER_POWER_H__ #define __AUDIO_ALGO_RIVER_POWER_H__ #include namespace audio { namespace algo { namespace river { float power(float* _data, int32_t _count); } } } #endif