mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 17:16:51 +00:00
API change of VDR 1.7.22
This commit is contained in:
@@ -70,7 +70,11 @@ bool cStreamdevDevice::ProvidesTransponder(const cChannel *Channel) const
|
||||
return true;
|
||||
}
|
||||
|
||||
#if APIVERSNUM >= 10722
|
||||
bool cStreamdevDevice::IsTunedToTransponder(const cChannel *Channel) const
|
||||
#else
|
||||
bool cStreamdevDevice::IsTunedToTransponder(const cChannel *Channel)
|
||||
#endif
|
||||
{
|
||||
bool res = false;
|
||||
if (ClientSocket.DataSocket(siLive) != NULL
|
||||
|
@@ -61,7 +61,11 @@ public:
|
||||
#if APIVERSNUM >= 10719
|
||||
virtual bool AvoidRecording(void) const { return true; }
|
||||
#endif
|
||||
#if APIVERSNUM >= 10722
|
||||
virtual bool IsTunedToTransponder(const cChannel *Channel) const;
|
||||
#else
|
||||
virtual bool IsTunedToTransponder(const cChannel *Channel);
|
||||
#endif
|
||||
virtual int SignalStrength(void) const;
|
||||
virtual int SignalQuality(void) const;
|
||||
|
||||
|
Reference in New Issue
Block a user