complete support for Samsung J series (added DVB-T, analog and reference list support)

This commit is contained in:
hbeham
2015-06-05 06:08:40 +02:00
parent 61a53d3904
commit a6c50f48a2
12 changed files with 323 additions and 128 deletions

View File

@@ -21,9 +21,9 @@ namespace ChanSort.Loader.Samsung
int transp = data.GetByte(_ChannelOrTransponder);
decimal freq = transpFreq.TryGet(transp);
if (freq == 0)
freq = transp*8 + 106; // (106 = DVB-C; DVB-T=306?)
freq = LookupData.Instance.GetDvbtFrequeny(transp); // transp*8 + 106); // (106 = DVB-C; DVB-T=306?)
this.ChannelOrTransponder = LookupData.Instance.GetDvbtTransponder(freq).ToString();
this.ChannelOrTransponder = transp.ToString();
this.FreqInMhz = freq;
}
}