mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:49:54 +00:00
29 lines
338 B
C++
29 lines
338 B
C++
#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()
|
|
{
|
|
}
|
|
|
|
}
|