Definition
WebRTC Encoded Transform defines RTCRtpSFrameEncrypter
[Exposed=Window]
interface RTCRtpSFrameEncrypter {
constructor(RTCRtpSFrameEncrypterOptions options);
};
RTCRtpSFrameEncrypter includes SFrameEncrypterManager;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface RTCRtpSFrameEncrypter {
constructor(RTCRtpSFrameEncrypterOptions options);
Promise<undefined> setEncryptionKey(CryptoKey key, CryptoKeyID keyId);
};