]>
Commit | Line | Data |
---|---|---|
b4d5b851 KS |
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)] | |
03011b99 | 11 | #[allow(clippy::manual_memcpy)] |
b4d5b851 KS |
12 | #[allow(clippy::needless_range_loop)] |
13 | #[allow(clippy::unreadable_literal)] | |
14 | pub mod dsp; | |
15 | ||
16 | pub mod data; | |
17 | ||
03011b99 KS |
18 | #[allow(clippy::identity_op)] |
19 | #[allow(clippy::many_single_char_names)] | |
8424ddfd KS |
20 | pub mod imgwrite; |
21 | ||
03011b99 KS |
22 | #[allow(clippy::too_many_arguments)] |
23 | #[allow(clippy::type_complexity)] | |
b4d5b851 KS |
24 | pub mod test; |
25 | ||
971ae306 | 26 | #[cfg(feature="vq")] |
03011b99 | 27 | #[allow(clippy::needless_range_loop)] |
971ae306 KS |
28 | pub mod vq; |
29 | ||
b4d5b851 | 30 | extern crate nihav_core; |