summaryrefslogtreecommitdiffstats
path: root/thirdparty/libwebp/src/utils/quant_levels_dec_utils.c
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-01-23 23:01:49 +0100
committerRémi Verschelde <rverschelde@gmail.com>2022-02-02 23:29:30 +0100
commit339dcd80aed70d025b98f943e2a57767701a84f1 (patch)
tree50188d20cb180f39198f90b97a146b35a1e697b9 /thirdparty/libwebp/src/utils/quant_levels_dec_utils.c
parentbf12719ccabcea9bf9b274f77511e02581678774 (diff)
downloadredot-engine-339dcd80aed70d025b98f943e2a57767701a84f1.tar.gz
libwebp: Sync with upstream 1.2.2
Changes: https://chromium.googlesource.com/webm/libwebp/+/1.2.2/NEWS
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 },