diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-15 22:41:52 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-15 22:41:52 +0200 |
commit | 82fb849678cef40f7b24d11a136b8661dcd13f42 (patch) | |
tree | 74984f7a83b27d654b37c723c178adc3f505568c /thirdparty/libwebp/src/enc/vp8li_enc.h | |
parent | 2749645d2a7173308228aa5fb0793a260fab733f (diff) | |
parent | 09bd34df934a815279ffe73045d10e7f4b2f9660 (diff) | |
download | redot-engine-82fb849678cef40f7b24d11a136b8661dcd13f42.tar.gz |
Merge pull request #91943 from akien-mga/libwebp-1.4.0
libwebp: Update to 1.4.0
Diffstat (limited to 'thirdparty/libwebp/src/enc/vp8li_enc.h')
-rw-r--r-- | thirdparty/libwebp/src/enc/vp8li_enc.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/thirdparty/libwebp/src/enc/vp8li_enc.h b/thirdparty/libwebp/src/enc/vp8li_enc.h index 3d35e1612d..c5b60dcb39 100644 --- a/thirdparty/libwebp/src/enc/vp8li_enc.h +++ b/thirdparty/libwebp/src/enc/vp8li_enc.h @@ -88,11 +88,9 @@ int VP8LEncodeImage(const WebPConfig* const config, const WebPPicture* const picture); // Encodes the main image stream using the supplied bit writer. -// If 'use_cache' is false, disables the use of color cache. // Returns false in case of error (stored in picture->error_code). int VP8LEncodeStream(const WebPConfig* const config, - const WebPPicture* const picture, VP8LBitWriter* const bw, - int use_cache); + const WebPPicture* const picture, VP8LBitWriter* const bw); #if (WEBP_NEAR_LOSSLESS == 1) // in near_lossless.c |