Skip to content

Commit

Permalink
Remove maxFramerate (to be moved to extension spec)
Browse files Browse the repository at this point in the history
  • Loading branch information
henbos committed Nov 21, 2019
1 parent f7ce9fd commit d9e5f4f
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions webrtc.html
Expand Up @@ -36,7 +36,6 @@
<code><a>RTCOAuthCredential</a></code> dictionary.</li>
<li>The <code>getDefaultIceServers</code> method of <code><a>RTCPeerConnection</a></code>.</li>
<li>The <code>encodings</code> member of the <code><a>RTCRtpReceiveParameters</a></code> dictonary.</li>
<li>The <code>maxFramerate</code> member of the <code><a>RTCRtpEncodingParameters</a></code> dictionary.</li>
</ul>

</section>
Expand Down Expand Up @@ -5822,12 +5821,6 @@ <h2>Methods</h2>
one of the <code>scaleResolutionDownBy</code> values does not meet
this requirement, <a>throw</a> a <code>RangeError</code>.</p>
</li>
<li>
<p>Verify that each <code><a data-link-for="RTCRtpEncodingParameters">maxFramerate</a></code>
value in <var>sendEncodings</var> is greater than or equal to 0.0. If
one of the <code>maxFramerate</code> values does not meet
this requirement, <a>throw</a> a <code>RangeError</code>.</p>
</li>
<li>
<p>Let <var>maxN</var> be the maximum number of total simultaneous
encodings the user agent may support for this <var>kind</var>, at
Expand Down Expand Up @@ -6315,14 +6308,6 @@ <h2>Methods</h2>
<a data-link-for="exception" data-lt="create">created</a>
<code>RangeError</code>.</p>
</li>
<li>
<p>Verify that each <code><a data-link-for="RTCRtpEncodingParameters">maxFramerate</a></code>
value in <var>encodings</var> is greater than or equal to 0.0. If
one of the <code>maxFramerate</code> values does not meet
this requirement, return a promise <a>rejected</a> with a newly
<a data-link-for="exception" data-lt="create">created</a>
<code>RangeError</code>.</p>
</li>
</ol>
</li>
<li>Let <var>p</var> be a new promise.</li>
Expand Down Expand Up @@ -6805,7 +6790,6 @@ <h3><dfn>RTCRtpEncodingParameters</dfn> Dictionary</h3>
>dictionary RTCRtpEncodingParameters : RTCRtpCodingParameters {
boolean active = true;
unsigned long maxBitrate;
double maxFramerate;
double scaleResolutionDownBy;
};</pre>
<section>
Expand Down Expand Up @@ -6846,27 +6830,6 @@ <h2>Dictionary <code><a>RTCRtpEncodingParameters</a></code>
sent.
</p>
</dd>
<dt data-tests="RTCRtpParameters-encodings.html"><dfn data-idl><code>maxFramerate</code></dfn> of type <span class=
"idlMemberType">double</span></dt>
<dd>
<p>When present, indicates the maximum framerate that can be used to send this
encoding, in frames per second. The user agent is free to allocate bandwidth
between the encodings, as long as the <code>maxFramerate</code> value is not
exceeded.
</p>
<p>
If changed with <code>setParameters</code>, the new framerate
takes effect after the current
picture is completed; setting the max framerate to zero thus has
the effect of freezing the video on the next frame.
</p>
<div class="issue atrisk">
<p>Support for the <code>maxFramerate</code> member of the
<code><a>RTCRtpEncodingParameters</a></code> is marked
as a feature at risk, since there is no clear
commitment from implementers.</p>
</div>
</dd>
<dt data-tests="RTCRtpParameters-encodings.html"><dfn data-idl><code>scaleResolutionDownBy</code></dfn> of type
<span class="idlMemberType">double</span></dt>
<dd>
Expand Down

0 comments on commit d9e5f4f

Please sign in to comment.