mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
Updated for vdr-1.7.27.
This commit is contained in:
parent
79113bbe09
commit
0b790260fa
4
HISTORY
4
HISTORY
@ -159,6 +159,6 @@ VDR Plugin 'iptv' Revision History
|
||||
- Added support for LDFLAGS.
|
||||
- Added cppcheck target into Makefile.
|
||||
|
||||
2012-03-10: Version 0.5.1
|
||||
2012-03-25: Version 0.5.1
|
||||
|
||||
- Updated for vdr-1.7.26.
|
||||
- Updated for vdr-1.7.27.
|
||||
|
5
device.c
5
device.c
@ -179,6 +179,11 @@ cString cIptvDevice::GetInformation(unsigned int Page)
|
||||
return info;
|
||||
}
|
||||
|
||||
cString cIptvDevice::DeviceName(void) const
|
||||
{
|
||||
return "IPTV";
|
||||
}
|
||||
|
||||
int cIptvDevice::SignalStrength(void) const
|
||||
{
|
||||
debug("cIptvDevice::SignalStrength(%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;
|
||||
|
||||
// for channel info
|
||||
virtual cString DeviceName(void) const;
|
||||
virtual int SignalStrength(void) const;
|
||||
virtual int SignalQuality(void) const;
|
||||
|
||||
|
4
iptv.c
4
iptv.c
@ -12,8 +12,8 @@
|
||||
#include "setup.h"
|
||||
#include "device.h"
|
||||
|
||||
#if defined(APIVERSNUM) && APIVERSNUM < 10721
|
||||
#error "VDR-1.7.21 API version or greater is required!"
|
||||
#if defined(APIVERSNUM) && APIVERSNUM < 10727
|
||||
#error "VDR-1.7.27 API version or greater is required!"
|
||||
#endif
|
||||
|
||||
#ifndef GITVERSION
|
||||
|
Loading…
Reference in New Issue
Block a user