9f6eccb7fd9569d65362456122cf3ad138699fc2
[vuplus_dvbapp] / lib / driver / avswitch.h
1 #ifndef __avswitch_h
2 #define __avswitch_h
3
4 class eAVSwitch
5 {
6         static eAVSwitch *instance;
7         
8 protected:      
9 public:
10         eAVSwitch();
11         ~eAVSwitch();
12
13         static eAVSwitch *getInstance();
14         
15         void setFastBlank(int val);
16         void setColorFormat(int format);
17         void setAspectRatio(int ratio);
18         void setVideomode(int mode);
19         void setInput(int val);
20
21 };
22
23 #endif