1
0
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:
Rolf Ahrenberg 2014-11-04 23:20:10 +02:00
parent 18ca0beaa7
commit 04e7648c01
3 changed files with 8 additions and 0 deletions

View File

@ -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
View File

@ -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

View File

@ -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;
}