mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-16 13:59:51 +02:00
lossless: remove some size_t -> int conversions
Sizes are given as ints in the documentation and used as such elsewhere. Change-Id: I51ecd9e501cf9b4e3948aa0e947d2c9b5c85a30f
This commit is contained in:
@ -323,7 +323,7 @@ static void ColorIndexInverseTransform(
|
||||
}
|
||||
|
||||
void VP8LInverseTransform(const VP8LTransform* const transform,
|
||||
size_t row_start, size_t row_end,
|
||||
int row_start, int row_end,
|
||||
uint32_t* const data_in, uint32_t* const data_out) {
|
||||
assert(row_start < row_end);
|
||||
assert(row_end <= transform->ysize_);
|
||||
|
Reference in New Issue
Block a user