add some description to crates providing (de)coders and (de)muxers
[nihav.git] / nihav-indeo / src / lib.rs
index 78bb0608390e96ee3c713ce0ca25f9ce57e76c17..6c7056f392ac13f680c63ef8614f0840f818b222 100644 (file)
@@ -1,4 +1,6 @@
+//! Crate for providing support for Intel multimedia formats.
 extern crate nihav_core;
+extern crate nihav_codec_support;
 
 #[allow(clippy::collapsible_if)]
 #[allow(clippy::identity_op)]
@@ -6,7 +8,9 @@ extern crate nihav_core;
 #[allow(clippy::too_many_arguments)]
 #[allow(clippy::useless_let_if_seq)]
 #[allow(clippy::verbose_bit_mask)]
-pub mod codecs;
+mod codecs;
+
+pub use crate::codecs::indeo_register_all_decoders;
 
 #[cfg(test)]
 extern crate nihav_commonfmt;
\ No newline at end of file