| 21 | * Corresponds to the WebCodecs AudioDecoder API. |
| 22 | */ |
| 23 | export class AudioDecoderPolyfill extends EventTarget { |
| 24 | private init: AudioDecoderInit; |
| 25 | private codecContext: CodecContext | null = null; |
| 26 | private mutex = new AsyncMutex(); |
nothing calls this directly
no outgoing calls
no test coverage detected