symphonia_codec_aac/lib.rs
1// Symphonia
2// Copyright (c) 2019-2022 The Project Symphonia Developers.
3//
4// This Source Code Form is subject to the terms of the Mozilla Public
5// License, v. 2.0. If a copy of the MPL was not distributed with this
6// file, You can obtain one at https://mozilla.org/MPL/2.0/.
7
8#![warn(rust_2018_idioms)]
9#![forbid(unsafe_code)]
10// The following lints are allowed in all Symphonia crates. Please see clippy.toml for their
11// justification.
12#![allow(clippy::comparison_chain)]
13#![allow(clippy::excessive_precision)]
14#![allow(clippy::identity_op)]
15#![allow(clippy::manual_range_contains)]
16// TODO: Remove this when refactoring AAC.
17#![allow(clippy::needless_range_loop)]
18
19mod aac;
20mod adts;
21mod common;
22
23pub use aac::AacDecoder;
24pub use adts::AdtsReader;