mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-03 23:46:49 +02:00
Inline GetResidual for speed.
Change-Id: Ib4228e87dc448866229c0795ca68dabe777ef31c
This commit is contained in:
parent
7d58d1b7b9
commit
9e8e1b7b2a
@ -684,14 +684,13 @@ static uint32_t NearLossless(uint32_t value, uint32_t predict,
|
|||||||
// Returns the difference between the pixel and its prediction. In case of a
|
// Returns the difference between the pixel and its prediction. In case of a
|
||||||
// lossy encoding, updates the source image to avoid propagating the deviation
|
// lossy encoding, updates the source image to avoid propagating the deviation
|
||||||
// further to pixels which depend on the current pixel for their predictions.
|
// further to pixels which depend on the current pixel for their predictions.
|
||||||
static uint32_t GetResidual(int width, int height,
|
static WEBP_INLINE uint32_t GetResidual(int width, int height,
|
||||||
uint32_t* const upper_row,
|
uint32_t* const upper_row,
|
||||||
uint32_t* const current_row,
|
uint32_t* const current_row,
|
||||||
const uint8_t* const max_diffs,
|
const uint8_t* const max_diffs,
|
||||||
int mode, VP8LPredictorFunc pred_func,
|
int mode, VP8LPredictorFunc pred_func,
|
||||||
int x, int y,
|
int x, int y, int max_quantization,
|
||||||
int max_quantization,
|
int exact, int used_subtract_green) {
|
||||||
int exact, int used_subtract_green) {
|
|
||||||
const uint32_t predict = Predict(pred_func, x, y, current_row, upper_row);
|
const uint32_t predict = Predict(pred_func, x, y, current_row, upper_row);
|
||||||
uint32_t residual;
|
uint32_t residual;
|
||||||
if (max_quantization == 1 || mode == 0 || y == 0 || y == height - 1 ||
|
if (max_quantization == 1 || mode == 0 || y == 0 || y == height - 1 ||
|
||||||
|
Loading…
x
Reference in New Issue
Block a user