tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

webcodecs-hevc-codec-registration.idl (608B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: HEVC (H.265) WebCodecs Registration (https://w3c.github.io/webcodecs/hevc_codec_registration.html)
      5 
      6 partial dictionary VideoEncoderConfig {
      7  HevcEncoderConfig hevc;
      8 };
      9 
     10 dictionary HevcEncoderConfig {
     11  HevcBitstreamFormat format = "hevc";
     12 };
     13 
     14 enum HevcBitstreamFormat {
     15  "annexb",
     16  "hevc",
     17 };
     18 
     19 partial dictionary VideoEncoderEncodeOptions {
     20  VideoEncoderEncodeOptionsForHevc hevc;
     21 };
     22 
     23 dictionary VideoEncoderEncodeOptionsForHevc {
     24  unsigned short? quantizer;
     25 };