X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=b6e1690370e82c975f0e049ffec4f7ed088050e7;hb=e6aaad5c5273cd814b5748b7faf3751835a37217;hp=75dbc78d8101baeacb26537e8f565f9f7675bb52;hpb=ca8452f0b03bdf2c416eeee51ba59a8c9cd8c502;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index 75dbc78..b6e1690 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -1,32 +1,37 @@ +//! Core functionality of NihAV intended to be used by both crates implementing format support and users. #[cfg(feature="decoders")] +#[allow(clippy::upper_case_acronyms)] #[allow(clippy::cast_lossless)] #[allow(clippy::identity_op)] #[allow(clippy::too_many_arguments)] #[allow(clippy::unreadable_literal)] pub mod codecs; +#[cfg(feature="compr")] +#[allow(clippy::manual_memcpy)] +#[allow(clippy::needless_range_loop)] +pub mod compr; + +#[cfg(feature="muxers")] +pub mod muxers; + #[cfg(feature="demuxers")] pub mod demuxers; +#[allow(clippy::needless_range_loop)] #[allow(clippy::too_many_arguments)] pub mod formats; pub mod frame; #[allow(clippy::too_many_arguments)] pub mod io; +pub mod options; pub mod refs; -pub mod register; -#[allow(clippy::unreadable_literal)] -pub mod detect; pub mod reorder; -pub mod scale; - -#[cfg(feature="dsp")] -#[allow(clippy::excessive_precision)] -#[allow(clippy::identity_op)] +#[allow(clippy::upper_case_acronyms)] +#[allow(clippy::collapsible_if)] +#[allow(clippy::many_single_char_names)] #[allow(clippy::needless_range_loop)] +#[allow(clippy::trivially_copy_pass_by_ref)] +pub mod scale; #[allow(clippy::unreadable_literal)] -pub mod dsp; - -pub mod data; - -pub mod test; +pub mod soundcvt;