412982e9925a94fea292390aff08643a3a2aab01
[nihav.git] / nihav-realmedia / src / lib.rs
1 extern crate nihav_core;
2
3 #[cfg(feature="decoders")]
4 #[allow(clippy::cast_lossless)]
5 #[allow(clippy::collapsible_if)]
6 #[allow(clippy::excessive_precision)]
7 #[allow(clippy::identity_op)]
8 #[allow(clippy::needless_range_loop)]
9 #[allow(clippy::too_many_arguments)]
10 #[allow(clippy::unreadable_literal)]
11 #[allow(clippy::useless_let_if_seq)]
12 pub mod codecs;
13 #[cfg(feature="demuxers")]
14 #[allow(clippy::cast_lossless)]
15 #[allow(clippy::too_many_arguments)]
16 #[allow(clippy::unreadable_literal)]
17 #[allow(clippy::useless_let_if_seq)]
18 pub mod demuxers;