Skip to content

Commit

Permalink
Merge branch 'patch/v1.5.x'
Browse files Browse the repository at this point in the history
* patch/v1.5.x:
  Update github actions
  chore(deps): update tjenkinson/gh-action-auto-merge-dependency-updates action to v1.4.2 (#6333)
  Emit FRAG_PARSING_ERROR on unsupported M2TS codec (#6447)
  Fix JS AES fallback when browserCrypto.subtle returns undefined (rather than null) (#6446)
  Fix 608 caption TextTrack Cue seek/discontinuity timing regression introduced in v1.5.0 with #5557
  Fix 608 parser handling of redundant control codes Fixes #6427
  Fix backtracking when an appended segment has no buffered timerange (#6434)
  Fix missing details if subtitle changed synchronously after loaded and before onLoaded callback (#6424)
  Bugfix: Handle irregular white-space in segment URIs (#6396)
  • Loading branch information
robwalch committed May 31, 2024
2 parents b496884 + 7c9e9a4 commit 1b7cb22
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/crypt/fast-aes-key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ export default class FastAESKey {
private key: ArrayBuffer;
private aesMode: DecrypterAesMode;

constructor(subtle: SubtleCrypto, key, aesMode: DecrypterAesMode) {
constructor(
subtle: SubtleCrypto,
key: ArrayBuffer,
aesMode: DecrypterAesMode,
) {
this.subtle = subtle;
this.key = key;
this.aesMode = aesMode;
Expand Down

0 comments on commit 1b7cb22

Please sign in to comment.