mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-12 21:39:26 +00:00
30 lines
276 B
C++
30 lines
276 B
C++
|
#ifdef OPENMW_USE_FFMPEG
|
||
|
|
||
|
#include "ffmpeg_decoder.hpp"
|
||
|
|
||
|
|
||
|
namespace MWSound
|
||
|
{
|
||
|
|
||
|
bool FFmpeg_Decoder::Open(const std::string &fname)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
void FFmpeg_Decoder::Close()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
FFmpeg_Decoder::FFmpeg_Decoder()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
FFmpeg_Decoder::~FFmpeg_Decoder()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|