1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 13:37:03 +02:00

Added cIptvDevice::DeviceType() and updated HISTORY.

This commit is contained in:
Rolf Ahrenberg 2012-04-02 19:15:53 +03:00
parent c475b26515
commit 4c7b2ea69b
3 changed files with 11 additions and 2 deletions

View File

@ -159,10 +159,12 @@ VDR Plugin 'iptv' Revision History
- Added support for LDFLAGS. - Added support for LDFLAGS.
- Added cppcheck target into Makefile. - Added cppcheck target into Makefile.
2012-xx-xx: Version 0.5.1 2012-04-02: Version 0.5.1
- Updated for vdr-1.7.27. - Updated for vdr-1.7.27.
- Fixed some channel switching bugs. - Updated Makefile.
- Silenced compilation warnings.
- Fixed channel switching bugs.
- Added support for a service interface. - Added support for a service interface.
- Changed UDP protocol to always utilize the source address - Changed UDP protocol to always utilize the source address
validation. validation.

View File

@ -185,6 +185,12 @@ cString cIptvDevice::GetInformation(unsigned int Page)
return info; return info;
} }
cString cIptvDevice::DeviceType(void) const
{
debug("cIptvDevice::DeviceType(%d)\n", deviceIndex);
return "IPTV";
}
cString cIptvDevice::DeviceName(void) const cString cIptvDevice::DeviceName(void) const
{ {
debug("cIptvDevice::DeviceName(%d)\n", deviceIndex); debug("cIptvDevice::DeviceName(%d)\n", deviceIndex);

View File

@ -76,6 +76,7 @@ private:
bool IsBlackListed(u_short Pid, u_char Tid, u_char Mask) const; bool IsBlackListed(u_short Pid, u_char Tid, u_char Mask) const;
// for channel info // for channel info
virtual cString DeviceType(void) const;
virtual cString DeviceName(void) const; virtual cString DeviceName(void) const;
virtual int SignalStrength(void) const; virtual int SignalStrength(void) const;
virtual int SignalQuality(void) const; virtual int SignalQuality(void) const;