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