Skip to content

Commit

Permalink
#71 HLS not provided with DVB streams!
Browse files Browse the repository at this point in the history
  • Loading branch information
aassif committed Mar 29, 2021
1 parent f8cb2b0 commit 10d1045
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pvr.freebox/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.freebox"
version="6.1.3"
version="6.1.4"
name="PVR Freebox TV"
provider-name="aassif">
<requires>@ADDON_DEPENDS@</requires>
Expand Down
8 changes: 3 additions & 5 deletions src/Freebox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
*
*/

#define RAPIDJSON_HAS_STDSTRING 1

#include <iostream>
#include <iomanip>
#include <string>
Expand Down Expand Up @@ -821,12 +819,12 @@ bool Freebox::ProcessChannels ()
}

#if 0
for (auto i : conflicts_by_major)
for (auto & i : conflicts_by_major)
cout << i.first << " : " << StrUUIDs (i.second) << endl;
#endif

#if 0
for (auto i = conflicts_by_uuid)
for (auto & i : conflicts_by_uuid)
cout << i.first << " : " << StrNumbers (i.second) << endl;
#endif

Expand Down Expand Up @@ -858,7 +856,7 @@ bool Freebox::ProcessChannels ()
data.emplace_back (ParseSource (s["type"]),
ParseQuality (s["quality"]),
freebox_replace_server (s["rtsp"], m_hostname),
freebox_replace_server (s["hls"], m_hostname));
freebox_replace_server (s.value ("hls", ""), m_hostname));
}
#if 0
if (! kodi::vfs::DirectoryExists (m_path + "logos"))
Expand Down

0 comments on commit 10d1045

Please sign in to comment.