mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 10:22:04 +01:00
- experimental support for MtkChannelList.xml (which is part of several MediaTek based Google TVs, e.g. Philips formats 120 and 125) - Philips formats 100-125: improved decoding of non-latin characters (turkish, cyrillic, ...)
16 lines
341 B
C#
16 lines
341 B
C#
using System.Xml;
|
|
using ChanSort.Api;
|
|
|
|
namespace ChanSort.Loader.MediaTek
|
|
{
|
|
internal class Channel : ChannelInfo
|
|
{
|
|
public XmlElement Xml { get; }
|
|
|
|
internal Channel(SignalSource source, int index, int oldProgNr, string name, XmlElement element) :base(source, index, oldProgNr, name)
|
|
{
|
|
this.Xml = element;
|
|
}
|
|
}
|
|
}
|