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

Lines Matching refs:header

71  * Write the file header.
175 rle_hdr header; /* Output file information */
185 /* Initialize the header info */
186 header = *rle_hdr_init(NULL);
187 header.rle_file = dest->pub.output_file;
188 header.xmin = 0;
189 header.xmax = cinfo->output_width - 1;
190 header.ymin = 0;
191 header.ymax = cinfo->output_height - 1;
192 header.alpha = 0;
193 header.ncolors = cinfo->output_components;
195 RLE_SET_BIT(header, ci);
198 header.ncmap = cinfo->out_color_components;
199 header.cmaplen = CMAPBITS;
200 header.cmap = dest->colormap;
203 rle_putcom(cmapcomment, &header);
206 /* Emit the RLE header and color map (if any) */
207 rle_put_setup(&header);
227 rle_putrow(rle_row, (int) cinfo->output_width, &header);
249 rle_putrow(rle_row, (int) cinfo->output_width, &header);
265 rle_puteof(&header);