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

@@ -106,7 +106,9 @@ namespace ChanSort.Loader.Panasonic
{
freq /= 1000;
this.FreqInMhz = freq;
this.ChannelOrTransponder = LookupData.Instance.GetDvbtTransponder(freq).ToString();
this.ChannelOrTransponder = (this.SignalSource & SignalSource.Antenna) != 0 ?
LookupData.Instance.GetDvbtTransponder(freq).ToString() :
LookupData.Instance.GetDvbcTransponder(freq).ToString();
this.Satellite = (this.SignalSource & SignalSource.Antenna) != 0 ? "DVB-T" : "DVB-C";
}