X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-codec-support%2Fsrc%2Flib.rs;fp=nihav-codec-support%2Fsrc%2Flib.rs;h=e2c2ef65d7e63b5259d912362736fd4cdf192c01;hb=b4d5b8515e75383b4fc59ea2813c90c615d59a96;hp=0000000000000000000000000000000000000000;hpb=2b8bf9a03242bbd6e80091082a50ec13b1a95143;p=nihav.git diff --git a/nihav-codec-support/src/lib.rs b/nihav-codec-support/src/lib.rs new file mode 100644 index 0000000..e2c2ef6 --- /dev/null +++ b/nihav-codec-support/src/lib.rs @@ -0,0 +1,19 @@ +//! Code and data for easier development of NihAV decoders. +#[allow(clippy::cast_lossless)] +#[allow(clippy::identity_op)] +#[allow(clippy::too_many_arguments)] +#[allow(clippy::unreadable_literal)] +pub mod codecs; + +#[cfg(feature="dsp")] +#[allow(clippy::excessive_precision)] +#[allow(clippy::identity_op)] +#[allow(clippy::needless_range_loop)] +#[allow(clippy::unreadable_literal)] +pub mod dsp; + +pub mod data; + +pub mod test; + +extern crate nihav_core;