Home | History | Annotate | Download | only in jpeg

Lines Matching full:jpeg_start_compress

118 	jpeg_start_compress(...);
314 calling jpeg_start_compress() and jpeg_finish_compress().
344 jpeg_start_compress(). There's no harm in calling jpeg_set_defaults() more
358 4. jpeg_start_compress(...);
361 source image info and other parameters, call jpeg_start_compress() to begin
367 jpeg_start_compress(&cinfo, TRUE);
374 Once you have called jpeg_start_compress(), you may not alter any JPEG
1413 Initialize destination. This is called by jpeg_start_compress()
2184 calling jpeg_start_compress() will prevent the table from being written at
2192 To create an abbreviated image, you must also call jpeg_start_compress()
2193 with a second parameter of FALSE, not TRUE. Otherwise jpeg_start_compress()
2198 normally would, but instead of calling jpeg_start_compress() and so on, call
2213 jpeg_start_compress(&cinfo, FALSE);
2219 you can repeat the jpeg_start_compress() ... jpeg_finish_compress() sequence
2309 ones by passing FALSE to jpeg_start_compress().
2349 calling jpeg_write_marker() after jpeg_start_compress() and before the first
2506 jpeg_write_scanlines(). Before calling jpeg_start_compress(), you must do
2536 after jpeg_start_compress() has initialized those fields. If the valid data
2550 cinfo->image_height) are 101x101 pixels. Then jpeg_start_compress() will
2647 jpeg_start_compress() and jpeg_write_scanlines(). Thus the sequence is
2677 jpeg_start_compress(cinfo, TRUE)). This is for safety's sake, to avoid
2794 must allocate them before jpeg_start_compress() or jpeg_start_decompress() in