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:
parent
c475b26515
commit
4c7b2ea69b
6
HISTORY
6
HISTORY
@ -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.
|
||||||
|
6
device.c
6
device.c
@ -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);
|
||||||
|
1
device.h
1
device.h
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user