]>
Commit | Line | Data |
---|---|---|
1 | extern crate nihav_core; | |
2 | extern crate nihav_codec_support; | |
3 | ||
4 | #[allow(clippy::collapsible_if)] | |
5 | #[allow(clippy::identity_op)] | |
6 | #[allow(clippy::needless_range_loop)] | |
7 | #[allow(clippy::too_many_arguments)] | |
8 | #[allow(clippy::useless_let_if_seq)] | |
9 | #[allow(clippy::verbose_bit_mask)] | |
10 | mod codecs; | |
11 | ||
12 | pub use crate::codecs::indeo_register_all_codecs; | |
13 | ||
14 | #[cfg(test)] | |
15 | extern crate nihav_commonfmt; |