X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/9458c6fcf07885c97e8b627b035c848267ee2d0c..e5a909e610fcd24a0bb6d7b1a586a14cd9767512:/lib/driver/avswitch.h?ds=sidebyside diff --git a/lib/driver/avswitch.h b/lib/driver/avswitch.h index d8417692..d0221d50 100644 --- a/lib/driver/avswitch.h +++ b/lib/driver/avswitch.h @@ -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