Searched refs:NearLosslessComponent (Results 1 – 1 of 1) sorted by relevance
/external/webp/src/enc/ |
D | predictor_enc.c | 150 static uint8_t NearLosslessComponent(uint8_t value, uint8_t predict, in NearLosslessComponent() function 207 a = NearLosslessComponent(value >> 24, predict >> 24, 0xff, quantization); in NearLossless() 209 g = NearLosslessComponent((value >> 8) & 0xff, (predict >> 8) & 0xff, 0xff, in NearLossless() 220 r = NearLosslessComponent(NearLosslessDiff(value >> 16, green_diff), in NearLossless() 223 b = NearLosslessComponent(NearLosslessDiff(value, green_diff), in NearLossless()
|