diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-01-23 23:01:49 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-02-02 23:29:30 +0100 |
commit | 339dcd80aed70d025b98f943e2a57767701a84f1 (patch) | |
tree | 50188d20cb180f39198f90b97a146b35a1e697b9 /thirdparty/libwebp/src/dec/vp8_dec.c | |
parent | bf12719ccabcea9bf9b274f77511e02581678774 (diff) |
libwebp: Sync with upstream 1.2.2
Changes: https://chromium.googlesource.com/webm/libwebp/+/1.2.2/NEWS
Diffstat (limited to 'thirdparty/libwebp/src/dec/vp8_dec.c')
-rw-r--r-- | thirdparty/libwebp/src/dec/vp8_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/libwebp/src/dec/vp8_dec.c b/thirdparty/libwebp/src/dec/vp8_dec.c index 5f405e4c2a..2003935ec4 100644 --- a/thirdparty/libwebp/src/dec/vp8_dec.c +++ b/thirdparty/libwebp/src/dec/vp8_dec.c @@ -403,7 +403,7 @@ static const uint8_t kZigzag[16] = { 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15 }; -// See section 13-2: http://tools.ietf.org/html/rfc6386#section-13.2 +// See section 13-2: https://datatracker.ietf.org/doc/html/rfc6386#section-13.2 static int GetLargeValue(VP8BitReader* const br, const uint8_t* const p) { int v; if (!VP8GetBit(br, p[3], "coeffs")) { |