From a5bb55d6335dbc02ce89a252c8f487f69808a80e Mon Sep 17 00:00:00 2001 From: philipel Date: Mon, 10 Jun 2024 16:52:16 +0200 Subject: [PATCH] Remove associated RTX SSRCs from RtpSendStream and RtpReceiveStream. --- api-outline.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-outline.md b/api-outline.md index 2e67be0..98f4e40 100644 --- a/api-outline.md +++ b/api-outline.md @@ -126,7 +126,6 @@ interface RtpSendStream { readonly attribute DOMString mid?; // Shared among many RtpSendStreams readonly attribute DOMString rid?; // Unique to RtpSendStream (scoped to MID) readonly attribute unsigned long ssrc; - readonly attribute unsigned long rtxSsrc; attribute EventHandler onpacketizedrtp; sequence readPacketizedRtp(long maxNumberOfPackets); @@ -166,7 +165,6 @@ interface RtpReceiveStream { readonly attribute DOMString mid?; // Shared among many RtpReceivetreams readonly attribute DOMString rid?; // Unique to RtpReceiveStream (scoped to MID) readonly attribute sequence ssrcs; - readonly attribute sequence rtxSsrcs; attribute EventHandler onreceivedrtp; sequence readReceivedRtp(long maxNumberOfPackets);