| 41 | * Corresponds to the WebCodecs VideoDecoder API. |
| 42 | */ |
| 43 | export class VideoDecoderPolyfill extends EventTarget { |
| 44 | private init: VideoDecoderInit; |
| 45 | private codecContext: CodecContext | null = null; |
| 46 | private mutex = new AsyncMutex(); |
nothing calls this directly
no outgoing calls
no test coverage detected