From: Kostya Shishkov Date: Sat, 7 Mar 2026 05:07:12 +0000 (+0100) Subject: nihav_codec_support: remove unneeded feature selection guard X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=e7f6cd12a0f7045a2aa08598c0b37a71abeb13c3;p=nihav.git nihav_codec_support: remove unneeded feature selection guard --- diff --git a/nihav-codec-support/src/codecs/mod.rs b/nihav-codec-support/src/codecs/mod.rs index f6169b1..e450864 100644 --- a/nihav-codec-support/src/codecs/mod.rs +++ b/nihav-codec-support/src/codecs/mod.rs @@ -270,7 +270,7 @@ impl fmt::Display for MV { } } -#[cfg(any(feature="blockdsp"))] +#[cfg(feature="blockdsp")] pub mod blockdsp; #[cfg(feature="jpeg")]