forked from mirror/openmw-tes3mp
20 lines
290 B
C++
20 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
|