Home | History | Annotate | Download | only in jpeg-6b

Lines Matching refs:row_width

51   JDIMENSION row_width;		/* physical width of one row in the BMP file */
191 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
256 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
370 for (col = dest->row_width; col > 0; col--) {
393 JDIMENSION row_width;
418 row_width = cinfo->output_width * cinfo->output_components;
419 dest->data_width = row_width;
420 while ((row_width & 3) != 0) row_width++;
421 dest->row_width = row_width;
422 dest->pad_bytes = (int) (row_width - dest->data_width);
427 row_width, cinfo->output_height, (JDIMENSION) 1);
436 ((j_common_ptr) cinfo, JPOOL_IMAGE, row_width, (JDIMENSION) 1);