20 lines
324 B
C++
20 lines
324 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <etk/types.h>
|
|
|
|
namespace audio {
|
|
namespace ess {
|
|
namespace wav {
|
|
std::vector<int16_t> loadAudioFile(const std::string& _filename, int8_t _nbChan);
|
|
}
|
|
}
|
|
}
|
|
|