mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-03 08:56:39 +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::unique_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0;
 | 
						|
    virtual ~MovieAudioFactory() {}
 | 
						|
};
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |