• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/jpeg-7/

Lines Matching defs:dest

61 	JPP((j_decompress_ptr cinfo, bmp_dest_ptr dest,
75 bmp_dest_ptr dest = (bmp_dest_ptr) dinfo;
83 ((j_common_ptr) cinfo, dest->whole_image,
84 dest->cur_output_row, (JDIMENSION) 1, TRUE);
85 dest->cur_output_row++;
90 inptr = dest->pub.buffer[0];
100 pad = dest->pad_bytes;
110 bmp_dest_ptr dest = (bmp_dest_ptr) dinfo;
118 ((j_common_ptr) cinfo, dest->whole_image,
119 dest->cur_output_row, (JDIMENSION) 1, TRUE);
120 dest->cur_output_row++;
123 inptr = dest->pub.buffer[0];
130 pad = dest->pad_bytes;
157 write_bmp_header (j_decompress_ptr cinfo, bmp_dest_ptr dest)
191 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
219 if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t) 14)
221 if (JFWRITE(dest->pub.output_file, bmpinfoheader, 40) != (size_t) 40)
225 write_colormap(cinfo, dest, cmap_entries, 4);
230 write_os2_header (j_decompress_ptr cinfo, bmp_dest_ptr dest)
256 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
276 if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t) 14)
278 if (JFWRITE(dest->pub.output_file, bmpcoreheader, 12) != (size_t) 12)
282 write_colormap(cinfo, dest, cmap_entries, 3);
292 write_colormap (j_decompress_ptr cinfo, bmp_dest_ptr dest,
297 FILE * outfile = dest->pub.output_file;
346 bmp_dest_ptr dest = (bmp_dest_ptr) dinfo;
347 register FILE * outfile = dest->pub.output_file;
355 if (dest->is_os2)
356 write_os2_header(cinfo, dest);
358 write_bmp_header(cinfo, dest);
368 ((j_common_ptr) cinfo, dest->whole_image, row-1, (JDIMENSION) 1, FALSE);
370 for (col = dest->row_width; col > 0; col--) {
392 bmp_dest_ptr dest;
396 dest = (bmp_dest_ptr)
399 dest->pub.start_output = start_output_bmp;
400 dest->pub.finish_output = finish_output_bmp;
401 dest->is_os2 = is_os2;
404 dest->pub.put_pixel_rows = put_gray_rows;
407 dest->pub.put_pixel_rows = put_gray_rows;
409 dest->pub.put_pixel_rows = put_pixel_rows;
419 dest->data_width = row_width;
421 dest->row_width = row_width;
422 dest->pad_bytes = (int) (row_width - dest->data_width);
425 dest->whole_image = (*cinfo->mem->request_virt_sarray)
428 dest->cur_output_row = 0;
435 dest->pub.buffer = (*cinfo->mem->alloc_sarray)
437 dest->pub.buffer_height = 1;
439 return (djpeg_dest_ptr) dest;