Skip to content

Commit c462aa4

Browse files
authored
Merge pull request #701 from w3c/aboba-patch-4
Add support for per-frame QP to HEVC
2 parents ad36dc3 + 7a7abcf commit c462aa4

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

hevc_codec_registration.src.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,42 @@
188188
player generally has random access to the media data.
189189
</dl>
190190

191+
VideoEncoderEncodeOptions extensions {#videoencoderencodeoptions-extensions}
192+
==============================================================
193+
194+
<pre class='idl'>
195+
<xmp>
196+
partial dictionary VideoEncoderEncodeOptions {
197+
VideoEncoderEncodeOptionsForHevc hevc;
198+
};
199+
</xmp>
200+
</pre>
201+
202+
<dl>
203+
<dt><dfn dict-member for=VideoEncoderEncodeOptions>hevc</dfn></dt>
204+
<dd>
205+
Contains codec specific encode options for the [[ITU-T-REC-H.265]] codec.
206+
</dd>
207+
</dl>
208+
209+
VideoEncoderEncodeOptionsForHevc {#hevc-encode-options}
210+
--------------------------------------
211+
<pre class='idl'>
212+
<xmp>
213+
dictionary VideoEncoderEncodeOptionsForHevc {
214+
unsigned short? quantizer;
215+
};
216+
</xmp>
217+
</pre>
218+
219+
<dl>
220+
<dt><dfn dict-member for=VideoEncoderEncodeOptionsForHevc>quantizer</dfn></dt>
221+
<dd>
222+
Sets per-frame quantizer value.
223+
In [[ITU-T-REC-H.265]] the quantizer threshold can be varied from 0 to 51.
224+
</dd>
225+
</dl>
226+
191227
Privacy Considerations {#privacy-considerations}
192228
==========================================================================
193229

0 commit comments

Comments
 (0)