]>
Commit | Line | Data |
---|---|---|
b9995c2c | 1 | //! Crate for providing support for Intel multimedia formats. |
5641dccf | 2 | extern crate nihav_core; |
b4d5b851 | 3 | extern crate nihav_codec_support; |
5641dccf | 4 | |
f2af8eca KS |
5 | #[allow(clippy::collapsible_if)] |
6 | #[allow(clippy::identity_op)] | |
7 | #[allow(clippy::needless_range_loop)] | |
8 | #[allow(clippy::too_many_arguments)] | |
9 | #[allow(clippy::useless_let_if_seq)] | |
10 | #[allow(clippy::verbose_bit_mask)] | |
e64739f8 KS |
11 | mod codecs; |
12 | ||
78fb6560 | 13 | pub use crate::codecs::indeo_register_all_decoders; |
3167c45c KS |
14 | |
15 | #[cfg(test)] | |
16 | extern crate nihav_commonfmt; |