1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 18:49:54 +00:00
openmw-tes3mp/extern/ogre-ffmpeg-videoplayer/audiofactory.hpp
2014-10-25 15:37:09 +11:00

19 lines
290 B
C++

#ifndef VIDEO_MOVIEAUDIOFACTORY_H
#define VIDEO_MOVIEAUDIOFACTORY_H
#include "audiodecoder.hpp"
#include <boost/shared_ptr.hpp>
namespace Video
{
class MovieAudioFactory
{
public:
virtual boost::shared_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0;
};
}
#endif