Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / libwebp / utils / quant_levels_dec.c
index c599e40..5b8b8b4 100644 (file)
 #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