Issue #1939 - Part 2: Update libwebp source.

This commit is contained in:
Job Bautista 2022-06-26 12:52:04 +08:00 committed by roytam1
commit 8038505d6c
127 changed files with 34059 additions and 775 deletions

View file

@ -77,6 +77,10 @@ VP8StatusCode WebPParseHeaders(WebPHeaderStructure* const headers);
//------------------------------------------------------------------------------
// Misc utils
// Returns true if crop dimensions are within image bounds.
int WebPCheckCropDimensions(int image_width, int image_height,
int x, int y, int w, int h);
// Initializes VP8Io with custom setup, io and teardown functions. The default
// hooks will use the supplied 'params' as io->opaque handle.
void WebPInitCustomIo(WebPDecParams* const params, VP8Io* const io);