aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-core/src/lib.rs
blob: a53f304b2b8013cd1e560bfbfd7c55dacdf1e682 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! Core functionality of NihAV intended to be used by both crates implementing format support and users.
#[cfg(feature="decoders")]
#[allow(clippy::cast_lossless)]
#[allow(clippy::identity_op)]
#[allow(clippy::too_many_arguments)]
#[allow(clippy::unreadable_literal)]
pub mod codecs;

#[cfg(feature="demuxers")]
pub mod demuxers;

#[allow(clippy::too_many_arguments)]
pub mod formats;
pub mod frame;
#[allow(clippy::too_many_arguments)]
pub mod io;
pub mod refs;
pub mod register;
#[allow(clippy::unreadable_literal)]
pub mod detect;
pub mod reorder;
pub mod scale;
pub mod soundcvt;