Skip to content

Commit

Permalink
Merge pull request #3 from BrightcoveOS/HLSeFix
Browse files Browse the repository at this point in the history
HLSe fix
  • Loading branch information
pajato1 committed Oct 30, 2015
2 parents 04c2bdf + 65c8c8c commit 9367bc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

version=1.4.2.3
version=1.4.2.4
group=com.google.exoplayer
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public final class HlsPlaylistParser implements UriLoadable.Parser<HlsPlaylist>
private static final Pattern METHOD_ATTR_REGEX =
Pattern.compile(METHOD_ATTR + "=(" + METHOD_NONE + "|" + METHOD_AES128 + ")");
private static final Pattern URI_ATTR_REGEX =
Pattern.compile(URI_ATTR + "=\"(.+)\"");
Pattern.compile(URI_ATTR + "=\"([^\"]+)\"");
private static final Pattern IV_ATTR_REGEX =
Pattern.compile(IV_ATTR + "=([^,.*]+)");
private static final Pattern TYPE_ATTR_REGEX =
Expand Down

0 comments on commit 9367bc8

Please sign in to comment.