move GenericCache to common place
[nihav.git] / nihav-core / src / lib.rs
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)]
6 pub mod codecs;
7
8 #[cfg(feature="demuxers")]
9 pub mod demuxers;
10
11 #[allow(clippy::too_many_arguments)]
12 pub mod formats;
13 pub mod frame;
14 #[allow(clippy::too_many_arguments)]
15 pub mod io;
16 pub mod refs;
17 pub mod register;
18 #[allow(clippy::unreadable_literal)]
19 pub mod detect;
20 pub mod scale;
21
22 #[cfg(feature="dsp")]
23 #[allow(clippy::excessive_precision)]
24 #[allow(clippy::identity_op)]
25 #[allow(clippy::needless_range_loop)]
26 #[allow(clippy::unreadable_literal)]
27 pub mod dsp;
28
29 pub mod data;
30
31 pub mod test;