2014-11-10, 06:08 AM
Here's an update for Kodi-Helix beta2 testing with ATSC major/minor support
Martin
Code:
PVR_ERROR cPVRClientNextPVR::GetChannels(ADDON_HANDLE handle, bool bRadio)
...
tag.iChannelNumber = atoi(pChannelNode->FirstChildElement("number")->FirstChild()->Value());
[color=#008000][b]tag.iSubChannelNumber = atoi(pChannelNode->FirstChildElement("minor")->FirstChild()->Value());[/b][/color]
PVR_STRCPY(tag.strChannelName, pChannelNode->FirstChildElement("name")->FirstChild()->Value());
Martin