mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-14 21:09:55 +02:00
decode.h: use size_t consistently
replaces mixed use of int/uint32_t for buffer sizes further changes the API/ABI. Change-Id: I91d70fd82ee3e1ac34b884b8ead9a114a9b1015a
This commit is contained in:
@ -102,7 +102,7 @@ typedef struct {
|
||||
// width and height. Returns 0 in case of formatting error. width/height
|
||||
// can be passed NULL.
|
||||
int VP8LGetInfo(const uint8_t* data,
|
||||
int data_size, // data available so far
|
||||
size_t data_size, // data available so far
|
||||
int *width, int *height);
|
||||
|
||||
// Allocates and initialize a new lossless decoder instance.
|
||||
|
Reference in New Issue
Block a user