]>
Commit | Line | Data |
---|---|---|
b9995c2c | 1 | //! Crate for providing support for various QuickTime formats. |
4c1582cf KS |
2 | extern crate nihav_core; |
3 | extern crate nihav_codec_support; | |
4 | ||
b7c882c1 | 5 | #[allow(clippy::comparison_chain)] |
4c1582cf | 6 | #[allow(clippy::single_match)] |
e6aaad5c KS |
7 | #[allow(clippy::field_reassign_with_default)] |
8 | #[allow(clippy::upper_case_acronyms)] | |
9 | #[allow(clippy::collapsible_else_if)] | |
4c1582cf | 10 | mod codecs; |
78fb6560 | 11 | pub use crate::codecs::qt_register_all_decoders; |