diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2021-11-09 18:30:05 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2021-11-09 18:49:28 +0100 |
commit | 16cca4d3a7a7505ae31a7469b3547c52650fd194 (patch) | |
tree | 4ccafc6255d3e4b341a75f22bc34e4e1e6f6b204 /nihav-mpeg/src/lib.rs | |
parent | 576cd7d337fc80ec25bb1fc07fa2d25c5373f7b0 (diff) | |
download | nihav-16cca4d3a7a7505ae31a7469b3547c52650fd194.tar.gz |
add nihav-mpeg crate
Diffstat (limited to 'nihav-mpeg/src/lib.rs')
-rw-r--r-- | nihav-mpeg/src/lib.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nihav-mpeg/src/lib.rs b/nihav-mpeg/src/lib.rs new file mode 100644 index 0000000..52700b3 --- /dev/null +++ b/nihav-mpeg/src/lib.rs @@ -0,0 +1,10 @@ +//! Crate for providing support for various MPEG formats. +extern crate nihav_core; +extern crate nihav_codec_support; + +#[cfg(feature="decoders")] +#[allow(clippy::needless_range_loop)] +mod codecs; + +#[cfg(feature="decoders")] +pub use crate::codecs::mpeg_register_all_decoders; |