Skip to content

Add per-frame QP support to AVC #667

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion avc_codec_registration.src.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
{{EncodedVideoChunk/[[internal data]]}} bytes, (3) the
{{VideoDecoderConfig/description|VideoDecoderConfig.description}} bytes,
(4) the values of {{EncodedVideoChunk}} {{EncodedVideoChunk/[[type]]}},
and (5) the codec-specific extensions to {{VideoEncoderConfig}}
(5) the codec-specific extensions to {{VideoEncoderConfig}}, and
(6) the codec-specific extensions to {{VideoEncoderEncodeOptions}}.

The registration is not intended to include any information on whether a
codec format is encumbered by intellectual property claims. Implementers and
Expand Down Expand Up @@ -187,6 +188,42 @@
player generally has random access to the media data.
</dl>

VideoEncoderEncodeOptions extensions {#videoencoderencodeoptions-extensions}
==============================================================

<pre class='idl'>
<xmp>
partial dictionary VideoEncoderEncodeOptions {
VideoEncoderEncodeOptionsForAvc avc;
};
</xmp>
</pre>

<dl>
<dt><dfn dict-member for=VideoEncoderEncodeOptions>avc</dfn></dt>
<dd>
Contains codec specific encode options for the [[ITU-T-REC-H.264]] codec.
</dd>
</dl>

VideoEncoderEncodeOptionsForAvc {#avc-encode-options}
--------------------------------------
<pre class='idl'>
<xmp>
dictionary VideoEncoderEncodeOptionsForAvc {
unsigned short? quantizer;
};
</xmp>
</pre>

<dl>
<dt><dfn dict-member for=VideoEncoderEncodeOptionsForAvc>quantizer</dfn></dt>
<dd>
Sets per-frame quantizer value.
In [[ITU-T-REC-H.264]] the quantizer threshold can be varied from 0 to 51.
</dd>
</dl>

Privacy Considerations {#privacy-considerations}
==========================================================================

Expand Down