|
14 | 14 | Abstract: This registration is entered into the [[webcodecs-codec-registry]].
|
15 | 15 | It describes, for AV1, the (1) fully qualified codec strings,
|
16 | 16 | (2) the codec-specific {{EncodedVideoChunk}}
|
17 |
| - {{EncodedVideoChunk/[[internal data]]}} bytes, (3) the |
| 17 | + {{EncodedVideoChunk/[[internal data]]}} bytes, (3) the codec-specific |
| 18 | + extensions to {{VideoEncoderConfig}}, (4) the |
18 | 19 | {{VideoDecoderConfig/description|VideoDecoderConfig.description}} bytes,
|
19 |
| - (4) the values of {{EncodedVideoChunk}} {{EncodedVideoChunk/[[type]]}}, and |
20 |
| - (5) the codec-specific extensions to {{VideoEncoderEncodeOptions}}. |
| 20 | + (5) the values of {{EncodedVideoChunk}} {{EncodedVideoChunk/[[type]]}}, 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
|
|
74 | 75 | contain a frame with a `frame_type` of `KEY_FRAME` as defined in Section
|
75 | 76 | 6.8.2 of [[AV1]].
|
76 | 77 |
|
| 78 | +VideoEncoderConfig extensions {#videoencoderconfig-extensions} |
| 79 | +============================================================== |
| 80 | + |
| 81 | +<pre class='idl'> |
| 82 | +<xmp> |
| 83 | +partial dictionary VideoEncoderConfig { |
| 84 | + AV1EncoderConfig av1; |
| 85 | +}; |
| 86 | +</xmp> |
| 87 | +</pre> |
| 88 | + |
| 89 | +<dl> |
| 90 | + <dt><dfn dict-member for=VideoEncoderConfig>av1</dfn></dt> |
| 91 | + <dd> |
| 92 | + Contains codec specific configuration options for the AV1 codec. |
| 93 | + </dd> |
| 94 | +</dl> |
| 95 | + |
| 96 | +AV1EncoderConfig {#av1-encoder-config} |
| 97 | +-------------------------------------- |
| 98 | +<pre class='idl'> |
| 99 | +<xmp> |
| 100 | +dictionary AV1EncoderConfig { |
| 101 | + boolean forceScreenContentTools = false; |
| 102 | +}; |
| 103 | +</xmp> |
| 104 | +</pre> |
| 105 | + |
| 106 | +<dl> |
| 107 | + <dt><dfn dict-member for=AV1EncoderConfig>forceScreenContentTools</dfn></dt> |
| 108 | + <dd> |
| 109 | + Indicates whether the encoder should force use of screen content |
| 110 | + coding tools. The default value (false) indicates that use of |
| 111 | + screen content coding tools is not forced. A value of true |
| 112 | + (corresponding to setting seq_force_screen_content_tools |
| 113 | + to SELECT_SCREEN_CONTENT_TOOLS in Section 5.5.1 |
| 114 | + of [[AV1]]) indicates that use of screen content coding tools |
| 115 | + is forced. |
| 116 | + </dd> |
| 117 | +</dl> |
| 118 | + |
77 | 119 | VideoEncoderEncodeOptions extensions {#videoencoderencodeoptions-extensions}
|
78 | 120 | ==============================================================
|
79 | 121 |
|
|
0 commit comments