Searched refs:ODITHER_SIZE (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant1.c75 #define ODITHER_SIZE 16 /* dimension of dither matrix */ macro
76 /* NB: if ODITHER_SIZE is not a power of 2, ODITHER_MASK uses will break */
77 #define ODITHER_CELLS (ODITHER_SIZE*ODITHER_SIZE) /* # cells in matrix */
78 #define ODITHER_MASK (ODITHER_SIZE-1) /* mask for wrapping around counters */
80 typedef int ODITHER_MATRIX[ODITHER_SIZE][ODITHER_SIZE];
81 typedef int (*ODITHER_MATRIX_PTR)[ODITHER_SIZE];
83 static const UINT8 base_dither_matrix[ODITHER_SIZE][ODITHER_SIZE]
[all...]

Completed in 22 milliseconds