2012-03-17 06:59:21 +00:00
|
|
|
#ifdef OPENMW_USE_MPG123
|
|
|
|
|
2012-03-17 06:18:15 +00:00
|
|
|
#include "mpgsnd_decoder.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
namespace MWSound
|
|
|
|
{
|
|
|
|
|
|
|
|
bool MpgSnd_Decoder::Open(const std::string &fname)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MpgSnd_Decoder::Close()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MpgSnd_Decoder::MpgSnd_Decoder()
|
|
|
|
{
|
|
|
|
static bool initdone = false;
|
|
|
|
if(!initdone)
|
|
|
|
mpg123_init();
|
|
|
|
initdone = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
MpgSnd_Decoder::~MpgSnd_Decoder()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-03-17 06:59:21 +00:00
|
|
|
|
|
|
|
#endif
|