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