avswitch: reset video mode only when it has changed
[vuplus_dvbapp] / lib / driver / avswitch.h
index 9f6eccb..d0221d5 100644 (file)
@@ -4,12 +4,17 @@
 class eAVSwitch
 {
        static eAVSwitch *instance;
-       
-protected:     
+       int m_video_mode;
+#ifdef SWIG
+       eAVSwitch();
+       ~eAVSwitch();
+#endif
+protected:
 public:
+#ifndef SWIG
        eAVSwitch();
        ~eAVSwitch();
-
+#endif
        static eAVSwitch *getInstance();
        
        void setFastBlank(int val);
@@ -17,7 +22,8 @@ public:
        void setAspectRatio(int ratio);
        void setVideomode(int mode);
        void setInput(int val);
-
+       void setSlowblank(int val);
+       void setWSS(int val);
 };
 
 #endif