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:
parent
59c6558ce3
commit
3440072e7e
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- API change of VDR 1.7.22
|
||||||
- VDR 1.7.22 obsoletes cap_net_raw patch. Added cap_net_raw patch for VDR
|
- VDR 1.7.22 obsoletes cap_net_raw patch. Added cap_net_raw patch for VDR
|
||||||
1.7.5 - 1.7.21.
|
1.7.5 - 1.7.21.
|
||||||
- Update and UTF-8 conversion of Finnish po files (thanks to Rolf Ahrenberg)
|
- Update and UTF-8 conversion of Finnish po files (thanks to Rolf Ahrenberg)
|
||||||
|
@ -70,7 +70,11 @@ bool cStreamdevDevice::ProvidesTransponder(const cChannel *Channel) const
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if APIVERSNUM >= 10722
|
||||||
|
bool cStreamdevDevice::IsTunedToTransponder(const cChannel *Channel) const
|
||||||
|
#else
|
||||||
bool cStreamdevDevice::IsTunedToTransponder(const cChannel *Channel)
|
bool cStreamdevDevice::IsTunedToTransponder(const cChannel *Channel)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
bool res = false;
|
bool res = false;
|
||||||
if (ClientSocket.DataSocket(siLive) != NULL
|
if (ClientSocket.DataSocket(siLive) != NULL
|
||||||
|
@ -61,7 +61,11 @@ public:
|
|||||||
#if APIVERSNUM >= 10719
|
#if APIVERSNUM >= 10719
|
||||||
virtual bool AvoidRecording(void) const { return true; }
|
virtual bool AvoidRecording(void) const { return true; }
|
||||||
#endif
|
#endif
|
||||||
|
#if APIVERSNUM >= 10722
|
||||||
|
virtual bool IsTunedToTransponder(const cChannel *Channel) const;
|
||||||
|
#else
|
||||||
virtual bool IsTunedToTransponder(const cChannel *Channel);
|
virtual bool IsTunedToTransponder(const cChannel *Channel);
|
||||||
|
#endif
|
||||||
virtual int SignalStrength(void) const;
|
virtual int SignalStrength(void) const;
|
||||||
virtual int SignalQuality(void) const;
|
virtual int SignalQuality(void) const;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user