// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://github.com/w3c/web-codecs
enum AacBitstreamFormat {
"aac",
"adts",
};
// NOTE: Keep this structure in sync with CopyAacConfig() defined in
// audio_encoder.cc.
dictionary AacEncoderConfig {
AacBitstreamFormat format = "aac";
};