mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-13 10:52:05 +01:00
20 lines
582 B
C#
20 lines
582 B
C#
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.LG
|
|
{
|
|
public class AnalogChannel : TllChannelBase
|
|
{
|
|
private const string _Freqency = "offPcrPid";
|
|
private const string _FreqBand = "offVideoPid";
|
|
|
|
public AnalogChannel(int slot, DataMapping data) : base(data)
|
|
{
|
|
this.InitCommonData(slot, SignalSource.AnalogCT, data);
|
|
|
|
this.FreqInMhz = (decimal)data.GetWord(_Freqency) / 20;
|
|
int channelAndBand = data.GetWord(_FreqBand);
|
|
this.ChannelOrTransponder = ((channelAndBand>>8) == 0 ? "E" : "S") + (channelAndBand&0xFF).ToString("d2");
|
|
}
|
|
}
|
|
}
|