diff options
Diffstat (limited to 'plugins/provider/vdrProvider/vdrProvider.cpp')
-rw-r--r-- | plugins/provider/vdrProvider/vdrProvider.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/provider/vdrProvider/vdrProvider.cpp b/plugins/provider/vdrProvider/vdrProvider.cpp index 6ab3d27..4f7276a 100644 --- a/plugins/provider/vdrProvider/vdrProvider.cpp +++ b/plugins/provider/vdrProvider/vdrProvider.cpp @@ -49,17 +49,6 @@ private: return group ? Idx : -1; } - int GetGroupByChannel(const cChannel* channel) - { - if(!channel) return -1; - int Idx = -1; - cChannel* group = Channels.Get(++Idx); - while(group && !(group->GroupSep() && group->Number() > channel->Number())) - group = Channels.Get(++Idx); - return group ? Idx : -1; - - } - string GetContainerName(string uri){ return uri.substr(6,uri.size()-7); } |