Home | History | Annotate | Download | only in libjpeg

Lines Matching full:coef

83   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
90 coef->MCU_rows_per_iMCU_row = 1;
93 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
95 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
98 coef->MCU_ctr = 0;
99 coef->MCU_vert_offset = 0;
123 my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
126 if (coef->pub.coef_arrays != NULL) {
128 coef->pub.decompress_data = decompress_smooth_data;
130 coef->pub.decompress_data = decompress_data;
150 my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
161 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
163 for (MCU_col_num = coef->MCU_ctr; MCU_col_num <= last_MCU_col;
167 FMEMZERO((void FAR *) coef->MCU_buffer[0],
169 if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
171 coef->MCU_vert_offset = yoffset;
172 coef->MCU_ctr = MCU_col_num;
200 (JCOEFPTR) coef->MCU_buffer[blkn+xindex],
211 coef->MCU_ctr = 0;
248 my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
260 ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
270 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
272 for (MCU_col_num = coef->MCU_ctr; MCU_col_num < cinfo->MCUs_per_row;
282 coef->MCU_buffer[blkn++] = buffer_ptr++;
287 if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
289 coef->MCU_vert_offset = yoffset;
290 coef->MCU_ctr = MCU_col_num;
295 coef->MCU_ctr = 0;
319 my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
346 ((j_common_ptr) cinfo, coef->whole_image[ci],
409 my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
421 if (coef->coef_bits_latch == NULL)
422 coef->coef_bits_latch = (int *)
426 coef_bits_latch = coef->coef_bits_latch;
465 my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
522 ((j_common_ptr) cinfo, coef->whole_image[ci],
529 ((j_common_ptr) cinfo, coef->whole_image[ci],
534 coef_bits = coef->coef_bits_latch + (ci * SAVED_COEFS);
680 my_coef_ptr coef;
682 coef = (my_coef_ptr)
685 cinfo->coef = (struct jpeg_d_coef_controller *) coef;
686 coef->pub.start_input_pass = start_input_pass;
687 coef->pub.start_output_pass = start_output_pass;
689 coef->coef_bits_latch = NULL;
709 coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
717 coef->pub.consume_data = consume_data;
718 coef->pub.decompress_data = decompress_data;
719 coef->pub.coef_arrays = coef->whole_image; /* link to virtual arrays */
732 coef->MCU_buffer[i] = buffer + i;
737 coef->pub.consume_data = dummy_consume_data;
738 coef->pub.decompress_data = decompress_onepass;
739 coef->pub.coef_arrays = NULL; /* flag for no virtual arrays */