blob: 994836026d34bb2e9154ed3d7607b1bd88497c0b [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://github.com/WICG/web-codecs
// NOTE: Keep this strucutre in sync with CopyConfig() defined in
// audio_decoder.cc.
dictionary AudioDecoderConfig {
// TODO(chcunningham): reference spec registry.
required DOMString codec;
// Rate of samples per second. 44100, 48000, etc.
required unsigned long sampleRate;
// 1, 2, etc.
required unsigned long numberOfChannels;
// Optional byte data required to initialize audio decoders such as Vorbis
// codebooks.
BufferSource description;
};