fix re-exports of crate submodules
[nihav.git] / nihav-indeo / src / lib.rs
index ccc359580e9d2da133c0e0a30876df6dbcffa7b4..21b4cd924faa95de979f70ad8fa554fb3f89e7df 100644 (file)
@@ -1,6 +1,15 @@
 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_codecs;
 
 #[cfg(test)]
 extern crate nihav_commonfmt;
\ No newline at end of file