webcodecs-avc-codec-registration.idl (596B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: AVC (H.264) WebCodecs Registration (https://w3c.github.io/webcodecs/avc_codec_registration.html) 5 6 partial dictionary VideoEncoderConfig { 7 AvcEncoderConfig avc; 8 }; 9 10 dictionary AvcEncoderConfig { 11 AvcBitstreamFormat format = "avc"; 12 }; 13 14 enum AvcBitstreamFormat { 15 "annexb", 16 "avc", 17 }; 18 19 partial dictionary VideoEncoderEncodeOptions { 20 VideoEncoderEncodeOptionsForAvc avc; 21 }; 22 23 dictionary VideoEncoderEncodeOptionsForAvc { 24 unsigned short? quantizer; 25 };