make all codec crates export just register_all functions and document them
[nihav.git] / nihav-indeo / src / lib.rs
CommitLineData
5641dccf
KS
1extern crate nihav_core;
2
f2af8eca
KS
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)]
e64739f8
KS
9mod codecs;
10
11pub use codecs::indeo_register_all_codecs;
3167c45c
KS
12
13#[cfg(test)]
14extern crate nihav_commonfmt;