mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
- length -1 is the correct value for streams in M3U playlists
This commit is contained in:
parent
25f287f5b1
commit
ccbc738202
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- length -1 is the correct value for streams in M3U playlists
|
||||||
- added DELT FORCE option to delete running timers (thanks to Alwin Esch)
|
- added DELT FORCE option to delete running timers (thanks to Alwin Esch)
|
||||||
- fixed missing virtual destructor for cTSRemux
|
- fixed missing virtual destructor for cTSRemux
|
||||||
- improved PARENTALRATING patch detection was missing in this branch
|
- improved PARENTALRATING patch detection was missing in this branch
|
||||||
|
@ -421,13 +421,13 @@ std::string cM3uChannelList::Next()
|
|||||||
|
|
||||||
if (channel->GroupSep())
|
if (channel->GroupSep())
|
||||||
{
|
{
|
||||||
return (std::string) "#EXTINF:0," + name + "\r\n" +
|
return (std::string) "#EXTINF:-1," + name + "\r\n" +
|
||||||
base + "group.m3u?group=" +
|
base + "group.m3u?group=" +
|
||||||
(const char*) itoa(cChannelList::GetGroupIndex(channel));
|
(const char*) itoa(cChannelList::GetGroupIndex(channel));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return (std::string) "#EXTINF:0," +
|
return (std::string) "#EXTINF:-1," +
|
||||||
(const char*) itoa(channel->Number()) + " " + name + "\r\n" +
|
(const char*) itoa(channel->Number()) + " " + name + "\r\n" +
|
||||||
base + (std::string) channel->GetChannelID().ToString();
|
base + (std::string) channel->GetChannelID().ToString();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user