Definition
WebRTC Encoded Transform defines SFrameEncryptorStream
[Exposed=(Window,DedicatedWorker)]
interface SFrameEncryptorStream {
constructor(SFrameTransformOptions options);
};
SFrameEncryptorStream includes GenericTransformStream;
SFrameEncryptorStream includes SFrameEncryptorManager;
Consolidated IDL (across mixin and partials)
[Exposed=(Window,DedicatedWorker)]
interface SFrameEncryptorStream {
constructor(SFrameTransformOptions options);
readonly attribute ReadableStream readable;
readonly attribute WritableStream writable;
Promise<undefined> setEncryptionKey(CryptoKey key, CryptoKeyID keyId);
};