Searched refs:bmpcoreheader (Results 1 – 1 of 1) sorted by relevance
/external/libjpeg-turbo/ |
D | wrbmp.c | 299 char bmpcoreheader[12]; in write_os2_header() local 329 MEMZERO(bmpcoreheader, sizeof(bmpcoreheader)); in write_os2_header() 339 PUT_2B(bmpcoreheader, 0, 12); /* bcSize */ in write_os2_header() 340 PUT_2B(bmpcoreheader, 4, cinfo->output_width); /* bcWidth */ in write_os2_header() 341 PUT_2B(bmpcoreheader, 6, cinfo->output_height); /* bcHeight */ in write_os2_header() 342 PUT_2B(bmpcoreheader, 8, 1); /* bcPlanes - must be 1 */ in write_os2_header() 343 PUT_2B(bmpcoreheader, 10, bits_per_pixel); /* bcBitCount */ in write_os2_header() 347 if (JFWRITE(dest->pub.output_file, bmpcoreheader, 12) != (size_t)12) in write_os2_header()
|