|
17 | 17 | {{EncodedVideoChunk/[[internal data]]}} bytes, (3) the
|
18 | 18 | {{VideoDecoderConfig/description|VideoDecoderConfig.description}} bytes,
|
19 | 19 | (4) the values of {{EncodedVideoChunk}} {{EncodedVideoChunk/[[type]]}},
|
20 |
| - and (5) the codec-specific extensions to {{VideoEncoderConfig}} |
| 20 | + (5) the codec-specific extensions to {{VideoEncoderConfig}}, and |
| 21 | + (6) the codec-specific extensions to {{VideoEncoderEncodeOptions}}. |
21 | 22 |
|
22 | 23 | The registration is not intended to include any information on whether a
|
23 | 24 | codec format is encumbered by intellectual property claims. Implementers and
|
|
187 | 188 | player generally has random access to the media data.
|
188 | 189 | </dl>
|
189 | 190 |
|
| 191 | +VideoEncoderEncodeOptions extensions {#videoencoderencodeoptions-extensions} |
| 192 | +============================================================== |
| 193 | + |
| 194 | +<pre class='idl'> |
| 195 | +<xmp> |
| 196 | +partial dictionary VideoEncoderEncodeOptions { |
| 197 | + VideoEncoderEncodeOptionsForAvc avc; |
| 198 | +}; |
| 199 | +</xmp> |
| 200 | +</pre> |
| 201 | + |
| 202 | +<dl> |
| 203 | + <dt><dfn dict-member for=VideoEncoderEncodeOptions>avc</dfn></dt> |
| 204 | + <dd> |
| 205 | + Contains codec specific encode options for the [[ITU-T-REC-H.264]] codec. |
| 206 | + </dd> |
| 207 | +</dl> |
| 208 | + |
| 209 | +VideoEncoderEncodeOptionsForAvc {#avc-encode-options} |
| 210 | +-------------------------------------- |
| 211 | +<pre class='idl'> |
| 212 | +<xmp> |
| 213 | +dictionary VideoEncoderEncodeOptionsForAvc { |
| 214 | + unsigned short? quantizer; |
| 215 | +}; |
| 216 | +</xmp> |
| 217 | +</pre> |
| 218 | + |
| 219 | +<dl> |
| 220 | + <dt><dfn dict-member for=VideoEncoderEncodeOptionsForAvc>quantizer</dfn></dt> |
| 221 | + <dd> |
| 222 | + Sets per-frame quantizer value. |
| 223 | + In [[ITU-T-REC-H.264]] the quantizer threshold can be varied from 0 to 51. |
| 224 | + </dd> |
| 225 | +</dl> |
| 226 | + |
190 | 227 | Privacy Considerations {#privacy-considerations}
|
191 | 228 | ==========================================================================
|
192 | 229 |
|
|
0 commit comments