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

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

	static eAVSwitch *getInstance();

	void setColorFormat(int format);
};

#endif