mirror of
https://github.com/webmproject/libwebp.git
synced 2025-07-15 21:39:59 +02:00
Fix some function declarations
- fix some function declarations to match the implementation - fix some consts Change-Id: I8c89f49ec68d3dd1db7f8ee5cac73777f52d2576
This commit is contained in:
@ -411,12 +411,12 @@ static int GetBestPredictorForTile(int width, int height,
|
||||
// If max_quantization > 1, applies near lossless processing, quantizing
|
||||
// residuals to multiples of quantization levels up to max_quantization
|
||||
// (the actual quantization level depends on smoothness near the given pixel).
|
||||
static void CopyImageWithPrediction(int width, int height,
|
||||
int bits, uint32_t* const modes,
|
||||
static void CopyImageWithPrediction(int width, int height, int bits,
|
||||
const uint32_t* const modes,
|
||||
uint32_t* const argb_scratch,
|
||||
uint32_t* const argb,
|
||||
int low_effort, int max_quantization,
|
||||
int exact, int used_subtract_green) {
|
||||
uint32_t* const argb, int low_effort,
|
||||
int max_quantization, int exact,
|
||||
int used_subtract_green) {
|
||||
const int tiles_per_row = VP8LSubSampleSize(width, bits);
|
||||
// The width of upper_row and current_row is one pixel larger than image width
|
||||
// to allow the top right pixel to point to the leftmost pixel of the next row
|
||||
|
Reference in New Issue
Block a user