mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Added support for SAT>IP frontend selection via Radio ID.
This commit is contained in:
parent
18ca0beaa7
commit
04e7648c01
2
HISTORY
2
HISTORY
@ -77,3 +77,5 @@ VDR Plugin 'satip' Revision History
|
||||
- Added a new device status menu.
|
||||
- Added a command-line switch for manually defining
|
||||
used SAT>IP servers.
|
||||
- Added support for SAT>IP frontend selection via
|
||||
Radio ID.
|
||||
|
4
README
4
README
@ -62,6 +62,10 @@ S19.2E 2
|
||||
S19.2E 3 Astra 1KR/1L/1M/2C
|
||||
=> Signal source = 3
|
||||
|
||||
A channel can be assigned into a specific SAT>IP frontend by giving the
|
||||
identifier number in RID field of a channels.conf entry.
|
||||
Valid range: 1 ... 8
|
||||
|
||||
Setup menu:
|
||||
|
||||
- Operating mode = off If you want exclude all SAT>IP devices
|
||||
|
2
param.c
2
param.c
@ -176,6 +176,8 @@ cString GetTransponderUrlParameters(const cChannel *channelP)
|
||||
ST("C *") q += PrintUrlString(q, STBUFLEFT, dtp.System(), SatipSystemValuesCable);
|
||||
ST(" T*") q += PrintUrlString(q, STBUFLEFT, dtp.System(), SatipSystemValuesTerrestrial);
|
||||
ST(" T*") q += PrintUrlString(q, STBUFLEFT, dtp.Transmission(), SatipTransmissionValues);
|
||||
if (channelP->Rid() > 0)
|
||||
q += snprintf(q, STBUFLEFT, "&fe=%d", channelP->Rid());
|
||||
#undef ST
|
||||
return buffer;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user