Skip to content

Commit

Permalink
editorial: replace some lower-case ssrc with uppercase SSRC
Browse files Browse the repository at this point in the history
since it is an abbreviation defined in RFC 3550 and used in
uppercase there.

Not replaced where it refers to the idl dictionary key.
  • Loading branch information
fippo committed Jul 20, 2023
1 parent 611d409 commit d595fe9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions webrtc-stats.html
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ <h3>
<pre class="example highlight">
An RTCRtpSender is sending two layers of simulcast (on SSRC=111 and
SSRC=222). Two "outbound-rtp" stats objects are observed, one with
ssrc=111, and the other with ssrc=222. Both objects' packet counters are
SSRC=111, and the other with SSRC=222. Both objects' packet counters are
increasing.

One layer is inactivated using RTCRtpSender.setParameters(). While
Expand Down Expand Up @@ -756,13 +756,13 @@ <h2>
</dt>
<dd>
<p>
The synchronization source (ssrc) identifier is an unsigned integer value per [[RFC3550]]
The synchronization source (SSRC) identifier is an unsigned integer value per [[RFC3550]]
used to identify the stream of RTP packets that this stats object is describing.
</p>
<p>
For outbound and inbound local, ssrc describes the stats for the RTP stream that were
For outbound and inbound local, SSRC describes the stats for the RTP stream that were
sent and received, respectively by those endpoints.
For the remote inbound and remote outbound, ssrc describes the stats for the RTP stream
For the remote inbound and remote outbound, SSRC describes the stats for the RTP stream
that were received by and sent to the remote endpoint.
</p>
</dd>
Expand Down Expand Up @@ -1292,7 +1292,7 @@ <h2>
Total number of RTP FEC bytes received for this <a>SSRC</a>, only including payload bytes.
This is a subset of {{RTCInboundRtpStreamStats/bytesReceived}}. If a FEC mechanism that
uses a different {{RTCRtpStreamStats/ssrc}} was negotiated, FEC packets are sent over a
separate ssrc but is still accounted for here.
separate SSRC but is still accounted for here.
</p>
</dd>
<dt>
Expand All @@ -1303,7 +1303,7 @@ <h2>
<p>
Total number of RTP FEC packets received for this <a>SSRC</a>. If a FEC mechanism that
uses a different {{RTCRtpStreamStats/ssrc}} was negotiated, FEC packets are sent over a
separate ssrc but is still accounted for here.
separate SSRC but is still accounted for here.
This counter can also be incremented when receiving FEC packets in-band with media packets
(e.g., with Opus).
</p>
Expand Down Expand Up @@ -1977,7 +1977,7 @@ <h2>
The total number of packets that were retransmitted for this <a>SSRC</a>. This is a
subset of {{RTCSentRtpStreamStats/packetsSent}}. If RTX is not negotiated, retransmitted
packets are sent over this {{RTCRtpStreamStats/ssrc}}. If RTX was negotiated,
retransmitted packets are sent over a separate ssrc but is still accounted for here.
retransmitted packets are sent over a separate SSRC but is still accounted for here.
</p>
</dd>
<dt>
Expand All @@ -1989,7 +1989,7 @@ <h2>
The total number of bytes that were retransmitted for this <a>SSRC</a>, only including
payload bytes. This is a subset of {{RTCSentRtpStreamStats/bytesSent}}. If RTX is not
negotiated, retransmitted bytes are sent over this {{RTCRtpStreamStats/ssrc}}. If RTX
was negotiated, retransmitted bytes are sent over a separate ssrc but is still
was negotiated, retransmitted bytes are sent over a separate SSRC but is still
accounted for here.
</p>
</dd>
Expand Down

0 comments on commit d595fe9

Please sign in to comment.