Home | History | Annotate | Download | only in jpeg

Lines Matching refs:colormap

42  *   GRAYSCALE   - 8 bits, no colormap
44 * PSEUDOCOLOR - 8 bits, 3 channel colormap
45 * TRUECOLOR - 24 bits, 3 channel colormap
46 * DIRECTCOLOR - 24 bits, no colormap
210 rle_map *colormap;
213 colormap = source->header.cmap;
221 *dest_row++ = (JSAMPLE) (colormap[val ] >> 8);
222 *dest_row++ = (JSAMPLE) (colormap[val + 256] >> 8);
223 *dest_row++ = (JSAMPLE) (colormap[val + 512] >> 8);
247 rle_map *colormap;
253 colormap = source->header.cmap;
298 (colormap[GETJSAMPLE(rle_row[channel][col]) + 256 * channel] >> 8);