Skip to content

Commit

Permalink
Merge branch master into Leia
Browse files Browse the repository at this point in the history
  • Loading branch information
peak3d committed Jun 7, 2019
2 parents cfae730 + b68d49e commit 18beb22
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# inputstream.adaptive (2.3.19)
# inputstream.adaptive (2.3.20)

This is an adaptive file addon for kodi's new InputStream Interface.

Expand Down
11 changes: 10 additions & 1 deletion inputstream.adaptive/addon.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="inputstream.adaptive"
version="2.3.19"
version="2.3.20"
name="InputStream Adaptive"
provider-name="peak3d">
<requires>@ADDON_DEPENDS@</requires>
Expand All @@ -17,6 +17,15 @@
<description lang="en">InputStream client for adaptive streams</description>
<platform>@PLATFORM@</platform>
<news>
v2.3.20 (2019-06-07)
- Fix parsing PR ContentProtection KID

v2.3.19 (2019-06-02)
- [widevine] remove API 8 / Add API 11
- [TS] Signal configuration change if extra-data has changed
- [DASH] Use PlayReady WRMHEADER to retrieve DefaultKID
- [DASH] Allow URL_SEGMENTS + Range-Bytes

v2.3.18 (2019-05-11)
- align settings with internal resolution check
- [HLS] support single playlists
Expand Down
2 changes: 1 addition & 1 deletion src/parser/PRProtectionParser.cpp
Expand Up @@ -61,7 +61,7 @@ static void XMLCALL
{
char kid[17]; kid[16] = 0;
prkid2wvkid(reinterpret_cast<const char *>(buffer), kid);
parser->setKID(kid);
parser->setKID(std::string(kid, 16));
}
}
else if (strcmp(el, "LA_URL") == 0)
Expand Down

0 comments on commit 18beb22

Please sign in to comment.