aboutsummaryrefslogtreecommitdiff
path: root/lib/driver/avswitch.h
blob: 157948826fe5d4af8c24a9ac78e5a3c8b3657d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __avswitch_h
#define __avswitch_h

class eAVSwitch
{
	static eAVSwitch *instance;
	
protected:	
public:
	eAVSwitch();
	~eAVSwitch();

	static eAVSwitch *getInstance();

	void setColorFormat(int format);
	void setAspectRatio(int ratio);
	void setVideomode(int mode);
};

#endif