mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
19 lines
292 B
C++
19 lines
292 B
C++
#ifndef VIDEO_MOVIEAUDIOFACTORY_H
|
|
#define VIDEO_MOVIEAUDIOFACTORY_H
|
|
|
|
#include "audiodecoder.hpp"
|
|
|
|
|
|
namespace Video
|
|
{
|
|
|
|
class MovieAudioFactory
|
|
{
|
|
public:
|
|
virtual std::shared_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0;
|
|
virtual ~MovieAudioFactory() {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|