2017-03-21 20:43:42 +00:00
|
|
|
#include <simgear/sound/soundmgr.hxx>
|
|
|
|
|
|
|
|
class SGSoundMgr::SoundManagerPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
};
|
|
|
|
|
|
|
|
SGSoundMgr::SGSoundMgr()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SGSoundMgr::~SGSoundMgr()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGSoundMgr::init()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGSoundMgr::stop()
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGSoundMgr::suspend()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGSoundMgr::resume()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGSoundMgr::update(double dt)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGSoundMgr::reinit()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SGSoundMgr::load(const std::string &samplepath, void **data, int *format, size_t *size, int *freq, int *block)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-02 12:06:36 +00:00
|
|
|
std::vector<std::string> SGSoundMgr::get_available_devices()
|
2017-03-21 20:43:42 +00:00
|
|
|
{
|
2018-06-02 12:06:36 +00:00
|
|
|
std::vector<std::string> result;
|
2017-03-21 20:43:42 +00:00
|
|
|
return result;
|
|
|
|
}
|