]>
Commit | Line | Data |
---|---|---|
5641dccf | 1 | extern crate nihav_core; |
b4d5b851 | 2 | extern crate nihav_codec_support; |
5641dccf | 3 | |
e07387c7 KS |
4 | #[cfg(feature="decoders")] |
5 | #[allow(clippy::cast_lossless)] | |
6 | #[allow(clippy::collapsible_if)] | |
b7c882c1 | 7 | #[allow(clippy::comparison_chain)] |
e07387c7 KS |
8 | #[allow(clippy::excessive_precision)] |
9 | #[allow(clippy::identity_op)] | |
10 | #[allow(clippy::needless_range_loop)] | |
fa57381e | 11 | #[allow(clippy::single_match)] |
e07387c7 KS |
12 | #[allow(clippy::too_many_arguments)] |
13 | #[allow(clippy::unreadable_literal)] | |
14 | #[allow(clippy::useless_let_if_seq)] | |
e64739f8 KS |
15 | mod codecs; |
16 | #[cfg(feature="decoders")] | |
78fb6560 | 17 | pub use crate::codecs::realmedia_register_all_decoders; |
e64739f8 | 18 | |
e07387c7 KS |
19 | #[cfg(feature="demuxers")] |
20 | #[allow(clippy::cast_lossless)] | |
21 | #[allow(clippy::too_many_arguments)] | |
22 | #[allow(clippy::unreadable_literal)] | |
23 | #[allow(clippy::useless_let_if_seq)] | |
e64739f8 KS |
24 | mod demuxers; |
25 | #[cfg(feature="demuxers")] | |
fa57381e | 26 | pub use crate::demuxers::realmedia_register_all_demuxers; |