@@ -2001,7 +2001,7 @@ interface VideoEncoderConfig {
20012001 alpha?: AlphaOption;
20022002 avc?: AvcEncoderConfig;
20032003 bitrate?: number;
2004- bitrateMode?: BitrateMode ;
2004+ bitrateMode?: VideoEncoderBitrateMode ;
20052005 codec: string;
20062006 displayHeight?: number;
20072007 displayWidth?: number;
@@ -19305,7 +19305,6 @@ type AutomationRate = "a-rate" | "k-rate";
1930519305type AvcBitstreamFormat = "annexb" | "avc";
1930619306type BinaryType = "arraybuffer" | "blob";
1930719307type BiquadFilterType = "allpass" | "bandpass" | "highpass" | "highshelf" | "lowpass" | "lowshelf" | "notch" | "peaking";
19308- type BitrateMode = "constant" | "variable";
1930919308type CSSMathOperator = "clamp" | "invert" | "max" | "min" | "negate" | "product" | "sum";
1931019309type CSSNumericBaseType = "angle" | "flex" | "frequency" | "length" | "percent" | "resolution" | "time";
1931119310type CanPlayTypeResult = "" | "maybe" | "probably";
@@ -19354,7 +19353,7 @@ type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
1935419353type IDBRequestReadyState = "done" | "pending";
1935519354type IDBTransactionDurability = "default" | "relaxed" | "strict";
1935619355type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
19357- type ImageOrientation = "flipY" | "from-image";
19356+ type ImageOrientation = "flipY" | "from-image" | "none" ;
1935819357type ImageSmoothingQuality = "high" | "low" | "medium";
1935919358type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
1936019359type IterationCompositeOperation = "accumulate" | "replace";
@@ -19453,6 +19452,7 @@ type TouchType = "direct" | "stylus";
1945319452type TransferFunction = "hlg" | "pq" | "srgb";
1945419453type UserVerificationRequirement = "discouraged" | "preferred" | "required";
1945519454type VideoColorPrimaries = "bt470bg" | "bt709" | "smpte170m";
19455+ type VideoEncoderBitrateMode = "constant" | "quantizer" | "variable";
1945619456type VideoFacingModeEnum = "environment" | "left" | "right" | "user";
1945719457type VideoMatrixCoefficients = "bt470bg" | "bt709" | "rgb" | "smpte170m";
1945819458type VideoPixelFormat = "BGRA" | "BGRX" | "I420" | "I420A" | "I422" | "I444" | "NV12" | "RGBA" | "RGBX";
0 commit comments