X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-indeo%2Fsrc%2Flib.rs;h=a89bd260638f957868ba83a74b14cb7983c7e8bb;hb=e6aaad5c5273cd814b5748b7faf3751835a37217;hp=ccc359580e9d2da133c0e0a30876df6dbcffa7b4;hpb=3167c45c8087a692192021e08a8063dff680001c;p=nihav.git diff --git a/nihav-indeo/src/lib.rs b/nihav-indeo/src/lib.rs index ccc3595..a89bd26 100644 --- a/nihav-indeo/src/lib.rs +++ b/nihav-indeo/src/lib.rs @@ -1,6 +1,25 @@ +//! 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::collapsible_else_if)] +#[allow(clippy::identity_op)] +#[allow(clippy::needless_range_loop)] +#[allow(clippy::needless_late_init)] +#[allow(clippy::too_many_arguments)] +#[allow(clippy::useless_let_if_seq)] +#[allow(clippy::verbose_bit_mask)] +#[allow(clippy::upper_case_acronyms)] +#[allow(clippy::manual_range_contains)] +mod codecs; + +pub use crate::codecs::indeo_register_all_decoders; +pub use crate::codecs::indeo_register_all_encoders; + +mod demuxers; + +pub use crate::demuxers::indeo_register_all_demuxers; #[cfg(test)] extern crate nihav_commonfmt; \ No newline at end of file