X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=d9eab81e107c95fda31eb27e8cdd7339b607a7bc;hb=25e0bf9a974b1bb5a8f8b38e23b4a7e91db3eab0;hp=a3e2df12925794f2ebc2c023c1fab8d760b60335;hpb=fdb4b2fbe87ca6e15f6d5e8ad040b7c9ee883053;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index a3e2df1..d9eab81 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -1,3 +1,4 @@ +//! Core functionality of NihAV intended to be used by both crates implementing format support and users. #[cfg(feature="decoders")] #[allow(clippy::cast_lossless)] #[allow(clippy::identity_op)] @@ -5,25 +6,30 @@ #[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 scale; - -#[cfg(feature="dsp")] -#[allow(clippy::excessive_precision)] -#[allow(clippy::identity_op)] +pub mod reorder; +#[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 test; +pub mod soundcvt;