From a8f86c2ef12b45774f9e0680c84558f1f3f881b7 Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 4 Mar 2022 15:26:21 -0800 Subject: [PATCH] alpha_processing_neon.c: fix 0x01... typo one instance was overlong leading to a int64->uint32 conversion warning Change-Id: I56d5ab75d89960c79293f62cd489d7ab519bbc34 (cherry picked from commit 03d12190552c3e95d31aa00303f28a8a2f813bdd) --- src/dsp/alpha_processing_neon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsp/alpha_processing_neon.c b/src/dsp/alpha_processing_neon.c index 50f08989..27d71750 100644 --- a/src/dsp/alpha_processing_neon.c +++ b/src/dsp/alpha_processing_neon.c @@ -157,7 +157,7 @@ static int ExtractAlpha_NEON(const uint8_t* argb, int argb_stride, alpha += alpha_stride; } vst1_u8((uint8_t*)tmp, mask8); - alpha_mask *= 0x0101010101; + alpha_mask *= 0x01010101; alpha_mask &= tmp[0]; alpha_mask &= tmp[1]; return (alpha_mask == 0xffffffffu);