make all codec crates export just register_all functions and document them
[nihav.git] / nihav-indeo / src / lib.rs
index ccc359580e9d2da133c0e0a30876df6dbcffa7b4..1ceba4e5e2b11820adcf43ad239fd4ebcf1f2ae0 100644 (file)
@@ -1,6 +1,14 @@
 extern crate nihav_core;
 
-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 codecs::indeo_register_all_codecs;
 
 #[cfg(test)]
 extern crate nihav_commonfmt;
\ No newline at end of file