add imdb query link
[enigma2.git] / lib / driver / avswitch.h
index d8417692849a2b6e4f2e882d9f14d6a73a5f751c..d0221d50b0138b9c5fb9540429da6069cb892f79 100644 (file)
@@ -4,16 +4,26 @@
 class eAVSwitch
 {
        static eAVSwitch *instance;
-       
-       int avsfd;
-protected:     
+       int m_video_mode;
+#ifdef SWIG
+       eAVSwitch();
+       ~eAVSwitch();
+#endif
+protected:
 public:
+#ifndef SWIG
        eAVSwitch();
        ~eAVSwitch();
-
+#endif
        static eAVSwitch *getInstance();
-
+       
+       void setFastBlank(int val);
        void setColorFormat(int format);
+       void setAspectRatio(int ratio);
+       void setVideomode(int mode);
+       void setInput(int val);
+       void setSlowblank(int val);
+       void setWSS(int val);
 };
 
 #endif