make all codec crates export just register_all functions and document them
[nihav.git] / nihav-indeo / src / lib.rs
index adda3bf8f9034dc9130441ff77b1a2f57f6764c3..1ceba4e5e2b11820adcf43ad239fd4ebcf1f2ae0 100644 (file)
@@ -1,3 +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