| Index: third_party/libwebp/utils/quant_levels_dec.c
|
| diff --git a/third_party/libwebp/utils/quant_levels_dec.c b/third_party/libwebp/utils/quant_levels_dec.c
|
| index c599e40a1fc2e403e86035468bb83b2ca6654496..5b8b8b49e6bf732a86c110c344e1fbca7287c96b 100644
|
| --- a/third_party/libwebp/utils/quant_levels_dec.c
|
| +++ b/third_party/libwebp/utils/quant_levels_dec.c
|
| @@ -32,10 +32,10 @@
|
| #define DSIZE 4 // dithering size (must be a power of two)
|
| // cf. http://en.wikipedia.org/wiki/Ordered_dithering
|
| static const uint8_t kOrderedDither[DSIZE][DSIZE] = {
|
| - { 0, 8, 2, 10 }, // coefficients are in DFIX fixed-point precision
|
| - { 12, 4, 14, 6 },
|
| - { 3, 11, 1, 9 },
|
| - { 15, 7, 13, 5 }
|
| + { 0, 8, 2, 10 }, // coefficients are in DFIX fixed-point precision
|
| + { 12, 4, 14, 6 },
|
| + { 3, 11, 1, 9 },
|
| + { 15, 7, 13, 5 }
|
| };
|
|
|
| #else
|
|
|