summaryrefslogtreecommitdiff
path: root/src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c
diff options
context:
space:
mode:
authorEirik Aavitsland <eirik.aavitsland@qt.io>2023-01-13 10:33:09 +0100
committerEirik Aavitsland <eirik.aavitsland@qt.io>2023-01-16 14:01:04 +0100
commit3cba6d10543c508e2c2f8b942dad9147c0d1ea0d (patch)
treebd20f277152ce381f71d4c4c6be043773dc4fd8e /src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c
parentcd92d76e9dcd98f4fc974c796453459779393bdc (diff)
downloadqtimageformats-3cba6d10543c508e2c2f8b942dad9147c0d1ea0d.tar.gz
Update bundled libwebp to version 1.3.0
[ChangeLog][Third-Party Code] Update bundled libwebp to version 1.3.0 Pick-to: 6.5 6.4 6.2 5.15 Change-Id: Ib7645b7348e950bfa27b902de6da879f8309408d Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c')
-rw-r--r--src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c b/src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c
index cdf877c..1156ac3 100644
--- a/src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c
+++ b/src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c
@@ -26,7 +26,7 @@ static int ExtractAlpha_SSE41(const uint8_t* WEBP_RESTRICT argb,
// value is not 0xff if any of the alpha[] is not equal to 0xff.
uint32_t alpha_and = 0xff;
int i, j;
- const __m128i all_0xff = _mm_set1_epi32(~0u);
+ const __m128i all_0xff = _mm_set1_epi32(~0);
__m128i all_alphas = all_0xff;
// We must be able to access 3 extra bytes after the last written byte