symphonia_format_isomp4/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// The following lints are allowed in all Symphonia crates. Please see clippy.toml for their
10// justification.
11#![allow(clippy::comparison_chain)]
12#![allow(clippy::excessive_precision)]
13#![allow(clippy::identity_op)]
14#![allow(clippy::manual_range_contains)]
15
16mod atoms;
17mod demuxer;
18mod fourcc;
19mod fp;
20mod stream;
21
22pub use demuxer::IsoMp4Reader;