core/demuxers: document module
[nihav.git] / nihav-core / src / lib.rs
CommitLineData
77d06de2 1#[cfg(feature="decoders")]
fdb4b2fb
KS
2#[allow(clippy::cast_lossless)]
3#[allow(clippy::identity_op)]
4#[allow(clippy::too_many_arguments)]
e243ceb4 5#[allow(clippy::unreadable_literal)]
77d06de2
KS
6pub mod codecs;
7
8#[cfg(feature="demuxers")]
5869fd63 9pub mod demuxers;
77d06de2 10
fdb4b2fb 11#[allow(clippy::too_many_arguments)]
fba6f8e4 12pub mod formats;
5869fd63 13pub mod frame;
fdb4b2fb 14#[allow(clippy::too_many_arguments)]
90aa4e6b 15pub mod io;
1a967e6b 16pub mod refs;
d48ee414 17pub mod register;
e243ceb4 18#[allow(clippy::unreadable_literal)]
b5bd2ae4 19pub mod detect;
ca8452f0 20pub mod reorder;
03accf76 21pub mod scale;
47f26235 22pub mod soundcvt;
3f3b5b23 23
e35062e7 24#[cfg(feature="dsp")]
fdb4b2fb
KS
25#[allow(clippy::excessive_precision)]
26#[allow(clippy::identity_op)]
27#[allow(clippy::needless_range_loop)]
e243ceb4 28#[allow(clippy::unreadable_literal)]
3f3b5b23 29pub mod dsp;
cc0859d6 30
1fdbd53e
KS
31pub mod data;
32
4f6124ac 33pub mod test;