1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-03 12:09:39 +00:00
openmw/apps/openmw/mwsound/movieaudiofactory.hpp
2022-04-08 22:42:22 +02:00

16 lines
358 B
C++

#ifndef OPENMW_MWSOUND_MOVIEAUDIOFACTORY_H
#define OPENMW_MWSOUND_MOVIEAUDIOFACTORY_H
#include <extern/osg-ffmpeg-videoplayer/audiofactory.hpp>
namespace MWSound
{
class MovieAudioFactory : public Video::MovieAudioFactory
{
std::unique_ptr<Video::MovieAudioDecoder> createDecoder(Video::VideoState* videoState) override;
};
}
#endif