X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-indeo%2Fsrc%2Flib.rs;h=6c7056f392ac13f680c63ef8614f0840f818b222;hb=b9995c2ca73cb50f1e9f2ad7a08c49b20135b041;hp=adda3bf8f9034dc9130441ff77b1a2f57f6764c3;hpb=5641dccfbf2a70d589cf094a0d4ed5a10f919f00;p=nihav.git diff --git a/nihav-indeo/src/lib.rs b/nihav-indeo/src/lib.rs index adda3bf..6c7056f 100644 --- a/nihav-indeo/src/lib.rs +++ b/nihav-indeo/src/lib.rs @@ -1,3 +1,16 @@ +//! Crate for providing support for Intel multimedia formats. extern crate nihav_core; +extern crate nihav_codec_support; -pub mod codecs; +#[allow(clippy::collapsible_if)] +#[allow(clippy::identity_op)] +#[allow(clippy::needless_range_loop)] +#[allow(clippy::too_many_arguments)] +#[allow(clippy::useless_let_if_seq)] +#[allow(clippy::verbose_bit_mask)] +mod codecs; + +pub use crate::codecs::indeo_register_all_decoders; + +#[cfg(test)] +extern crate nihav_commonfmt; \ No newline at end of file