nuclear@14: /* nuclear@14: * jdpostct.c nuclear@14: * nuclear@14: * Copyright (C) 1994-1996, Thomas G. Lane. nuclear@14: * This file is part of the Independent JPEG Group's software. nuclear@14: * For conditions of distribution and use, see the accompanying README file. nuclear@14: * nuclear@14: * This file contains the decompression postprocessing controller. nuclear@14: * This controller manages the upsampling, color conversion, and color nuclear@14: * quantization/reduction steps; specifically, it controls the buffering nuclear@14: * between upsample/color conversion and color quantization/reduction. nuclear@14: * nuclear@14: * If no color quantization/reduction is required, then this module has no nuclear@14: * work to do, and it just hands off to the upsample/color conversion code. nuclear@14: * An integrated upsample/convert/quantize process would replace this module nuclear@14: * entirely. nuclear@14: */ nuclear@14: nuclear@14: #define JPEG_INTERNALS nuclear@14: #include "jinclude.h" nuclear@14: #include "jpeglib.h" nuclear@14: nuclear@14: nuclear@14: /* Private buffer controller object */ nuclear@14: nuclear@14: typedef struct { nuclear@14: struct jpeg_d_post_controller pub; /* public fields */ nuclear@14: nuclear@14: /* Color quantization source buffer: this holds output data from nuclear@14: * the upsample/color conversion step to be passed to the quantizer. nuclear@14: * For two-pass color quantization, we need a full-image buffer; nuclear@14: * for one-pass operation, a strip buffer is sufficient. nuclear@14: */ nuclear@14: jvirt_sarray_ptr whole_image; /* virtual array, or NULL if one-pass */ nuclear@14: JSAMPARRAY buffer; /* strip buffer, or current strip of virtual */ nuclear@14: JDIMENSION strip_height; /* buffer size in rows */ nuclear@14: /* for two-pass mode only: */ nuclear@14: JDIMENSION starting_row; /* row # of first row in current strip */ nuclear@14: JDIMENSION next_row; /* index of next row to fill/empty in strip */ nuclear@14: } my_post_controller; nuclear@14: nuclear@14: typedef my_post_controller * my_post_ptr; nuclear@14: nuclear@14: nuclear@14: /* Forward declarations */ nuclear@14: METHODDEF(void) post_process_1pass nuclear@14: JPP((j_decompress_ptr cinfo, nuclear@14: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@14: JDIMENSION in_row_groups_avail, nuclear@14: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@14: JDIMENSION out_rows_avail)); nuclear@14: #ifdef QUANT_2PASS_SUPPORTED nuclear@14: METHODDEF(void) post_process_prepass nuclear@14: JPP((j_decompress_ptr cinfo, nuclear@14: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@14: JDIMENSION in_row_groups_avail, nuclear@14: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@14: JDIMENSION out_rows_avail)); nuclear@14: METHODDEF(void) post_process_2pass nuclear@14: JPP((j_decompress_ptr cinfo, nuclear@14: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@14: JDIMENSION in_row_groups_avail, nuclear@14: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@14: JDIMENSION out_rows_avail)); nuclear@14: #endif nuclear@14: nuclear@14: nuclear@14: /* nuclear@14: * Initialize for a processing pass. nuclear@14: */ nuclear@14: nuclear@14: METHODDEF(void) nuclear@14: start_pass_dpost (j_decompress_ptr cinfo, J_BUF_MODE pass_mode) nuclear@14: { nuclear@14: my_post_ptr post = (my_post_ptr) cinfo->post; nuclear@14: nuclear@14: switch (pass_mode) { nuclear@14: case JBUF_PASS_THRU: nuclear@14: if (cinfo->quantize_colors) { nuclear@14: /* Single-pass processing with color quantization. */ nuclear@14: post->pub.post_process_data = post_process_1pass; nuclear@14: /* We could be doing buffered-image output before starting a 2-pass nuclear@14: * color quantization; in that case, jinit_d_post_controller did not nuclear@14: * allocate a strip buffer. Use the virtual-array buffer as workspace. nuclear@14: */ nuclear@14: if (post->buffer == NULL) { nuclear@14: post->buffer = (*cinfo->mem->access_virt_sarray) nuclear@14: ((j_common_ptr) cinfo, post->whole_image, nuclear@14: (JDIMENSION) 0, post->strip_height, TRUE); nuclear@14: } nuclear@14: } else { nuclear@14: /* For single-pass processing without color quantization, nuclear@14: * I have no work to do; just call the upsampler directly. nuclear@14: */ nuclear@14: post->pub.post_process_data = cinfo->upsample->upsample; nuclear@14: } nuclear@14: break; nuclear@14: #ifdef QUANT_2PASS_SUPPORTED nuclear@14: case JBUF_SAVE_AND_PASS: nuclear@14: /* First pass of 2-pass quantization */ nuclear@14: if (post->whole_image == NULL) nuclear@14: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@14: post->pub.post_process_data = post_process_prepass; nuclear@14: break; nuclear@14: case JBUF_CRANK_DEST: nuclear@14: /* Second pass of 2-pass quantization */ nuclear@14: if (post->whole_image == NULL) nuclear@14: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@14: post->pub.post_process_data = post_process_2pass; nuclear@14: break; nuclear@14: #endif /* QUANT_2PASS_SUPPORTED */ nuclear@14: default: nuclear@14: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@14: break; nuclear@14: } nuclear@14: post->starting_row = post->next_row = 0; nuclear@14: } nuclear@14: nuclear@14: nuclear@14: /* nuclear@14: * Process some data in the one-pass (strip buffer) case. nuclear@14: * This is used for color precision reduction as well as one-pass quantization. nuclear@14: */ nuclear@14: nuclear@14: METHODDEF(void) nuclear@14: post_process_1pass (j_decompress_ptr cinfo, nuclear@14: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@14: JDIMENSION in_row_groups_avail, nuclear@14: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@14: JDIMENSION out_rows_avail) nuclear@14: { nuclear@14: my_post_ptr post = (my_post_ptr) cinfo->post; nuclear@14: JDIMENSION num_rows, max_rows; nuclear@14: nuclear@14: /* Fill the buffer, but not more than what we can dump out in one go. */ nuclear@14: /* Note we rely on the upsampler to detect bottom of image. */ nuclear@14: max_rows = out_rows_avail - *out_row_ctr; nuclear@14: if (max_rows > post->strip_height) nuclear@14: max_rows = post->strip_height; nuclear@14: num_rows = 0; nuclear@14: (*cinfo->upsample->upsample) (cinfo, nuclear@14: input_buf, in_row_group_ctr, in_row_groups_avail, nuclear@14: post->buffer, &num_rows, max_rows); nuclear@14: /* Quantize and emit data. */ nuclear@14: (*cinfo->cquantize->color_quantize) (cinfo, nuclear@14: post->buffer, output_buf + *out_row_ctr, (int) num_rows); nuclear@14: *out_row_ctr += num_rows; nuclear@14: } nuclear@14: nuclear@14: nuclear@14: #ifdef QUANT_2PASS_SUPPORTED nuclear@14: nuclear@14: /* nuclear@14: * Process some data in the first pass of 2-pass quantization. nuclear@14: */ nuclear@14: nuclear@14: METHODDEF(void) nuclear@14: post_process_prepass (j_decompress_ptr cinfo, nuclear@14: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@14: JDIMENSION in_row_groups_avail, nuclear@14: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@14: JDIMENSION out_rows_avail) nuclear@14: { nuclear@14: my_post_ptr post = (my_post_ptr) cinfo->post; nuclear@14: JDIMENSION old_next_row, num_rows; nuclear@14: nuclear@14: /* Reposition virtual buffer if at start of strip. */ nuclear@14: if (post->next_row == 0) { nuclear@14: post->buffer = (*cinfo->mem->access_virt_sarray) nuclear@14: ((j_common_ptr) cinfo, post->whole_image, nuclear@14: post->starting_row, post->strip_height, TRUE); nuclear@14: } nuclear@14: nuclear@14: /* Upsample some data (up to a strip height's worth). */ nuclear@14: old_next_row = post->next_row; nuclear@14: (*cinfo->upsample->upsample) (cinfo, nuclear@14: input_buf, in_row_group_ctr, in_row_groups_avail, nuclear@14: post->buffer, &post->next_row, post->strip_height); nuclear@14: nuclear@14: /* Allow quantizer to scan new data. No data is emitted, */ nuclear@14: /* but we advance out_row_ctr so outer loop can tell when we're done. */ nuclear@14: if (post->next_row > old_next_row) { nuclear@14: num_rows = post->next_row - old_next_row; nuclear@14: (*cinfo->cquantize->color_quantize) (cinfo, post->buffer + old_next_row, nuclear@14: (JSAMPARRAY) NULL, (int) num_rows); nuclear@14: *out_row_ctr += num_rows; nuclear@14: } nuclear@14: nuclear@14: /* Advance if we filled the strip. */ nuclear@14: if (post->next_row >= post->strip_height) { nuclear@14: post->starting_row += post->strip_height; nuclear@14: post->next_row = 0; nuclear@14: } nuclear@14: } nuclear@14: nuclear@14: nuclear@14: /* nuclear@14: * Process some data in the second pass of 2-pass quantization. nuclear@14: */ nuclear@14: nuclear@14: METHODDEF(void) nuclear@14: post_process_2pass (j_decompress_ptr cinfo, nuclear@14: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@14: JDIMENSION in_row_groups_avail, nuclear@14: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@14: JDIMENSION out_rows_avail) nuclear@14: { nuclear@14: my_post_ptr post = (my_post_ptr) cinfo->post; nuclear@14: JDIMENSION num_rows, max_rows; nuclear@14: nuclear@14: /* Reposition virtual buffer if at start of strip. */ nuclear@14: if (post->next_row == 0) { nuclear@14: post->buffer = (*cinfo->mem->access_virt_sarray) nuclear@14: ((j_common_ptr) cinfo, post->whole_image, nuclear@14: post->starting_row, post->strip_height, FALSE); nuclear@14: } nuclear@14: nuclear@14: /* Determine number of rows to emit. */ nuclear@14: num_rows = post->strip_height - post->next_row; /* available in strip */ nuclear@14: max_rows = out_rows_avail - *out_row_ctr; /* available in output area */ nuclear@14: if (num_rows > max_rows) nuclear@14: num_rows = max_rows; nuclear@14: /* We have to check bottom of image here, can't depend on upsampler. */ nuclear@14: max_rows = cinfo->output_height - post->starting_row; nuclear@14: if (num_rows > max_rows) nuclear@14: num_rows = max_rows; nuclear@14: nuclear@14: /* Quantize and emit data. */ nuclear@14: (*cinfo->cquantize->color_quantize) (cinfo, nuclear@14: post->buffer + post->next_row, output_buf + *out_row_ctr, nuclear@14: (int) num_rows); nuclear@14: *out_row_ctr += num_rows; nuclear@14: nuclear@14: /* Advance if we filled the strip. */ nuclear@14: post->next_row += num_rows; nuclear@14: if (post->next_row >= post->strip_height) { nuclear@14: post->starting_row += post->strip_height; nuclear@14: post->next_row = 0; nuclear@14: } nuclear@14: } nuclear@14: nuclear@14: #endif /* QUANT_2PASS_SUPPORTED */ nuclear@14: nuclear@14: nuclear@14: /* nuclear@14: * Initialize postprocessing controller. nuclear@14: */ nuclear@14: nuclear@14: GLOBAL(void) nuclear@14: jinit_d_post_controller (j_decompress_ptr cinfo, boolean need_full_buffer) nuclear@14: { nuclear@14: my_post_ptr post; nuclear@14: nuclear@14: post = (my_post_ptr) nuclear@14: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@14: SIZEOF(my_post_controller)); nuclear@14: cinfo->post = (struct jpeg_d_post_controller *) post; nuclear@14: post->pub.start_pass = start_pass_dpost; nuclear@14: post->whole_image = NULL; /* flag for no virtual arrays */ nuclear@14: post->buffer = NULL; /* flag for no strip buffer */ nuclear@14: nuclear@14: /* Create the quantization buffer, if needed */ nuclear@14: if (cinfo->quantize_colors) { nuclear@14: /* The buffer strip height is max_v_samp_factor, which is typically nuclear@14: * an efficient number of rows for upsampling to return. nuclear@14: * (In the presence of output rescaling, we might want to be smarter?) nuclear@14: */ nuclear@14: post->strip_height = (JDIMENSION) cinfo->max_v_samp_factor; nuclear@14: if (need_full_buffer) { nuclear@14: /* Two-pass color quantization: need full-image storage. */ nuclear@14: /* We round up the number of rows to a multiple of the strip height. */ nuclear@14: #ifdef QUANT_2PASS_SUPPORTED nuclear@14: post->whole_image = (*cinfo->mem->request_virt_sarray) nuclear@14: ((j_common_ptr) cinfo, JPOOL_IMAGE, FALSE, nuclear@14: cinfo->output_width * cinfo->out_color_components, nuclear@14: (JDIMENSION) jround_up((long) cinfo->output_height, nuclear@14: (long) post->strip_height), nuclear@14: post->strip_height); nuclear@14: #else nuclear@14: ERREXIT(cinfo, JERR_BAD_BUFFER_MODE); nuclear@14: #endif /* QUANT_2PASS_SUPPORTED */ nuclear@14: } else { nuclear@14: /* One-pass color quantization: just make a strip buffer. */ nuclear@14: post->buffer = (*cinfo->mem->alloc_sarray) nuclear@14: ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@14: cinfo->output_width * cinfo->out_color_components, nuclear@14: post->strip_height); nuclear@14: } nuclear@14: } nuclear@14: }