core/demuxers: document module
[nihav.git] / nihav-core / src / lib.rs
... / ...
CommitLineData
1#[cfg(feature="decoders")]
2#[allow(clippy::cast_lossless)]
3#[allow(clippy::identity_op)]
4#[allow(clippy::too_many_arguments)]
5#[allow(clippy::unreadable_literal)]
6pub mod codecs;
7
8#[cfg(feature="demuxers")]
9pub mod demuxers;
10
11#[allow(clippy::too_many_arguments)]
12pub mod formats;
13pub mod frame;
14#[allow(clippy::too_many_arguments)]
15pub mod io;
16pub mod refs;
17pub mod register;
18#[allow(clippy::unreadable_literal)]
19pub mod detect;
20pub mod reorder;
21pub mod scale;
22pub mod soundcvt;
23
24#[cfg(feature="dsp")]
25#[allow(clippy::excessive_precision)]
26#[allow(clippy::identity_op)]
27#[allow(clippy::needless_range_loop)]
28#[allow(clippy::unreadable_literal)]
29pub mod dsp;
30
31pub mod data;
32
33pub mod test;