From 9873f340496d685d3606668b9a760e1383aa8eb1 Mon Sep 17 00:00:00 2001 From: awxkee Date: Wed, 25 Sep 2024 22:15:23 +0100 Subject: [PATCH] SSE fixes --- src/sharpyuv/sharp_rgba_to_yuv.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sharpyuv/sharp_rgba_to_yuv.rs b/src/sharpyuv/sharp_rgba_to_yuv.rs index aac159c..f9230b7 100644 --- a/src/sharpyuv/sharp_rgba_to_yuv.rs +++ b/src/sharpyuv/sharp_rgba_to_yuv.rs @@ -4,6 +4,7 @@ * // Use of this source code is governed by a BSD-style * // license that can be found in the LICENSE file. */ +#[cfg(all(target_arch = "aarch64", target_feature = "neon"))] use crate::sharpyuv::neon::neon_rgba_to_sharp_yuv; use crate::sharpyuv::SharpYuvGammaTransfer; use crate::yuv_support::*;