1 //! Core functionality of NihAV intended to be used by both crates implementing format support and users.
2 #[cfg(feature="decoders")]
3 #[allow(clippy::cast_lossless)]
4 #[allow(clippy::identity_op)]
5 #[allow(clippy::too_many_arguments)]
6 #[allow(clippy::unreadable_literal)]
9 #[cfg(feature="compr")]
10 #[allow(clippy::manual_memcpy)]
11 #[allow(clippy::needless_range_loop)]
14 #[cfg(feature="muxers")]
17 #[cfg(feature="demuxers")]
20 #[allow(clippy::needless_range_loop)]
21 #[allow(clippy::too_many_arguments)]
24 #[allow(clippy::too_many_arguments)]
29 #[allow(clippy::collapsible_if)]
30 #[allow(clippy::many_single_char_names)]
31 #[allow(clippy::needless_range_loop)]
32 #[allow(clippy::trivially_copy_pass_by_ref)]
34 #[allow(clippy::unreadable_literal)]