X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/85f2616ef78700cf2639992abaf1011ecaa897bd..2a1b3e92f806c2e2abb85d1cc6f71c187ca7d0c3:/lib/driver/avswitch.h diff --git a/lib/driver/avswitch.h b/lib/driver/avswitch.h index d765e02a..2b3b40fb 100644 --- a/lib/driver/avswitch.h +++ b/lib/driver/avswitch.h @@ -1,27 +1,38 @@ #ifndef __avswitch_h #define __avswitch_h -class eAVSwitch +#include +#include + +class eSocketNotifier; + +class eAVSwitch: public Object { static eAVSwitch *instance; + int m_video_mode; + eSocketNotifier *m_fp_notifier; + void fp_event(int what); + int m_fp_fd; #ifdef SWIG eAVSwitch(); ~eAVSwitch(); #endif -protected: +protected: public: #ifndef SWIG eAVSwitch(); ~eAVSwitch(); #endif static eAVSwitch *getInstance(); - + int getVCRSlowBlanking(); 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); + PSignal1 vcr_sb_notifier; }; #endif