- fixed 200MHz offset for Samsung DVB-C channels

- added support for Sony channel lists (read-only at the moment)
- added option to disable check for updates
This commit is contained in:
hbeham
2019-07-14 22:54:46 +02:00
parent d10845a701
commit daeb9ffb1b
21 changed files with 864 additions and 50 deletions

View File

@@ -21,7 +21,12 @@ namespace ChanSort.Loader.Samsung
int transp = data.GetByte(_ChannelOrTransponder);
decimal freq = transpFreq.TryGet(transp);
if (freq == 0)
freq = LookupData.Instance.GetDvbtFrequeny(transp); // transp*8 + 106); // (106 = DVB-C; DVB-T=306?)
{
if ((this.SignalSource & SignalSource.Antenna) != 0)
freq = transp * 8 + 306;
else if ((this.SignalSource & SignalSource.Cable) != 0)
freq = transp * 8 + 106;
}
this.ChannelOrTransponder = transp.ToString();
this.FreqInMhz = freq;