codec_support: fix or silence clippy warnings
[nihav.git] / nihav-codec-support / src / lib.rs
1 //! Code and data for easier development of NihAV 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="dsp")]
9 #[allow(clippy::excessive_precision)]
10 #[allow(clippy::identity_op)]
11 #[allow(clippy::manual_memcpy)]
12 #[allow(clippy::needless_range_loop)]
13 #[allow(clippy::unreadable_literal)]
14 pub mod dsp;
15
16 pub mod data;
17
18 #[allow(clippy::identity_op)]
19 #[allow(clippy::many_single_char_names)]
20 pub mod imgwrite;
21
22 #[allow(clippy::too_many_arguments)]
23 #[allow(clippy::type_complexity)]
24 pub mod test;
25
26 #[cfg(feature="vq")]
27 #[allow(clippy::needless_range_loop)]
28 pub mod vq;
29
30 extern crate nihav_core;