summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schmirler <vdr@schmirler.de>2011-09-10 00:08:04 +0200
committerFrank Schmirler <vdr@schmirler.de>2011-09-10 00:08:04 +0200
commit2fae067cfef6f930415e8b3d4c4713b5de91b1eb (patch)
tree773f7dfbe39a52ab7172085d2636fd2190dda0f9
parent475e7bbd6ad0dba119c87dc8b08ebc1580a8cf84 (diff)
downloadvdr-plugin-streamdev-2fae067cfef6f930415e8b3d4c4713b5de91b1eb.tar.gz
vdr-plugin-streamdev-2fae067cfef6f930415e8b3d4c4713b5de91b1eb.tar.bz2
streamdev-client returns true in its AvoidRecording() method
-rw-r--r--HISTORY3
-rw-r--r--client/device.h3
2 files changed, 6 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index bd2abc8..477a5f2 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,9 @@
VDR Plugin 'streamdev' Revision History
---------------------------------------
+- streamdev-client returns true in its AvoidRecording() method introduced
+ with VDR 1.7.19. Note however that the impact of NumProvidedSystems is
+ higher.
- updated device selection to code of VDR 1.7.19
- adaption to VDR 1.7.12 cReceiver API change
- increased WRITERBUFSIZE. Has been reported to fix some ringbuffer
diff --git a/client/device.h b/client/device.h
index 186ae89..6c64df0 100644
--- a/client/device.h
+++ b/client/device.h
@@ -58,6 +58,9 @@ public:
#if APIVERSNUM >= 10700
virtual int NumProvidedSystems(void) const;
#endif
+#if APIVERSNUM >= 10719
+ virtual bool AvoidRecording(void) const { return true; }
+#endif
virtual bool IsTunedToTransponder(const cChannel *Channel);
virtual int SignalStrength(void) const;
virtual int SignalQuality(void) const;