Skip to content

Commit

Permalink
Remove associated RTX SSRCs from RtpSendStream and RtpReceiveStream.
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipel-WebRTC committed Jun 10, 2024
1 parent e8e25d3 commit a5bb55d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions api-outline.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<RtpPacket> readPacketizedRtp(long maxNumberOfPackets);
Expand Down Expand Up @@ -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<unsigned long> ssrcs;
readonly attribute sequence<unsigned long> rtxSsrcs;

attribute EventHandler onreceivedrtp;
sequence<RtpPacket> readReceivedRtp(long maxNumberOfPackets);
Expand Down

0 comments on commit a5bb55d

Please sign in to comment.