Skip to content

Commit

Permalink
Allow 'S' modes with only a single active layer
Browse files Browse the repository at this point in the history
Fixes Issue #73
  • Loading branch information
aboba committed Feb 13, 2023
1 parent 99882c7 commit 37d1404
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions index.html
Expand Up @@ -165,11 +165,15 @@ <h3>{{RTCPeerConnection/addTransceiver()}}</h3>
[= exception/throw =] an {{OperationError}}.
</li>
<li>
If the number of {{RTCRtpEncodingParameters}} stored in
<var>sendEncodings</var> is more than 1, and
If {{RTCRtpEncodingParameters}} stored in
<var>sendEncodings</var> contains more than 1
encoding with an {{RTCRtpEncodingParameters/active}}
member with a value of <code>true</code> and
<var>sendEncodings</var> contains any encoding whose
{{RTCRtpEncodingParameters/scalabilityMode}} value
represents an "S mode" [= exception/throw =] an
represents an "S mode" and whose
{{RTCRtpEncodingParameters/active}} member has a
value of <code>true</code>, [= exception/throw =] an
{{OperationError}}.
</li>
</ol>
Expand Down Expand Up @@ -231,10 +235,15 @@ <h3>{{RTCRtpSender/setParameters()}}</h3>
not supported by the most preferred codec.
</li>
<li>
<var>N</var> is greater than 1, and <var>encodings</var>
contains an encoding whose
If {{RTCRtpEncodingParameters}} stored in
<var>encodings</var> contains more than 1
encoding with an {{RTCRtpEncodingParameters/active}}
member with a value of <code>true</code> and
<var>encodings</var> contains any encoding whose
{{RTCRtpEncodingParameters/scalabilityMode}} value
represents an "S mode".
represents an "S mode" and whose
{{RTCRtpEncodingParameters/active}} member has a
value of <code>true</code>.
</li>
</ol>
</p>
Expand Down

0 comments on commit 37d1404

Please sign in to comment.