mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
Merge "cosmetics: add missing const"
This commit is contained in:
commit
a575b4bc15
@ -139,7 +139,7 @@ static WEBP_INLINE int PlaneCodeToDistance(int xsize, int plane_code) {
|
|||||||
const int dist_code = code_to_plane_lut[plane_code - 1];
|
const int dist_code = code_to_plane_lut[plane_code - 1];
|
||||||
const int yoffset = dist_code >> 4;
|
const int yoffset = dist_code >> 4;
|
||||||
const int xoffset = 8 - (dist_code & 0xf);
|
const int xoffset = 8 - (dist_code & 0xf);
|
||||||
int dist = yoffset * xsize + xoffset;
|
const int dist = yoffset * xsize + xoffset;
|
||||||
return (dist >= 1) ? dist : 1;
|
return (dist >= 1) ? dist : 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user