diff options
author | volzhs <volzhs@gmail.com> | 2020-01-17 03:49:31 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2020-01-17 03:49:31 +0900 |
commit | 65f2ab1b61d0949bae7f06553b081e1aae276148 (patch) | |
tree | e9b85cdc26a2a140ac6675d90dced255eb72c3c6 /thirdparty/libwebp/src/webp/decode.h | |
parent | 6b64c60b0eade65ca1147a0af39baefec732d652 (diff) |
Update libwebp to 1.1.0
Diffstat (limited to 'thirdparty/libwebp/src/webp/decode.h')
-rw-r--r-- | thirdparty/libwebp/src/webp/decode.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/thirdparty/libwebp/src/webp/decode.h b/thirdparty/libwebp/src/webp/decode.h index ae8bfe840e..80dd0ef0cc 100644 --- a/thirdparty/libwebp/src/webp/decode.h +++ b/thirdparty/libwebp/src/webp/decode.h @@ -20,7 +20,7 @@ extern "C" { #endif -#define WEBP_DECODER_ABI_VERSION 0x0208 // MAJOR(8b) + MINOR(8b) +#define WEBP_DECODER_ABI_VERSION 0x0209 // MAJOR(8b) + MINOR(8b) // Note: forward declaring enumerations is not allowed in (strict) C and C++, // the types are left here for reference. @@ -91,9 +91,6 @@ WEBP_EXTERN uint8_t* WebPDecodeYUV(const uint8_t* data, size_t data_size, uint8_t** u, uint8_t** v, int* stride, int* uv_stride); -// Releases memory returned by the WebPDecode*() functions above. -WEBP_EXTERN void WebPFree(void* ptr); - // These five functions are variants of the above ones, that decode the image // directly into a pre-allocated buffer 'output_buffer'. The maximum storage // available in this buffer is indicated by 'output_buffer_size'. If this |