diff options
author | Lars Hanisch <dvb@flensrocker.de> | 2011-08-17 22:16:02 +0200 |
---|---|---|
committer | Lars Hanisch <dvb@flensrocker.de> | 2011-08-17 22:16:02 +0200 |
commit | bdec7d4336d73b69b8ff33da44eea00e49b054e2 (patch) | |
tree | 107dacebe57cf4d5f8fe412b55fd087ea8de5a99 /dynamicdevice.h | |
parent | 3049ae76983337cfc736ddcf4f1855fa22e3fd66 (diff) | |
download | vdr-plugin-dynamite-bdec7d4336d73b69b8ff33da44eea00e49b054e2.tar.gz vdr-plugin-dynamite-bdec7d4336d73b69b8ff33da44eea00e49b054e2.tar.bz2 |
add patch for vdr 1.7.19 and add support for new virtual methods of cDevicev0.0.6h
Diffstat (limited to 'dynamicdevice.h')
-rw-r--r-- | dynamicdevice.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dynamicdevice.h b/dynamicdevice.h index f920cd0..a461118 100644 --- a/dynamicdevice.h +++ b/dynamicdevice.h @@ -69,12 +69,15 @@ protected: virtual void MakePrimaryDevice(bool On); public: virtual bool HasDecoder(void) const; + virtual bool AvoidRecording(void) const; virtual cSpuDecoder *GetSpuDecoder(void); virtual bool ProvidesSource(int Source) const; virtual bool ProvidesTransponder(const cChannel *Channel) const; virtual bool ProvidesTransponderExclusively(const cChannel *Channel) const; virtual bool ProvidesChannel(const cChannel *Channel, int Priority = -1, bool *NeedsDetachReceivers = NULL) const; virtual int NumProvidedSystems(void) const; + virtual int SignalStrength(void) const; + virtual int SignalQuality(void) const; virtual const cChannel *GetCurrentlyTunedTransponder(void) const; virtual bool IsTunedToTransponder(const cChannel *Channel); virtual bool MaySwitchTransponder(void); |