3% speed improvement for lossless webp encoder for low effort mode:

prevent updating unused histogram.

Benchmark on 1000 PNGs, 30 iterations, lossless, quality 0, method 0:
before: Compression (output/input): 2.9120/3.2667 bpp, Encode rate (raw data): 34.578 MP/s
after: Compression (output/input): 2.9120/3.2667 bpp, Encode rate (raw data): 36.980 MP/s

Change-Id: Id62759d4d111a6ba41c85c611a15d4f6ffc9f935
This commit is contained in:
Lode Vandevenne 2015-11-21 17:00:14 +01:00 committed by Pascal Massimino
parent 21735e06f7
commit b8c44f1aa4

View File

@ -692,7 +692,7 @@ void VP8LResidualImage(int width, int height, int bits, int low_effort,
uint32_t* const current_tile_rows = argb_scratch + width; uint32_t* const current_tile_rows = argb_scratch + width;
int tile_y; int tile_y;
int histo[4][256]; int histo[4][256];
memset(histo, 0, sizeof(histo)); if (!low_effort) memset(histo, 0, sizeof(histo));
for (tile_y = 0; tile_y < tiles_per_col; ++tile_y) { for (tile_y = 0; tile_y < tiles_per_col; ++tile_y) {
const int tile_y_offset = tile_y * max_tile_size; const int tile_y_offset = tile_y * max_tile_size;
const int this_tile_height = const int this_tile_height =
@ -720,6 +720,7 @@ void VP8LResidualImage(int width, int height, int bits, int low_effort,
image[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8); image[tile_y * tiles_per_row + tile_x] = 0xff000000u | (pred << 8);
CopyTileWithPrediction(width, height, tile_x, tile_y, bits, pred, CopyTileWithPrediction(width, height, tile_x, tile_y, bits, pred,
argb_scratch, argb); argb_scratch, argb);
if (!low_effort) {
for (y = 0; y < max_tile_size; ++y) { for (y = 0; y < max_tile_size; ++y) {
int all_x; int all_x;
int all_y = tile_y_offset + y; int all_y = tile_y_offset + y;
@ -733,6 +734,7 @@ void VP8LResidualImage(int width, int height, int bits, int low_effort,
} }
} }
} }
}
void VP8LSubtractGreenFromBlueAndRed_C(uint32_t* argb_data, int num_pixels) { void VP8LSubtractGreenFromBlueAndRed_C(uint32_t* argb_data, int num_pixels) {
int i; int i;