X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/f50ea7e42b05996b75eba9ed4376c539c5fc00ae..d6ed3400b2cdfd156aa9f6504079aeab53db1f69:/lib/driver/avswitch.h diff --git a/lib/driver/avswitch.h b/lib/driver/avswitch.h index 9c26b1ad..2b3b40fb 100644 --- a/lib/driver/avswitch.h +++ b/lib/driver/avswitch.h @@ -1,21 +1,30 @@ #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); @@ -23,6 +32,7 @@ public: void setInput(int val); void setSlowblank(int val); void setWSS(int val); + PSignal1 vcr_sb_notifier; }; #endif