diff --git a/avc_codec_registration.src.html b/avc_codec_registration.src.html index 34bbb4a4..0dfcaa5f 100644 --- a/avc_codec_registration.src.html +++ b/avc_codec_registration.src.html @@ -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 @@ -187,6 +188,42 @@ player generally has random access to the media data. +VideoEncoderEncodeOptions extensions {#videoencoderencodeoptions-extensions} +============================================================== + +
+
+partial dictionary VideoEncoderEncodeOptions {
+  VideoEncoderEncodeOptionsForAvc avc;
+};
+
+
+ +
+
avc
+
+ Contains codec specific encode options for the [[ITU-T-REC-H.264]] codec. +
+
+ +VideoEncoderEncodeOptionsForAvc {#avc-encode-options} +-------------------------------------- +
+
+dictionary VideoEncoderEncodeOptionsForAvc {
+  unsigned short? quantizer;
+};
+
+
+ +
+
quantizer
+
+ Sets per-frame quantizer value. + In [[ITU-T-REC-H.264]] the quantizer threshold can be varied from 0 to 51. +
+
+ Privacy Considerations {#privacy-considerations} ==========================================================================