hls.js 1.6.7-0.canary.11366 → 1.6.7-0.canary.11369

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/hls.d.mts CHANGED
@@ -989,7 +989,6 @@ export declare class EMEController extends Logger implements ComponentAPI {
989
989
  private handleError;
990
990
  private getKeySystemForKeyPromise;
991
991
  private getKeySystemSelectionPromise;
992
- private onMediaEncrypted;
993
992
  private onWaitingForKey;
994
993
  private attemptSetMediaKeys;
995
994
  private generateRequestWithPreferredKeySession;
@@ -2747,7 +2746,8 @@ export declare class LevelKey implements DecryptData {
2747
2746
  keyId: Uint8Array<ArrayBuffer> | null;
2748
2747
  pssh: Uint8Array<ArrayBuffer> | null;
2749
2748
  static clearKeyUriToKeyIdMap(): void;
2750
- constructor(method: string, uri: string, format: string, formatversions?: number[], iv?: Uint8Array<ArrayBuffer> | null);
2749
+ constructor(method: string, uri: string, format: string, formatversions?: number[], iv?: Uint8Array<ArrayBuffer> | null, keyId?: string);
2750
+ matches(key: LevelKey): boolean;
2751
2751
  isSupported(): boolean;
2752
2752
  getDecryptData(sn: number | 'initSegment'): LevelKey | null;
2753
2753
  }
package/dist/hls.d.ts CHANGED
@@ -989,7 +989,6 @@ export declare class EMEController extends Logger implements ComponentAPI {
989
989
  private handleError;
990
990
  private getKeySystemForKeyPromise;
991
991
  private getKeySystemSelectionPromise;
992
- private onMediaEncrypted;
993
992
  private onWaitingForKey;
994
993
  private attemptSetMediaKeys;
995
994
  private generateRequestWithPreferredKeySession;
@@ -2747,7 +2746,8 @@ export declare class LevelKey implements DecryptData {
2747
2746
  keyId: Uint8Array<ArrayBuffer> | null;
2748
2747
  pssh: Uint8Array<ArrayBuffer> | null;
2749
2748
  static clearKeyUriToKeyIdMap(): void;
2750
- constructor(method: string, uri: string, format: string, formatversions?: number[], iv?: Uint8Array<ArrayBuffer> | null);
2749
+ constructor(method: string, uri: string, format: string, formatversions?: number[], iv?: Uint8Array<ArrayBuffer> | null, keyId?: string);
2750
+ matches(key: LevelKey): boolean;
2751
2751
  isSupported(): boolean;
2752
2752
  getDecryptData(sn: number | 'initSegment'): LevelKey | null;
2753
2753
  }