mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 10:53:50 +02:00
14 lines
506 B
TypeScript
14 lines
506 B
TypeScript
/*!
|
|
* Copyright (c) 2026-present, Vanilagy and contributors
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/** Sample rates indexed by fscod (Table 4.1) */
|
|
export const AC3_SAMPLE_RATES = [48000, 44100, 32000];
|
|
|
|
/** E-AC-3 reduced sample rates for fscod2 per ATSC A/52:2018 */
|
|
export const EAC3_REDUCED_SAMPLE_RATES = [24000, 22050, 16000];
|