@@ -2001,7 +2001,7 @@ interface VideoEncoderConfig {
2001
2001
alpha?: AlphaOption;
2002
2002
avc?: AvcEncoderConfig;
2003
2003
bitrate?: number;
2004
- bitrateMode?: BitrateMode ;
2004
+ bitrateMode?: VideoEncoderBitrateMode ;
2005
2005
codec: string;
2006
2006
displayHeight?: number;
2007
2007
displayWidth?: number;
@@ -19305,7 +19305,6 @@ type AutomationRate = "a-rate" | "k-rate";
19305
19305
type AvcBitstreamFormat = "annexb" | "avc";
19306
19306
type BinaryType = "arraybuffer" | "blob";
19307
19307
type BiquadFilterType = "allpass" | "bandpass" | "highpass" | "highshelf" | "lowpass" | "lowshelf" | "notch" | "peaking";
19308
- type BitrateMode = "constant" | "variable";
19309
19308
type CSSMathOperator = "clamp" | "invert" | "max" | "min" | "negate" | "product" | "sum";
19310
19309
type CSSNumericBaseType = "angle" | "flex" | "frequency" | "length" | "percent" | "resolution" | "time";
19311
19310
type CanPlayTypeResult = "" | "maybe" | "probably";
@@ -19354,7 +19353,7 @@ type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
19354
19353
type IDBRequestReadyState = "done" | "pending";
19355
19354
type IDBTransactionDurability = "default" | "relaxed" | "strict";
19356
19355
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
19357
- type ImageOrientation = "flipY" | "from-image";
19356
+ type ImageOrientation = "flipY" | "from-image" | "none" ;
19358
19357
type ImageSmoothingQuality = "high" | "low" | "medium";
19359
19358
type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
19360
19359
type IterationCompositeOperation = "accumulate" | "replace";
@@ -19453,6 +19452,7 @@ type TouchType = "direct" | "stylus";
19453
19452
type TransferFunction = "hlg" | "pq" | "srgb";
19454
19453
type UserVerificationRequirement = "discouraged" | "preferred" | "required";
19455
19454
type VideoColorPrimaries = "bt470bg" | "bt709" | "smpte170m";
19455
+ type VideoEncoderBitrateMode = "constant" | "quantizer" | "variable";
19456
19456
type VideoFacingModeEnum = "environment" | "left" | "right" | "user";
19457
19457
type VideoMatrixCoefficients = "bt470bg" | "bt709" | "rgb" | "smpte170m";
19458
19458
type VideoPixelFormat = "BGRA" | "BGRX" | "I420" | "I420A" | "I422" | "I444" | "NV12" | "RGBA" | "RGBX";
0 commit comments