Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
2a8faddc
authored
2016-01-15 19:38:02 -0500
by
jrivera
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Remove unused parameter to decryptChunk_ function
1 parent
0384848b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
src/decrypter.js
src/decrypter.js
View file @
2a8fadd
...
...
@@ -325,8 +325,7 @@ Decrypter = function(encrypted, key, initVector, done) {
this
.
asyncStream_
.
push
(
this
.
decryptChunk_
(
encrypted32
.
subarray
(
i
,
i
+
step
),
key
,
initVector
,
decrypted
,
i
));
decrypted
));
for
(
i
=
step
;
i
<
encrypted32
.
length
;
i
+=
step
)
{
initVector
=
new
Uint32Array
([
ntoh
(
encrypted32
[
i
-
4
]),
...
...
Please
register
or
sign in
to post a comment