shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * jdcoefct.h
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * This file was part of the Independent JPEG Group's software:
shun-iwasawa 82a8f5
 * Copyright (C) 1994-1997, Thomas G. Lane.
shun-iwasawa 82a8f5
 * libjpeg-turbo Modifications:
shun-iwasawa 82a8f5
 * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB</ossman@cendio.se>
shun-iwasawa 82a8f5
 * For conditions of distribution and use, see the accompanying README.ijg
shun-iwasawa 82a8f5
 * file.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#define JPEG_INTERNALS
shun-iwasawa 82a8f5
#include "jpeglib.h"
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Block smoothing is only applicable for progressive JPEG, so: */
shun-iwasawa 82a8f5
#ifndef D_PROGRESSIVE_SUPPORTED
shun-iwasawa 82a8f5
#undef BLOCK_SMOOTHING_SUPPORTED
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
/* Private buffer controller object */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef struct {
shun-iwasawa 82a8f5
  struct jpeg_d_coef_controller pub; /* public fields */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  /* These variables keep track of the current location of the input side. */
shun-iwasawa 82a8f5
  /* cinfo->input_iMCU_row is also used for this. */
shun-iwasawa 82a8f5
  JDIMENSION MCU_ctr;           /* counts MCUs processed in current row */
shun-iwasawa 82a8f5
  int MCU_vert_offset;          /* counts MCU rows within iMCU row */
shun-iwasawa 82a8f5
  int MCU_rows_per_iMCU_row;    /* number of such rows needed */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  /* The output side's location is represented by cinfo->output_iMCU_row. */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  /* In single-pass modes, it's sufficient to buffer just one MCU.
shun-iwasawa 82a8f5
   * We allocate a workspace of D_MAX_BLOCKS_IN_MCU coefficient blocks,
shun-iwasawa 82a8f5
   * and let the entropy decoder write into that workspace each time.
shun-iwasawa 82a8f5
   * In multi-pass modes, this array points to the current MCU's blocks
shun-iwasawa 82a8f5
   * within the virtual arrays; it is used only by the input side.
shun-iwasawa 82a8f5
   */
shun-iwasawa 82a8f5
  JBLOCKROW MCU_buffer[D_MAX_BLOCKS_IN_MCU];
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  /* Temporary workspace for one MCU */
shun-iwasawa 82a8f5
  JCOEF *workspace;
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef D_MULTISCAN_FILES_SUPPORTED
shun-iwasawa 82a8f5
  /* In multi-pass modes, we need a virtual block array for each component. */
shun-iwasawa 82a8f5
  jvirt_barray_ptr whole_image[MAX_COMPONENTS];
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#ifdef BLOCK_SMOOTHING_SUPPORTED
shun-iwasawa 82a8f5
  /* When doing block smoothing, we latch coefficient Al values here */
shun-iwasawa 82a8f5
  int *coef_bits_latch;
shun-iwasawa 82a8f5
#define SAVED_COEFS  6          /* we save coef_bits[0..5] */
shun-iwasawa 82a8f5
#endif
shun-iwasawa 82a8f5
} my_coef_controller;
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
typedef my_coef_controller *my_coef_ptr;
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
LOCAL(void)
shun-iwasawa 82a8f5
start_iMCU_row(j_decompress_ptr cinfo)
shun-iwasawa 82a8f5
/* Reset within-iMCU-row counters for a new row (input side) */
shun-iwasawa 82a8f5
{
shun-iwasawa 82a8f5
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  /* In an interleaved scan, an MCU row is the same as an iMCU row.
shun-iwasawa 82a8f5
   * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
shun-iwasawa 82a8f5
   * But at the bottom of the image, process only what's left.
shun-iwasawa 82a8f5
   */
shun-iwasawa 82a8f5
  if (cinfo->comps_in_scan > 1) {
shun-iwasawa 82a8f5
    coef->MCU_rows_per_iMCU_row = 1;
shun-iwasawa 82a8f5
  } else {
shun-iwasawa 82a8f5
    if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows - 1))
shun-iwasawa 82a8f5
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
shun-iwasawa 82a8f5
    else
shun-iwasawa 82a8f5
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
shun-iwasawa 82a8f5
  }
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  coef->MCU_ctr = 0;
shun-iwasawa 82a8f5
  coef->MCU_vert_offset = 0;
shun-iwasawa 82a8f5
}