HomeSort by relevance Sort by last modified time
    Searched refs:bmpinfoheader (Results 1 - 2 of 2) sorted by null

  /external/libjpeg-turbo/
rdbmp.c 282 U_CHAR bmpinfoheader[64]; local
312 if (! ReadOK(source->pub.input_file, bmpinfoheader, 4))
314 headerSize = GET_4B(bmpinfoheader,0);
317 if (! ReadOK(source->pub.input_file, bmpinfoheader+4, headerSize-4))
323 biWidth = (int) GET_2B(bmpinfoheader,4);
324 biHeight = (int) GET_2B(bmpinfoheader,6);
325 biPlanes = GET_2B(bmpinfoheader,8);
326 source->bits_per_pixel = (int) GET_2B(bmpinfoheader,10);
345 biWidth = (int) GET_4B(bmpinfoheader,4);
346 biHeight = (int) GET_4B(bmpinfoheader,8)
    [all...]
wrbmp.c 193 char bmpinfoheader[40]; local
230 MEMZERO(bmpinfoheader, sizeof(bmpinfoheader));
240 PUT_2B(bmpinfoheader, 0, 40); /* biSize */
241 PUT_4B(bmpinfoheader, 4, cinfo->output_width); /* biWidth */
242 PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */
243 PUT_2B(bmpinfoheader, 12, 1); /* biPlanes - must be 1 */
244 PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */
248 PUT_4B(bmpinfoheader, 24, (INT32) (cinfo->X_density*100)); /* XPels/M */
249 PUT_4B(bmpinfoheader, 28, (INT32) (cinfo->Y_density*100)); /* XPels/M *
    [all...]

Completed in 2059 milliseconds