Searched refs:cinfo (Results 1 - 25 of 165) sorted by relevance

1234567

/external/jpeg/
H A Djcinit.c30 jinit_compress_master (j_compress_ptr cinfo) argument
33 jinit_c_master_control(cinfo, FALSE /* full compression */);
36 if (! cinfo->raw_data_in) {
37 jinit_color_converter(cinfo);
38 jinit_downsampler(cinfo);
39 jinit_c_prep_controller(cinfo, FALSE /* never need full buffer here */);
42 jinit_forward_dct(cinfo);
44 if (cinfo->arith_code) {
45 ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
47 if (cinfo
[all...]
H A Djdapistd.c23 LOCAL(boolean) output_pass_setup JPP((j_decompress_ptr cinfo));
38 jpeg_start_decompress (j_decompress_ptr cinfo)
40 if (cinfo->global_state == DSTATE_READY) {
42 jinit_master_decompress(cinfo); variable
43 if (cinfo->buffered_image) {
45 cinfo->global_state = DSTATE_BUFIMAGE;
48 cinfo->global_state = DSTATE_PRELOAD;
50 if (cinfo->global_state == DSTATE_PRELOAD) {
52 if (cinfo->inputctl->has_multiple_scans) {
57 if (cinfo
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo); variable
212 jpeg_init_read_tile_scanline(j_decompress_ptr cinfo, huffman_index *index, int *start_x, int *start_y, int *width, int *height) argument
[all...]
H A Djcapistd.c38 jpeg_start_compress (j_compress_ptr cinfo, boolean write_all_tables) argument
40 if (cinfo->global_state != CSTATE_START)
41 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
44 jpeg_suppress_tables(cinfo, FALSE); /* mark all tables to be written */
47 (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
48 (*cinfo->dest->init_destination) (cinfo);
50 jinit_compress_master(cinfo);
[all...]
H A Djdapimin.c30 jpeg_CreateDecompress (j_decompress_ptr cinfo, int version, size_t structsize) argument
35 cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
37 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
39 ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE,
49 struct jpeg_error_mgr * err = cinfo->err;
50 void * client_data = cinfo->client_data; /* ignore Purify complaint here */
51 MEMZERO(cinfo, SIZEOF(struct jpeg_decompress_struct));
52 cinfo->err = err;
53 cinfo->client_data = client_data;
55 cinfo
92 jpeg_destroy_decompress(j_decompress_ptr cinfo) argument
104 jpeg_abort_decompress(j_decompress_ptr cinfo) argument
115 default_decompress_parms(j_decompress_ptr cinfo) argument
242 jpeg_read_header(j_decompress_ptr cinfo, boolean require_image) argument
288 jpeg_consume_input(j_decompress_ptr cinfo) argument
[all...]
H A Djdmaster.c44 use_merged_upsample (j_decompress_ptr cinfo)
48 if (cinfo->do_fancy_upsampling || cinfo->CCIR601_sampling)
53 if (cinfo->jpeg_color_space != JCS_YCbCr ||
54 cinfo->num_components != 3 ||
55 cinfo->out_color_components != 3 ||
56 (cinfo->out_color_space != JCS_RGB_565 &&
57 cinfo->out_color_space != JCS_RGB)) {
62 if (cinfo->jpeg_color_space != JCS_YCbCr || cinfo
97 jpeg_calc_output_dimensions(j_decompress_ptr cinfo) argument
271 prepare_range_limit_table(j_decompress_ptr cinfo) argument
311 master_selection(j_decompress_ptr cinfo) argument
461 prepare_for_output_pass(j_decompress_ptr cinfo) argument
521 finish_output_pass(j_decompress_ptr cinfo) argument
538 jpeg_new_colormap(j_decompress_ptr cinfo) argument
566 jinit_master_decompress(j_decompress_ptr cinfo) argument
[all...]
H A Djdtrans.c19 LOCAL(void) transdecode_master_selection JPP((j_decompress_ptr cinfo));
45 jpeg_read_coefficients (j_decompress_ptr cinfo) argument
47 if (cinfo->global_state == DSTATE_READY) {
49 transdecode_master_selection(cinfo);
50 cinfo->global_state = DSTATE_RDCOEFS;
52 if (cinfo->global_state == DSTATE_RDCOEFS) {
57 if (cinfo->progress != NULL)
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
60 retcode = (*cinfo
223 transdecode_master_selection(j_decompress_ptr cinfo) argument
[all...]
H A Djcmarker.c108 emit_byte (j_compress_ptr cinfo, int val) argument
111 struct jpeg_destination_mgr * dest = cinfo->dest;
115 if (! (*dest->empty_output_buffer) (cinfo))
116 ERREXIT(cinfo, JERR_CANT_SUSPEND);
122 emit_marker (j_compress_ptr cinfo, JPEG_MARKER mark) argument
125 emit_byte(cinfo, 0xFF);
126 emit_byte(cinfo, (int) mark);
131 emit_2bytes (j_compress_ptr cinfo, int value) argument
134 emit_byte(cinfo, (value >> 8) & 0xFF);
135 emit_byte(cinfo, valu
144 emit_dqt(j_compress_ptr cinfo, int index) argument
184 emit_dht(j_compress_ptr cinfo, int index, boolean is_ac) argument
222 emit_dac(j_compress_ptr cinfo) argument
265 emit_dri(j_compress_ptr cinfo) argument
277 emit_sof(j_compress_ptr cinfo, JPEG_MARKER code) argument
308 emit_sos(j_compress_ptr cinfo) argument
349 emit_jfif_app0(j_compress_ptr cinfo) argument
384 emit_adobe_app14(j_compress_ptr cinfo) argument
438 write_marker_header(j_compress_ptr cinfo, int marker, unsigned int datalen) argument
450 write_marker_byte(j_compress_ptr cinfo, int val) argument
469 write_file_header(j_compress_ptr cinfo) argument
494 write_frame_header(j_compress_ptr cinfo) argument
551 write_scan_header(j_compress_ptr cinfo) argument
602 write_file_trailer(j_compress_ptr cinfo) argument
616 write_tables_only(j_compress_ptr cinfo) argument
645 jinit_marker_writer(j_compress_ptr cinfo) argument
[all...]
H A Djcapimin.c30 jpeg_CreateCompress (j_compress_ptr cinfo, int version, size_t structsize) argument
35 cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
37 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
39 ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE,
49 struct jpeg_error_mgr * err = cinfo->err;
50 void * client_data = cinfo->client_data; /* ignore Purify complaint here */
51 MEMZERO(cinfo, SIZEOF(struct jpeg_compress_struct));
52 cinfo->err = err;
53 cinfo->client_data = client_data;
55 cinfo
88 jpeg_destroy_compress(j_compress_ptr cinfo) argument
100 jpeg_abort_compress(j_compress_ptr cinfo) argument
119 jpeg_suppress_tables(j_compress_ptr cinfo, boolean suppress) argument
147 jpeg_finish_compress(j_compress_ptr cinfo) argument
192 jpeg_write_marker(j_compress_ptr cinfo, int marker, const JOCTET *dataptr, unsigned int datalen) argument
214 jpeg_write_m_header(j_compress_ptr cinfo, int marker, unsigned int datalen) argument
226 jpeg_write_m_byte(j_compress_ptr cinfo, int val) argument
254 jpeg_write_tables(j_compress_ptr cinfo) argument
[all...]
H A Djdinput.c31 METHODDEF(int) consume_markers JPP((j_decompress_ptr cinfo));
32 METHODDEF(int) consume_markers_with_huffman_index JPP((j_decompress_ptr cinfo,
41 initial_setup (j_decompress_ptr cinfo) argument
48 if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION ||
49 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
50 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION);
53 if (cinfo->data_precision != BITS_IN_JSAMPLE)
54 ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
57 if (cinfo
123 per_scan_setup(j_decompress_ptr cinfo) argument
209 jpeg_decompress_per_scan_setup(j_decompress_ptr cinfo) argument
238 latch_quant_tables(j_decompress_ptr cinfo) argument
272 start_input_pass(j_decompress_ptr cinfo) argument
291 finish_input_pass(j_decompress_ptr cinfo) argument
300 consume_markers_with_huffman_index(j_decompress_ptr cinfo, huffman_index *index, int current_scan) argument
316 consume_markers(j_decompress_ptr cinfo) argument
367 reset_input_controller(j_decompress_ptr cinfo) argument
391 jinit_input_controller(j_decompress_ptr cinfo) argument
[all...]
H A Djdmarker.c113 * At all times, cinfo->src->next_input_byte and ->bytes_in_buffer reflect
119 #define INPUT_VARS(cinfo) \
120 struct jpeg_source_mgr * datasrc = (cinfo)->src; \
125 #define INPUT_SYNC(cinfo) \
130 #define INPUT_RELOAD(cinfo) \
138 #define MAKE_BYTE_AVAIL(cinfo,action) \
140 if (! (*datasrc->fill_input_buffer) (cinfo)) \
142 INPUT_RELOAD(cinfo); \
148 #define INPUT_BYTE(cinfo,V,action) \
149 MAKESTMT( MAKE_BYTE_AVAIL(cinfo,actio
584 examine_app0(j_decompress_ptr cinfo, JOCTET FAR * data, unsigned int datalen, INT32 remaining) argument
660 examine_app14(j_decompress_ptr cinfo, JOCTET FAR * data, unsigned int datalen, INT32 remaining) argument
952 read_markers(j_decompress_ptr cinfo) argument
1250 get_sos_marker_position(j_decompress_ptr cinfo, huffman_index *index) argument
1278 reset_marker_reader(j_decompress_ptr cinfo) argument
1298 jinit_marker_reader(j_decompress_ptr cinfo) argument
1342 jpeg_save_markers(j_decompress_ptr cinfo, int marker_code, unsigned int length_limit) argument
1391 jpeg_set_marker_processor(j_decompress_ptr cinfo, int marker_code, jpeg_marker_parser_method routine) argument
[all...]
H A Dexample.c80 struct jpeg_compress_struct cinfo; local
100 * address which we place into the link field in cinfo.
102 cinfo.err = jpeg_std_error(&jerr);
104 jpeg_create_compress(&cinfo);
118 jpeg_stdio_dest(&cinfo, outfile);
123 * Four fields of the cinfo struct must be filled in:
125 cinfo.image_width = image_width; /* image width and height, in pixels */
126 cinfo.image_height = image_height;
127 cinfo.input_components = 3; /* # of color components per pixel */
128 cinfo
263 my_error_exit(j_common_ptr cinfo) argument
289 struct jpeg_decompress_struct cinfo; local
[all...]
H A Djcomapi.c29 jpeg_abort (j_common_ptr cinfo) argument
34 if (cinfo->mem == NULL)
41 (*cinfo->mem->free_pool) (cinfo, pool);
45 if (cinfo->is_decompressor) {
46 cinfo->global_state = DSTATE_START;
50 ((j_decompress_ptr) cinfo)->marker_list = NULL;
52 cinfo->global_state = CSTATE_START;
69 jpeg_destroy (j_common_ptr cinfo) argument
73 if (cinfo
86 jpeg_alloc_quant_table(j_common_ptr cinfo) argument
98 jpeg_alloc_huff_table(j_common_ptr cinfo) argument
[all...]
H A Djcmaster.c46 initial_setup (j_compress_ptr cinfo) argument
55 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
56 || cinfo->num_components <= 0 || cinfo->input_components <= 0)
57 ERREXIT(cinfo, JERR_EMPTY_IMAGE);
60 if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION ||
61 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
62 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION);
65 samplesperrow = (long) cinfo
130 validate_script(j_compress_ptr cinfo) argument
267 select_scan_parameters(j_compress_ptr cinfo) argument
308 per_scan_setup(j_compress_ptr cinfo) argument
401 prepare_for_pass(j_compress_ptr cinfo) argument
489 pass_startup(j_compress_ptr cinfo) argument
503 finish_pass_master(j_compress_ptr cinfo) argument
543 jinit_c_master_control(j_compress_ptr cinfo, boolean transcode_only) argument
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djcinit.c30 jinit_compress_master (j_compress_ptr cinfo) argument
33 jinit_c_master_control(cinfo, FALSE /* full compression */);
36 if (! cinfo->raw_data_in) {
37 jinit_color_converter(cinfo);
38 jinit_downsampler(cinfo);
39 jinit_c_prep_controller(cinfo, FALSE /* never need full buffer here */);
42 jinit_forward_dct(cinfo);
44 if (cinfo->arith_code) {
45 ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
47 if (cinfo
[all...]
H A Djdapistd.c23 LOCAL(boolean) output_pass_setup JPP((j_decompress_ptr cinfo));
38 jpeg_start_decompress (j_decompress_ptr cinfo)
40 if (cinfo->global_state == DSTATE_READY) {
42 jinit_master_decompress(cinfo); variable
43 if (cinfo->buffered_image) {
45 cinfo->global_state = DSTATE_BUFIMAGE;
48 cinfo->global_state = DSTATE_PRELOAD;
50 if (cinfo->global_state == DSTATE_PRELOAD) {
52 if (cinfo->inputctl->has_multiple_scans) {
57 if (cinfo
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo); variable
212 jpeg_init_read_tile_scanline(j_decompress_ptr cinfo, huffman_index *index, int *start_x, int *start_y, int *width, int *height) argument
[all...]
H A Djcapistd.c38 jpeg_start_compress (j_compress_ptr cinfo, boolean write_all_tables) argument
40 if (cinfo->global_state != CSTATE_START)
41 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
44 jpeg_suppress_tables(cinfo, FALSE); /* mark all tables to be written */
47 (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
48 (*cinfo->dest->init_destination) (cinfo);
50 jinit_compress_master(cinfo);
[all...]
H A Djdapimin.c30 jpeg_CreateDecompress (j_decompress_ptr cinfo, int version, size_t structsize) argument
35 cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
37 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
39 ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE,
49 struct jpeg_error_mgr * err = cinfo->err;
50 void * client_data = cinfo->client_data; /* ignore Purify complaint here */
51 MEMZERO(cinfo, SIZEOF(struct jpeg_decompress_struct));
52 cinfo->err = err;
53 cinfo->client_data = client_data;
55 cinfo
92 jpeg_destroy_decompress(j_decompress_ptr cinfo) argument
104 jpeg_abort_decompress(j_decompress_ptr cinfo) argument
115 default_decompress_parms(j_decompress_ptr cinfo) argument
242 jpeg_read_header(j_decompress_ptr cinfo, boolean require_image) argument
288 jpeg_consume_input(j_decompress_ptr cinfo) argument
[all...]
H A Djdmaster.c44 use_merged_upsample (j_decompress_ptr cinfo)
48 if (cinfo->do_fancy_upsampling || cinfo->CCIR601_sampling)
53 if (cinfo->jpeg_color_space != JCS_YCbCr ||
54 cinfo->num_components != 3 ||
55 cinfo->out_color_components != 3 ||
56 (cinfo->out_color_space != JCS_RGB_565 &&
57 cinfo->out_color_space != JCS_RGB)) {
62 if (cinfo->jpeg_color_space != JCS_YCbCr || cinfo
97 jpeg_calc_output_dimensions(j_decompress_ptr cinfo) argument
271 prepare_range_limit_table(j_decompress_ptr cinfo) argument
311 master_selection(j_decompress_ptr cinfo) argument
461 prepare_for_output_pass(j_decompress_ptr cinfo) argument
521 finish_output_pass(j_decompress_ptr cinfo) argument
538 jpeg_new_colormap(j_decompress_ptr cinfo) argument
566 jinit_master_decompress(j_decompress_ptr cinfo) argument
[all...]
H A Djdtrans.c19 LOCAL(void) transdecode_master_selection JPP((j_decompress_ptr cinfo));
45 jpeg_read_coefficients (j_decompress_ptr cinfo) argument
47 if (cinfo->global_state == DSTATE_READY) {
49 transdecode_master_selection(cinfo);
50 cinfo->global_state = DSTATE_RDCOEFS;
52 if (cinfo->global_state == DSTATE_RDCOEFS) {
57 if (cinfo->progress != NULL)
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
60 retcode = (*cinfo
223 transdecode_master_selection(j_decompress_ptr cinfo) argument
[all...]
H A Djcmarker.c108 emit_byte (j_compress_ptr cinfo, int val) argument
111 struct jpeg_destination_mgr * dest = cinfo->dest;
115 if (! (*dest->empty_output_buffer) (cinfo))
116 ERREXIT(cinfo, JERR_CANT_SUSPEND);
122 emit_marker (j_compress_ptr cinfo, JPEG_MARKER mark) argument
125 emit_byte(cinfo, 0xFF);
126 emit_byte(cinfo, (int) mark);
131 emit_2bytes (j_compress_ptr cinfo, int value) argument
134 emit_byte(cinfo, (value >> 8) & 0xFF);
135 emit_byte(cinfo, valu
144 emit_dqt(j_compress_ptr cinfo, int index) argument
184 emit_dht(j_compress_ptr cinfo, int index, boolean is_ac) argument
222 emit_dac(j_compress_ptr cinfo) argument
265 emit_dri(j_compress_ptr cinfo) argument
277 emit_sof(j_compress_ptr cinfo, JPEG_MARKER code) argument
308 emit_sos(j_compress_ptr cinfo) argument
349 emit_jfif_app0(j_compress_ptr cinfo) argument
384 emit_adobe_app14(j_compress_ptr cinfo) argument
438 write_marker_header(j_compress_ptr cinfo, int marker, unsigned int datalen) argument
450 write_marker_byte(j_compress_ptr cinfo, int val) argument
469 write_file_header(j_compress_ptr cinfo) argument
494 write_frame_header(j_compress_ptr cinfo) argument
551 write_scan_header(j_compress_ptr cinfo) argument
602 write_file_trailer(j_compress_ptr cinfo) argument
616 write_tables_only(j_compress_ptr cinfo) argument
645 jinit_marker_writer(j_compress_ptr cinfo) argument
[all...]
H A Djcapimin.c30 jpeg_CreateCompress (j_compress_ptr cinfo, int version, size_t structsize) argument
35 cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
37 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
39 ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE,
49 struct jpeg_error_mgr * err = cinfo->err;
50 void * client_data = cinfo->client_data; /* ignore Purify complaint here */
51 MEMZERO(cinfo, SIZEOF(struct jpeg_compress_struct));
52 cinfo->err = err;
53 cinfo->client_data = client_data;
55 cinfo
88 jpeg_destroy_compress(j_compress_ptr cinfo) argument
100 jpeg_abort_compress(j_compress_ptr cinfo) argument
119 jpeg_suppress_tables(j_compress_ptr cinfo, boolean suppress) argument
147 jpeg_finish_compress(j_compress_ptr cinfo) argument
192 jpeg_write_marker(j_compress_ptr cinfo, int marker, const JOCTET *dataptr, unsigned int datalen) argument
214 jpeg_write_m_header(j_compress_ptr cinfo, int marker, unsigned int datalen) argument
226 jpeg_write_m_byte(j_compress_ptr cinfo, int val) argument
254 jpeg_write_tables(j_compress_ptr cinfo) argument
[all...]
H A Djdinput.c31 METHODDEF(int) consume_markers JPP((j_decompress_ptr cinfo));
32 METHODDEF(int) consume_markers_with_huffman_index JPP((j_decompress_ptr cinfo,
41 initial_setup (j_decompress_ptr cinfo) argument
48 if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION ||
49 (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
50 ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION);
53 if (cinfo->data_precision != BITS_IN_JSAMPLE)
54 ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
57 if (cinfo
123 per_scan_setup(j_decompress_ptr cinfo) argument
209 jpeg_decompress_per_scan_setup(j_decompress_ptr cinfo) argument
238 latch_quant_tables(j_decompress_ptr cinfo) argument
272 start_input_pass(j_decompress_ptr cinfo) argument
291 finish_input_pass(j_decompress_ptr cinfo) argument
300 consume_markers_with_huffman_index(j_decompress_ptr cinfo, huffman_index *index, int current_scan) argument
316 consume_markers(j_decompress_ptr cinfo) argument
367 reset_input_controller(j_decompress_ptr cinfo) argument
391 jinit_input_controller(j_decompress_ptr cinfo) argument
[all...]
H A Djdmarker.c113 * At all times, cinfo->src->next_input_byte and ->bytes_in_buffer reflect
119 #define INPUT_VARS(cinfo) \
120 struct jpeg_source_mgr * datasrc = (cinfo)->src; \
125 #define INPUT_SYNC(cinfo) \
130 #define INPUT_RELOAD(cinfo) \
138 #define MAKE_BYTE_AVAIL(cinfo,action) \
140 if (! (*datasrc->fill_input_buffer) (cinfo)) \
142 INPUT_RELOAD(cinfo); \
148 #define INPUT_BYTE(cinfo,V,action) \
149 MAKESTMT( MAKE_BYTE_AVAIL(cinfo,actio
584 examine_app0(j_decompress_ptr cinfo, JOCTET FAR * data, unsigned int datalen, INT32 remaining) argument
660 examine_app14(j_decompress_ptr cinfo, JOCTET FAR * data, unsigned int datalen, INT32 remaining) argument
952 read_markers(j_decompress_ptr cinfo) argument
1250 get_sos_marker_position(j_decompress_ptr cinfo, huffman_index *index) argument
1278 reset_marker_reader(j_decompress_ptr cinfo) argument
1298 jinit_marker_reader(j_decompress_ptr cinfo) argument
1342 jpeg_save_markers(j_decompress_ptr cinfo, int marker_code, unsigned int length_limit) argument
1391 jpeg_set_marker_processor(j_decompress_ptr cinfo, int marker_code, jpeg_marker_parser_method routine) argument
[all...]
H A Dexample.c80 struct jpeg_compress_struct cinfo; local
100 * address which we place into the link field in cinfo.
102 cinfo.err = jpeg_std_error(&jerr);
104 jpeg_create_compress(&cinfo);
118 jpeg_stdio_dest(&cinfo, outfile);
123 * Four fields of the cinfo struct must be filled in:
125 cinfo.image_width = image_width; /* image width and height, in pixels */
126 cinfo.image_height = image_height;
127 cinfo.input_components = 3; /* # of color components per pixel */
128 cinfo
263 my_error_exit(j_common_ptr cinfo) argument
289 struct jpeg_decompress_struct cinfo; local
[all...]
H A Djcomapi.c29 jpeg_abort (j_common_ptr cinfo) argument
34 if (cinfo->mem == NULL)
41 (*cinfo->mem->free_pool) (cinfo, pool);
45 if (cinfo->is_decompressor) {
46 cinfo->global_state = DSTATE_START;
50 ((j_decompress_ptr) cinfo)->marker_list = NULL;
52 cinfo->global_state = CSTATE_START;
69 jpeg_destroy (j_common_ptr cinfo) argument
73 if (cinfo
86 jpeg_alloc_quant_table(j_common_ptr cinfo) argument
98 jpeg_alloc_huff_table(j_common_ptr cinfo) argument
[all...]

Completed in 206 milliseconds

1234567