Lines Matching refs:coef
242 my_coef_ptr coef = (my_coef_ptr)cinfo->coef; in start_iMCU_row() local
249 coef->MCU_rows_per_iMCU_row = 1; in start_iMCU_row()
251 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1)) in start_iMCU_row()
252 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor; in start_iMCU_row()
254 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height; in start_iMCU_row()
257 coef->mcu_ctr = 0; in start_iMCU_row()
258 coef->MCU_vert_offset = 0; in start_iMCU_row()
269 my_coef_ptr coef = (my_coef_ptr)cinfo->coef; in start_pass_coef() local
274 coef->iMCU_row_num = 0; in start_pass_coef()
292 my_coef_ptr coef = (my_coef_ptr)cinfo->coef; in compress_output() local
307 ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index], in compress_output()
308 coef->iMCU_row_num * compptr->v_samp_factor, in compress_output()
313 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row; in compress_output()
315 for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row; in compress_output()
325 if (coef->iMCU_row_num < last_iMCU_row || in compress_output()
342 MCU_buffer[blkn] = coef->dummy_buffer[blkn]; in compress_output()
351 coef->MCU_vert_offset = yoffset; in compress_output()
352 coef->mcu_ctr = MCU_col_num; in compress_output()
357 coef->mcu_ctr = 0; in compress_output()
360 coef->iMCU_row_num++; in compress_output()
378 my_coef_ptr coef; in transencode_coef_controller() local
382 coef = (my_coef_ptr) in transencode_coef_controller()
385 cinfo->coef = (struct jpeg_c_coef_controller *)coef; in transencode_coef_controller()
386 coef->pub.start_pass = start_pass_coef; in transencode_coef_controller()
387 coef->pub.compress_data = compress_output; in transencode_coef_controller()
390 coef->whole_image = coef_arrays; in transencode_coef_controller()
398 coef->dummy_buffer[i] = buffer + i; in transencode_coef_controller()