mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
streamdev-client returns true in its AvoidRecording() method
This commit is contained in:
parent
475e7bbd6a
commit
2fae067cfe
3
HISTORY
3
HISTORY
@ -1,6 +1,9 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
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
|
- updated device selection to code of VDR 1.7.19
|
||||||
- adaption to VDR 1.7.12 cReceiver API change
|
- adaption to VDR 1.7.12 cReceiver API change
|
||||||
- increased WRITERBUFSIZE. Has been reported to fix some ringbuffer
|
- increased WRITERBUFSIZE. Has been reported to fix some ringbuffer
|
||||||
|
@ -57,6 +57,9 @@ public:
|
|||||||
bool *NeedsDetachReceivers = NULL) const;
|
bool *NeedsDetachReceivers = NULL) const;
|
||||||
#if APIVERSNUM >= 10700
|
#if APIVERSNUM >= 10700
|
||||||
virtual int NumProvidedSystems(void) const;
|
virtual int NumProvidedSystems(void) const;
|
||||||
|
#endif
|
||||||
|
#if APIVERSNUM >= 10719
|
||||||
|
virtual bool AvoidRecording(void) const { return true; }
|
||||||
#endif
|
#endif
|
||||||
virtual bool IsTunedToTransponder(const cChannel *Channel);
|
virtual bool IsTunedToTransponder(const cChannel *Channel);
|
||||||
virtual int SignalStrength(void) const;
|
virtual int SignalStrength(void) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user