X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-core%2Fsrc%2Flib.rs;h=c98956d85a3957ecc92ab3685d1dfabc5c2fb61b;hb=575c0b27ffcb7440620222e6e78c9ecb4006cf99;hp=a53f304b2b8013cd1e560bfbfd7c55dacdf1e682;hpb=b4d5b8515e75383b4fc59ea2813c90c615d59a96;p=nihav.git diff --git a/nihav-core/src/lib.rs b/nihav-core/src/lib.rs index a53f304..c98956d 100644 --- a/nihav-core/src/lib.rs +++ b/nihav-core/src/lib.rs @@ -6,6 +6,12 @@ #[allow(clippy::unreadable_literal)] pub mod codecs; +#[cfg(feature="compr")] +pub mod compr; + +#[cfg(feature="muxers")] +pub mod muxers; + #[cfg(feature="demuxers")] pub mod demuxers; @@ -15,9 +21,6 @@ pub mod frame; #[allow(clippy::too_many_arguments)] pub mod io; pub mod refs; -pub mod register; -#[allow(clippy::unreadable_literal)] -pub mod detect; pub mod reorder; pub mod scale; pub mod soundcvt;