mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-15 03:42:04 +01:00
- Philips: added support for ChannelMap_45 format
- Philips: fixed display of symbol rate and frequency (off by factor 1000 depending of list and DVB source) - Philips: fixed special characters in channel names (e.g. german umlauts) - Philips: "ServiceType" now only shows "TV" or "Radio". There is no information about HD/SD in the file.
This commit is contained in:
@@ -90,7 +90,15 @@ namespace ChanSort.Api
|
||||
public Encoding DefaultEncoding { get; set; }
|
||||
|
||||
#region GetChannelNames()
|
||||
|
||||
public void GetChannelNames(byte[] name, int off, int len, out string longName, out string shortName)
|
||||
{
|
||||
this.GetChannelNamesCore(name, off, len, out longName, out shortName);
|
||||
longName = longName.TrimGarbage();
|
||||
shortName = shortName.TrimGarbage();
|
||||
}
|
||||
|
||||
private void GetChannelNamesCore(byte[] name, int off, int len, out string longName, out string shortName)
|
||||
{
|
||||
longName = "";
|
||||
shortName = "";
|
||||
|
||||
Reference in New Issue
Block a user