aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Input/in_wmvdrm/VideoDataConverter.h
blob: d1530cb0ab4466f6f27f2a7dfef156bcd7467848 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef NULLSOFT_VIDEODATACONVERTERH
#define NULLSOFT_VIDEODATACONVERTERH

#include "OutputStream.h"
class VideoDataConverter
{
public:
	virtual void *Convert(void *videoData)
	{
		return videoData;
	}
};



VideoDataConverter *MakeConverter(VideoOutputStream *stream);

#endif