summaryrefslogtreecommitdiffstats
path: root/thirdparty/libwebp/src/utils/quant_levels_dec_utils.c
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-02-03 15:16:57 +0100
committerGitHub <noreply@github.com>2022-02-03 15:16:57 +0100
commit6acbd5f77449dacbbe4989c99e63fbf67e6e29ea (patch)
tree10b17e69bda4a3e9080578c595f8e3e691788d1c /thirdparty/libwebp/src/utils/quant_levels_dec_utils.c
parentc4f38813b4e9d14f59fc43f66f24307962eb4fc1 (diff)
parent339dcd80aed70d025b98f943e2a57767701a84f1 (diff)
downloadredot-engine-6acbd5f77449dacbbe4989c99e63fbf67e6e29ea.tar.gz
Merge pull request #57102 from akien-mga/libwebp-1.2.2
Diffstat (limited to 'thirdparty/libwebp/src/utils/quant_levels_dec_utils.c')
-rw-r--r--thirdparty/libwebp/src/utils/quant_levels_dec_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/libwebp/src/utils/quant_levels_dec_utils.c b/thirdparty/libwebp/src/utils/quant_levels_dec_utils.c
index f65b6cdbb6..97e7893704 100644
--- a/thirdparty/libwebp/src/utils/quant_levels_dec_utils.c
+++ b/thirdparty/libwebp/src/utils/quant_levels_dec_utils.c
@@ -30,7 +30,7 @@
#define DFIX 4 // extra precision for ordered dithering
#define DSIZE 4 // dithering size (must be a power of two)
-// cf. http://en.wikipedia.org/wiki/Ordered_dithering
+// cf. https://en.wikipedia.org/wiki/Ordered_dithering
static const uint8_t kOrderedDither[DSIZE][DSIZE] = {
{ 0, 8, 2, 10 }, // coefficients are in DFIX fixed-point precision
{ 12, 4, 14, 6 },