make all codec crates export just register_all functions and document them
[nihav.git] / nihav-indeo / src / lib.rs
1 extern crate nihav_core;
2
3 #[allow(clippy::collapsible_if)]
4 #[allow(clippy::identity_op)]
5 #[allow(clippy::needless_range_loop)]
6 #[allow(clippy::too_many_arguments)]
7 #[allow(clippy::useless_let_if_seq)]
8 #[allow(clippy::verbose_bit_mask)]
9 mod codecs;
10
11 pub use codecs::indeo_register_all_codecs;
12
13 #[cfg(test)]
14 extern crate nihav_commonfmt;