mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-28 17:20:43 +01:00
- 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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user