diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2003-10-17 15:35:43 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2003-10-17 15:35:43 +0000 |
| commit | fc2f5b2cd655f1391f2abda1b39e37cdec98a951 (patch) | |
| tree | 312efcea86a319de407a7c314fb981fb1c71019a /lib/driver/streamwd.h | |
| download | enigma2-fc2f5b2cd655f1391f2abda1b39e37cdec98a951.tar.gz enigma2-fc2f5b2cd655f1391f2abda1b39e37cdec98a951.zip | |
Initial revision
Diffstat (limited to 'lib/driver/streamwd.h')
| -rw-r--r-- | lib/driver/streamwd.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/driver/streamwd.h b/lib/driver/streamwd.h new file mode 100644 index 00000000..ae8498ff --- /dev/null +++ b/lib/driver/streamwd.h @@ -0,0 +1,28 @@ +#ifndef __streamwd_h +#define __streamwd_h + +#include <libsig_comp.h> +#include <lib/base/ebase.h> +#include <lib/dvb/si.h> +#include <lib/dvb/dvb.h> + +class eStreamWatchdog: public Object +{ + eSocketNotifier* sn; + int handle; + int isanamorph; + static eStreamWatchdog *instance; +private: + void check(int); + int getVCRActivity(); +public: + void reloadSettings(); + eStreamWatchdog(); + ~eStreamWatchdog(); + static eStreamWatchdog *getInstance(); + int isAnamorph(); + Signal1<void, int> AspectRatioChanged; + Signal1<void, int> VCRActivityChanged; +}; + +#endif |
