nuclear@1: /* nuclear@1: * jdmerge.c nuclear@1: * nuclear@1: * Copyright (C) 1994-1996, Thomas G. Lane. nuclear@1: * This file is part of the Independent JPEG Group's software. nuclear@1: * For conditions of distribution and use, see the accompanying README file. nuclear@1: * nuclear@1: * This file contains code for merged upsampling/color conversion. nuclear@1: * nuclear@1: * This file combines functions from jdsample.c and jdcolor.c; nuclear@1: * read those files first to understand what's going on. nuclear@1: * nuclear@1: * When the chroma components are to be upsampled by simple replication nuclear@1: * (ie, box filtering), we can save some work in color conversion by nuclear@1: * calculating all the output pixels corresponding to a pair of chroma nuclear@1: * samples at one time. In the conversion equations nuclear@1: * R = Y + K1 * Cr nuclear@1: * G = Y + K2 * Cb + K3 * Cr nuclear@1: * B = Y + K4 * Cb nuclear@1: * only the Y term varies among the group of pixels corresponding to a pair nuclear@1: * of chroma samples, so the rest of the terms can be calculated just once. nuclear@1: * At typical sampling ratios, this eliminates half or three-quarters of the nuclear@1: * multiplications needed for color conversion. nuclear@1: * nuclear@1: * This file currently provides implementations for the following cases: nuclear@1: * YCbCr => RGB color conversion only. nuclear@1: * Sampling ratios of 2h1v or 2h2v. nuclear@1: * No scaling needed at upsample time. nuclear@1: * Corner-aligned (non-CCIR601) sampling alignment. nuclear@1: * Other special cases could be added, but in most applications these are nuclear@1: * the only common cases. (For uncommon cases we fall back on the more nuclear@1: * general code in jdsample.c and jdcolor.c.) nuclear@1: */ nuclear@1: nuclear@1: #define JPEG_INTERNALS nuclear@1: #include "jinclude.h" nuclear@1: #include "jpeglib.h" nuclear@1: nuclear@1: #ifdef UPSAMPLE_MERGING_SUPPORTED nuclear@1: nuclear@1: nuclear@1: /* Private subobject */ nuclear@1: nuclear@1: typedef struct { nuclear@1: struct jpeg_upsampler pub; /* public fields */ nuclear@1: nuclear@1: /* Pointer to routine to do actual upsampling/conversion of one row group */ nuclear@1: JMETHOD(void, upmethod, (j_decompress_ptr cinfo, nuclear@1: JSAMPIMAGE input_buf, JDIMENSION in_row_group_ctr, nuclear@1: JSAMPARRAY output_buf)); nuclear@1: nuclear@1: /* Private state for YCC->RGB conversion */ nuclear@1: int * Cr_r_tab; /* => table for Cr to R conversion */ nuclear@1: int * Cb_b_tab; /* => table for Cb to B conversion */ nuclear@1: INT32 * Cr_g_tab; /* => table for Cr to G conversion */ nuclear@1: INT32 * Cb_g_tab; /* => table for Cb to G conversion */ nuclear@1: nuclear@1: /* For 2:1 vertical sampling, we produce two output rows at a time. nuclear@1: * We need a "spare" row buffer to hold the second output row if the nuclear@1: * application provides just a one-row buffer; we also use the spare nuclear@1: * to discard the dummy last row if the image height is odd. nuclear@1: */ nuclear@1: JSAMPROW spare_row; nuclear@1: boolean spare_full; /* T if spare buffer is occupied */ nuclear@1: nuclear@1: JDIMENSION out_row_width; /* samples per output row */ nuclear@1: JDIMENSION rows_to_go; /* counts rows remaining in image */ nuclear@1: } my_upsampler; nuclear@1: nuclear@1: typedef my_upsampler * my_upsample_ptr; nuclear@1: nuclear@1: #define SCALEBITS 16 /* speediest right-shift on some machines */ nuclear@1: #define ONE_HALF ((INT32) 1 << (SCALEBITS-1)) nuclear@1: #define FIX(x) ((INT32) ((x) * (1L<RGB colorspace conversion. nuclear@1: * This is taken directly from jdcolor.c; see that file for more info. nuclear@1: */ nuclear@1: nuclear@1: LOCAL(void) nuclear@1: build_ycc_rgb_table (j_decompress_ptr cinfo) nuclear@1: { nuclear@1: my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample; nuclear@1: int i; nuclear@1: INT32 x; nuclear@1: SHIFT_TEMPS nuclear@1: nuclear@1: upsample->Cr_r_tab = (int *) nuclear@1: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@1: (MAXJSAMPLE+1) * SIZEOF(int)); nuclear@1: upsample->Cb_b_tab = (int *) nuclear@1: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@1: (MAXJSAMPLE+1) * SIZEOF(int)); nuclear@1: upsample->Cr_g_tab = (INT32 *) nuclear@1: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@1: (MAXJSAMPLE+1) * SIZEOF(INT32)); nuclear@1: upsample->Cb_g_tab = (INT32 *) nuclear@1: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@1: (MAXJSAMPLE+1) * SIZEOF(INT32)); nuclear@1: nuclear@1: for (i = 0, x = -CENTERJSAMPLE; i <= MAXJSAMPLE; i++, x++) { nuclear@1: /* i is the actual input pixel value, in the range 0..MAXJSAMPLE */ nuclear@1: /* The Cb or Cr value we are thinking of is x = i - CENTERJSAMPLE */ nuclear@1: /* Cr=>R value is nearest int to 1.40200 * x */ nuclear@1: upsample->Cr_r_tab[i] = (int) nuclear@1: RIGHT_SHIFT(FIX(1.40200) * x + ONE_HALF, SCALEBITS); nuclear@1: /* Cb=>B value is nearest int to 1.77200 * x */ nuclear@1: upsample->Cb_b_tab[i] = (int) nuclear@1: RIGHT_SHIFT(FIX(1.77200) * x + ONE_HALF, SCALEBITS); nuclear@1: /* Cr=>G value is scaled-up -0.71414 * x */ nuclear@1: upsample->Cr_g_tab[i] = (- FIX(0.71414)) * x; nuclear@1: /* Cb=>G value is scaled-up -0.34414 * x */ nuclear@1: /* We also add in ONE_HALF so that need not do it in inner loop */ nuclear@1: upsample->Cb_g_tab[i] = (- FIX(0.34414)) * x + ONE_HALF; nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: nuclear@1: /* nuclear@1: * Initialize for an upsampling pass. nuclear@1: */ nuclear@1: nuclear@1: METHODDEF(void) nuclear@1: start_pass_merged_upsample (j_decompress_ptr cinfo) nuclear@1: { nuclear@1: my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample; nuclear@1: nuclear@1: /* Mark the spare buffer empty */ nuclear@1: upsample->spare_full = FALSE; nuclear@1: /* Initialize total-height counter for detecting bottom of image */ nuclear@1: upsample->rows_to_go = cinfo->output_height; nuclear@1: } nuclear@1: nuclear@1: nuclear@1: /* nuclear@1: * Control routine to do upsampling (and color conversion). nuclear@1: * nuclear@1: * The control routine just handles the row buffering considerations. nuclear@1: */ nuclear@1: nuclear@1: METHODDEF(void) nuclear@1: merged_2v_upsample (j_decompress_ptr cinfo, nuclear@1: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@1: JDIMENSION in_row_groups_avail, nuclear@1: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@1: JDIMENSION out_rows_avail) nuclear@1: /* 2:1 vertical sampling case: may need a spare row. */ nuclear@1: { nuclear@1: my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample; nuclear@1: JSAMPROW work_ptrs[2]; nuclear@1: JDIMENSION num_rows; /* number of rows returned to caller */ nuclear@1: nuclear@1: if (upsample->spare_full) { nuclear@1: /* If we have a spare row saved from a previous cycle, just return it. */ nuclear@1: jcopy_sample_rows(& upsample->spare_row, 0, output_buf + *out_row_ctr, 0, nuclear@1: 1, upsample->out_row_width); nuclear@1: num_rows = 1; nuclear@1: upsample->spare_full = FALSE; nuclear@1: } else { nuclear@1: /* Figure number of rows to return to caller. */ nuclear@1: num_rows = 2; nuclear@1: /* Not more than the distance to the end of the image. */ nuclear@1: if (num_rows > upsample->rows_to_go) nuclear@1: num_rows = upsample->rows_to_go; nuclear@1: /* And not more than what the client can accept: */ nuclear@1: out_rows_avail -= *out_row_ctr; nuclear@1: if (num_rows > out_rows_avail) nuclear@1: num_rows = out_rows_avail; nuclear@1: /* Create output pointer array for upsampler. */ nuclear@1: work_ptrs[0] = output_buf[*out_row_ctr]; nuclear@1: if (num_rows > 1) { nuclear@1: work_ptrs[1] = output_buf[*out_row_ctr + 1]; nuclear@1: } else { nuclear@1: work_ptrs[1] = upsample->spare_row; nuclear@1: upsample->spare_full = TRUE; nuclear@1: } nuclear@1: /* Now do the upsampling. */ nuclear@1: (*upsample->upmethod) (cinfo, input_buf, *in_row_group_ctr, work_ptrs); nuclear@1: } nuclear@1: nuclear@1: /* Adjust counts */ nuclear@1: *out_row_ctr += num_rows; nuclear@1: upsample->rows_to_go -= num_rows; nuclear@1: /* When the buffer is emptied, declare this input row group consumed */ nuclear@1: if (! upsample->spare_full) nuclear@1: (*in_row_group_ctr)++; nuclear@1: } nuclear@1: nuclear@1: nuclear@1: METHODDEF(void) nuclear@1: merged_1v_upsample (j_decompress_ptr cinfo, nuclear@1: JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr, nuclear@1: JDIMENSION in_row_groups_avail, nuclear@1: JSAMPARRAY output_buf, JDIMENSION *out_row_ctr, nuclear@1: JDIMENSION out_rows_avail) nuclear@1: /* 1:1 vertical sampling case: much easier, never need a spare row. */ nuclear@1: { nuclear@1: my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample; nuclear@1: nuclear@1: /* Just do the upsampling. */ nuclear@1: (*upsample->upmethod) (cinfo, input_buf, *in_row_group_ctr, nuclear@1: output_buf + *out_row_ctr); nuclear@1: /* Adjust counts */ nuclear@1: (*out_row_ctr)++; nuclear@1: (*in_row_group_ctr)++; nuclear@1: } nuclear@1: nuclear@1: nuclear@1: /* nuclear@1: * These are the routines invoked by the control routines to do nuclear@1: * the actual upsampling/conversion. One row group is processed per call. nuclear@1: * nuclear@1: * Note: since we may be writing directly into application-supplied buffers, nuclear@1: * we have to be honest about the output width; we can't assume the buffer nuclear@1: * has been rounded up to an even width. nuclear@1: */ nuclear@1: nuclear@1: nuclear@1: /* nuclear@1: * Upsample and color convert for the case of 2:1 horizontal and 1:1 vertical. nuclear@1: */ nuclear@1: nuclear@1: METHODDEF(void) nuclear@1: h2v1_merged_upsample (j_decompress_ptr cinfo, nuclear@1: JSAMPIMAGE input_buf, JDIMENSION in_row_group_ctr, nuclear@1: JSAMPARRAY output_buf) nuclear@1: { nuclear@1: my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample; nuclear@1: register int y, cred, cgreen, cblue; nuclear@1: int cb, cr; nuclear@1: register JSAMPROW outptr; nuclear@1: JSAMPROW inptr0, inptr1, inptr2; nuclear@1: JDIMENSION col; nuclear@1: /* copy these pointers into registers if possible */ nuclear@1: register JSAMPLE * range_limit = cinfo->sample_range_limit; nuclear@1: int * Crrtab = upsample->Cr_r_tab; nuclear@1: int * Cbbtab = upsample->Cb_b_tab; nuclear@1: INT32 * Crgtab = upsample->Cr_g_tab; nuclear@1: INT32 * Cbgtab = upsample->Cb_g_tab; nuclear@1: SHIFT_TEMPS nuclear@1: nuclear@1: inptr0 = input_buf[0][in_row_group_ctr]; nuclear@1: inptr1 = input_buf[1][in_row_group_ctr]; nuclear@1: inptr2 = input_buf[2][in_row_group_ctr]; nuclear@1: outptr = output_buf[0]; nuclear@1: /* Loop for each pair of output pixels */ nuclear@1: for (col = cinfo->output_width >> 1; col > 0; col--) { nuclear@1: /* Do the chroma part of the calculation */ nuclear@1: cb = GETJSAMPLE(*inptr1++); nuclear@1: cr = GETJSAMPLE(*inptr2++); nuclear@1: cred = Crrtab[cr]; nuclear@1: cgreen = (int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr], SCALEBITS); nuclear@1: cblue = Cbbtab[cb]; nuclear@1: /* Fetch 2 Y values and emit 2 pixels */ nuclear@1: y = GETJSAMPLE(*inptr0++); nuclear@1: outptr[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: outptr += RGB_PIXELSIZE; nuclear@1: y = GETJSAMPLE(*inptr0++); nuclear@1: outptr[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: outptr += RGB_PIXELSIZE; nuclear@1: } nuclear@1: /* If image width is odd, do the last output column separately */ nuclear@1: if (cinfo->output_width & 1) { nuclear@1: cb = GETJSAMPLE(*inptr1); nuclear@1: cr = GETJSAMPLE(*inptr2); nuclear@1: cred = Crrtab[cr]; nuclear@1: cgreen = (int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr], SCALEBITS); nuclear@1: cblue = Cbbtab[cb]; nuclear@1: y = GETJSAMPLE(*inptr0); nuclear@1: outptr[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: nuclear@1: /* nuclear@1: * Upsample and color convert for the case of 2:1 horizontal and 2:1 vertical. nuclear@1: */ nuclear@1: nuclear@1: METHODDEF(void) nuclear@1: h2v2_merged_upsample (j_decompress_ptr cinfo, nuclear@1: JSAMPIMAGE input_buf, JDIMENSION in_row_group_ctr, nuclear@1: JSAMPARRAY output_buf) nuclear@1: { nuclear@1: my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample; nuclear@1: register int y, cred, cgreen, cblue; nuclear@1: int cb, cr; nuclear@1: register JSAMPROW outptr0, outptr1; nuclear@1: JSAMPROW inptr00, inptr01, inptr1, inptr2; nuclear@1: JDIMENSION col; nuclear@1: /* copy these pointers into registers if possible */ nuclear@1: register JSAMPLE * range_limit = cinfo->sample_range_limit; nuclear@1: int * Crrtab = upsample->Cr_r_tab; nuclear@1: int * Cbbtab = upsample->Cb_b_tab; nuclear@1: INT32 * Crgtab = upsample->Cr_g_tab; nuclear@1: INT32 * Cbgtab = upsample->Cb_g_tab; nuclear@1: SHIFT_TEMPS nuclear@1: nuclear@1: inptr00 = input_buf[0][in_row_group_ctr*2]; nuclear@1: inptr01 = input_buf[0][in_row_group_ctr*2 + 1]; nuclear@1: inptr1 = input_buf[1][in_row_group_ctr]; nuclear@1: inptr2 = input_buf[2][in_row_group_ctr]; nuclear@1: outptr0 = output_buf[0]; nuclear@1: outptr1 = output_buf[1]; nuclear@1: /* Loop for each group of output pixels */ nuclear@1: for (col = cinfo->output_width >> 1; col > 0; col--) { nuclear@1: /* Do the chroma part of the calculation */ nuclear@1: cb = GETJSAMPLE(*inptr1++); nuclear@1: cr = GETJSAMPLE(*inptr2++); nuclear@1: cred = Crrtab[cr]; nuclear@1: cgreen = (int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr], SCALEBITS); nuclear@1: cblue = Cbbtab[cb]; nuclear@1: /* Fetch 4 Y values and emit 4 pixels */ nuclear@1: y = GETJSAMPLE(*inptr00++); nuclear@1: outptr0[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr0[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr0[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: outptr0 += RGB_PIXELSIZE; nuclear@1: y = GETJSAMPLE(*inptr00++); nuclear@1: outptr0[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr0[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr0[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: outptr0 += RGB_PIXELSIZE; nuclear@1: y = GETJSAMPLE(*inptr01++); nuclear@1: outptr1[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr1[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr1[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: outptr1 += RGB_PIXELSIZE; nuclear@1: y = GETJSAMPLE(*inptr01++); nuclear@1: outptr1[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr1[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr1[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: outptr1 += RGB_PIXELSIZE; nuclear@1: } nuclear@1: /* If image width is odd, do the last output column separately */ nuclear@1: if (cinfo->output_width & 1) { nuclear@1: cb = GETJSAMPLE(*inptr1); nuclear@1: cr = GETJSAMPLE(*inptr2); nuclear@1: cred = Crrtab[cr]; nuclear@1: cgreen = (int) RIGHT_SHIFT(Cbgtab[cb] + Crgtab[cr], SCALEBITS); nuclear@1: cblue = Cbbtab[cb]; nuclear@1: y = GETJSAMPLE(*inptr00); nuclear@1: outptr0[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr0[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr0[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: y = GETJSAMPLE(*inptr01); nuclear@1: outptr1[RGB_RED] = range_limit[y + cred]; nuclear@1: outptr1[RGB_GREEN] = range_limit[y + cgreen]; nuclear@1: outptr1[RGB_BLUE] = range_limit[y + cblue]; nuclear@1: } nuclear@1: } nuclear@1: nuclear@1: nuclear@1: /* nuclear@1: * Module initialization routine for merged upsampling/color conversion. nuclear@1: * nuclear@1: * NB: this is called under the conditions determined by use_merged_upsample() nuclear@1: * in jdmaster.c. That routine MUST correspond to the actual capabilities nuclear@1: * of this module; no safety checks are made here. nuclear@1: */ nuclear@1: nuclear@1: GLOBAL(void) nuclear@1: jinit_merged_upsampler (j_decompress_ptr cinfo) nuclear@1: { nuclear@1: my_upsample_ptr upsample; nuclear@1: nuclear@1: upsample = (my_upsample_ptr) nuclear@1: (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@1: SIZEOF(my_upsampler)); nuclear@1: cinfo->upsample = (struct jpeg_upsampler *) upsample; nuclear@1: upsample->pub.start_pass = start_pass_merged_upsample; nuclear@1: upsample->pub.need_context_rows = FALSE; nuclear@1: nuclear@1: upsample->out_row_width = cinfo->output_width * cinfo->out_color_components; nuclear@1: nuclear@1: if (cinfo->max_v_samp_factor == 2) { nuclear@1: upsample->pub.upsample = merged_2v_upsample; nuclear@1: upsample->upmethod = h2v2_merged_upsample; nuclear@1: /* Allocate a spare row buffer */ nuclear@1: upsample->spare_row = (JSAMPROW) nuclear@1: (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE, nuclear@1: (size_t) (upsample->out_row_width * SIZEOF(JSAMPLE))); nuclear@1: } else { nuclear@1: upsample->pub.upsample = merged_1v_upsample; nuclear@1: upsample->upmethod = h2v1_merged_upsample; nuclear@1: /* No spare row needed */ nuclear@1: upsample->spare_row = NULL; nuclear@1: } nuclear@1: nuclear@1: build_ycc_rgb_table(cinfo); nuclear@1: } nuclear@1: nuclear@1: #endif /* UPSAMPLE_MERGING_SUPPORTED */