]> git.nihav.org Git - nihav.git/commitdiff
nihav_codec_support: remove unneeded feature selection guard
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 7 Mar 2026 05:07:12 +0000 (06:07 +0100)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 7 Mar 2026 05:07:12 +0000 (06:07 +0100)
nihav-codec-support/src/codecs/mod.rs

index f6169b18fc641ca27ada728cd4656191b23fa422..e450864c3e957b6d91fc4cdcc1454b979849e5a6 100644 (file)
@@ -270,7 +270,7 @@ impl fmt::Display for MV {
     }
 }
 
-#[cfg(any(feature="blockdsp"))]
+#[cfg(feature="blockdsp")]
 pub mod blockdsp;
 
 #[cfg(feature="jpeg")]