Skip to content

Commit

Permalink
Merge pull request w3c#206 from w3c/jan-ivar-patch-1
Browse files Browse the repository at this point in the history
Fix links by s/codec match/codec dictionary match/
  • Loading branch information
jan-ivar authored Apr 25, 2024
2 parents 7c31919 + b65516f commit 28fd764
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ <h3>setParameters()</h3>
</li>
<li>
<p>If any <var>encoding</var> in encodings [=map/exists|contains=] a codec
[= codec match | not found =] in <var>choosableCodecs</var>, return a promise
[= codec dictionary match | not found =] in <var>choosableCodecs</var>, return a promise
[= rejected =] with a newly [= exception/created =] {{InvalidModificationError}}.</p>
</li>
<li>
Expand All @@ -443,7 +443,7 @@ <h3>addTransceiver()</h3>
<p>Add the following steps to the [=RTCPeerConnection/addTransceiver sendEncodings validation steps=]:</p>
<ol>
<li>
<p>If any <var>codec</var> parameter in <var>sendEncodings</var> does [= codec match | not match =] any codec in
<p>If any <var>codec</var> parameter in <var>sendEncodings</var> does [= codec dictionary match | not match =] any codec in
{{RTCRtpSender.getCapabilities(kind)}}.<code>codecs</code>,
[= exception/throw =] an {{OperationError}}.</p>
</li>
Expand All @@ -467,7 +467,7 @@ <h3>Set the session description</h3>
<ol>
<li>
<p>Remove any <var>codec</var> value in <var>transceiver</var>.{{RTCRtpTransceiver/[[Sender]]}}.{{RTCRtpSender/[[SendEncodings]]}}
that does not [= codec match | match =] any entry in <var>codecs</var>.</p>
that does not [= codec dictionary match | match =] any entry in <var>codecs</var>.</p>
</li>
</ol>
</li>
Expand Down

0 comments on commit 28fd764

Please sign in to comment.