OctonetData: Add getUrl member function

This commit is contained in:
Dennis Hamester 2016-10-05 10:42:09 +02:00
parent 9847cf27a0
commit 88fd3079aa
2 changed files with 11 additions and 0 deletions

View File

@ -277,6 +277,16 @@ PVR_ERROR OctonetData::getEPG(ADDON_HANDLE handle, const PVR_CHANNEL &channel, t
return PVR_ERROR_NO_ERROR;
}
const std::string& OctonetData::getUrl(int id) const {
for(std::vector<OctonetChannel>::const_iterator iter = channels.begin(); iter != channels.end(); ++iter) {
if(iter->id == id) {
return iter->url;
}
}
return channels[0].url;
}
int OctonetData::getGroupCount(void)
{
return groups.size();

View File

@ -70,6 +70,7 @@ class OctonetData : public P8PLATFORM::CThread
virtual PVR_ERROR getGroupMembers(ADDON_HANDLE handle, const PVR_CHANNEL_GROUP &group);
virtual PVR_ERROR getEPG(ADDON_HANDLE handle, const PVR_CHANNEL &channel, time_t start, time_t end);
const std::string& getUrl(int id) const;
protected:
virtual bool loadChannelList(void);