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

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

	static eAVSwitch *getInstance();
	
	void setFastBlank(int val);
	void setColorFormat(int format);
	void setAspectRatio(int ratio);
	void setVideomode(int mode);
	void setInput(int val);

};

#endif