@types/dom-webcodecs
Advanced tools
Comparing version 0.1.11 to 0.1.12
{ | ||
"name": "@types/dom-webcodecs", | ||
"version": "0.1.11", | ||
"version": "0.1.12", | ||
"description": "TypeScript definitions for dom-webcodecs", | ||
@@ -23,5 +23,5 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/dom-webcodecs", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "c249592f0bf5095d315ec74f6b9c69aa629276cfdbd54cb381417e3718e4b755", | ||
"typeScriptVersion": "5.2", | ||
"typesPublisherContentHash": "1fb0732b0d2a665b6c1126c249be492e51244b0789d8f28a2bc4b26f6bd5bba6", | ||
"typeScriptVersion": "5.7", | ||
"nonNpm": true | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Mon, 20 Nov 2023 23:36:24 GMT | ||
* Last updated: Thu, 03 Oct 2024 23:07:50 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ |
@@ -34,4 +34,4 @@ ///////////////////////////// | ||
interface AudioDecoderSupport { | ||
config: AudioDecoderConfig; | ||
supported: boolean; | ||
config?: AudioDecoderConfig; | ||
supported?: boolean; | ||
} | ||
@@ -52,4 +52,4 @@ | ||
interface AudioEncoderSupport { | ||
config: AudioEncoderConfig; | ||
supported: boolean; | ||
config?: AudioEncoderConfig; | ||
supported?: boolean; | ||
} | ||
@@ -197,3 +197,3 @@ | ||
readonly duration: number; | ||
readonly format: AudioSampleFormat; | ||
readonly format: AudioSampleFormat | null; | ||
readonly numberOfChannels: number; | ||
@@ -410,6 +410,6 @@ readonly numberOfFrames: number; | ||
// type AlphaOption = "discard" | "keep"; | ||
type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar"; | ||
// type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar"; | ||
// type AvcBitstreamFormat = "annexb" | "avc"; | ||
// type CodecState = "closed" | "configured" | "unconfigured"; | ||
type EncodedAudioChunkType = "delta" | "key"; | ||
// type EncodedAudioChunkType = "delta" | "key"; | ||
// type EncodedVideoChunkType = "delta" | "key"; | ||
@@ -416,0 +416,0 @@ type HardwarePreference = "no-preference" | "prefer-hardware" | "prefer-software"; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19510