From be0ef6395f4fd0fba221f8068a00ae5b4500affb Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Tue, 10 Jan 2017 21:17:13 +0100 Subject: [PATCH] fix a comment typo Change-Id: I0fabd08cd8abd3cea7ddfd2e498507adb0d3c67e --- src/dsp/alpha_processing_sse2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsp/alpha_processing_sse2.c b/src/dsp/alpha_processing_sse2.c index 5acb481d..340d48e1 100644 --- a/src/dsp/alpha_processing_sse2.c +++ b/src/dsp/alpha_processing_sse2.c @@ -150,7 +150,7 @@ static int ExtractAlpha(const uint8_t* argb, int argb_stride, #define PREMULTIPLY(x, m) (((x) * (m)) >> 23) // We can't use a 'const int' for the SHUFFLE value, because it has to be an -// immediate in the _mm_shufflexx_epi16() instruction. We really a macro here. +// immediate in the _mm_shufflexx_epi16() instruction. We really need a macro. #define APPLY_ALPHA(RGBX, SHUFFLE, MASK, MULT) do { \ const __m128i argb0 = _mm_loadl_epi64((__m128i*)&(RGBX)); \ const __m128i argb1 = _mm_unpacklo_epi8(argb0, zero); \