mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
20 lines
292 B
C++
20 lines
292 B
C++
#ifndef VIDEO_MOVIEAUDIOFACTORY_H
|
|
#define VIDEO_MOVIEAUDIOFACTORY_H
|
|
|
|
#include "audiodecoder.hpp"
|
|
|
|
|
|
namespace Video
|
|
{
|
|
|
|
class MovieAudioFactory
|
|
{
|
|
public:
|
|
virtual std::unique_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0;
|
|
virtual ~MovieAudioFactory() {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|