|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define JPEG_INTERNALS
|
|
#include "jinclude.h"
|
|
#include "jpeglib.h"
|
|
|
|
|
|
|
|
typedef JMETHOD(void, downsample1_ptr,
|
|
(j_compress_ptr cinfo, jpeg_component_info * compptr,
|
|
JSAMPARRAY input_data, JSAMPARRAY output_data));
|
|
|
|
|
|
|
|
typedef struct {
|
|
struct jpeg_downsampler pub;
|
|
|
|
|
|
downsample1_ptr methods[MAX_COMPONENTS];
|
|
|
|
|
|
int rowgroup_height[MAX_COMPONENTS];
|
|
|
|
|
|
|
|
|
|
UINT8 h_expand[MAX_COMPONENTS];
|
|
UINT8 v_expand[MAX_COMPONENTS];
|
|
} my_downsampler;
|
|
|
|
typedef my_downsampler * my_downsample_ptr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
start_pass_downsample (j_compress_ptr cinfo)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LOCAL(void)
|
|
expand_right_edge (JSAMPARRAY image_data, int num_rows,
|
|
JDIMENSION input_cols, JDIMENSION output_cols)
|
|
{
|
|
register JSAMPROW ptr;
|
|
register JSAMPLE pixval;
|
|
register int count;
|
|
int row;
|
|
int numcols = (int) (output_cols - input_cols);
|
|
|
|
if (numcols > 0) {
|
|
for (row = 0; row < num_rows; row++) {
|
|
ptr = image_data[row] + input_cols;
|
|
pixval = ptr[-1];
|
|
for (count = numcols; count > 0; count--)
|
|
*ptr++ = pixval;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
sep_downsample (j_compress_ptr cinfo,
|
|
JSAMPIMAGE input_buf, JDIMENSION in_row_index,
|
|
JSAMPIMAGE output_buf, JDIMENSION out_row_group_index)
|
|
{
|
|
my_downsample_ptr downsample = (my_downsample_ptr) cinfo->downsample;
|
|
int ci;
|
|
jpeg_component_info * compptr;
|
|
JSAMPARRAY in_ptr, out_ptr;
|
|
|
|
for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
|
ci++, compptr++) {
|
|
in_ptr = input_buf[ci] + in_row_index;
|
|
out_ptr = output_buf[ci] +
|
|
(out_row_group_index * downsample->rowgroup_height[ci]);
|
|
(*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
int_downsample (j_compress_ptr cinfo, jpeg_component_info * compptr,
|
|
JSAMPARRAY input_data, JSAMPARRAY output_data)
|
|
{
|
|
my_downsample_ptr downsample = (my_downsample_ptr) cinfo->downsample;
|
|
int inrow, outrow, h_expand, v_expand, numpix, numpix2, h, v;
|
|
JDIMENSION outcol, outcol_h;
|
|
JDIMENSION output_cols = compptr->width_in_blocks * compptr->DCT_h_scaled_size;
|
|
JSAMPROW inptr, outptr;
|
|
INT32 outvalue;
|
|
|
|
h_expand = downsample->h_expand[compptr->component_index];
|
|
v_expand = downsample->v_expand[compptr->component_index];
|
|
numpix = h_expand * v_expand;
|
|
numpix2 = numpix/2;
|
|
|
|
|
|
|
|
|
|
|
|
expand_right_edge(input_data, cinfo->max_v_samp_factor,
|
|
cinfo->image_width, output_cols * h_expand);
|
|
|
|
inrow = outrow = 0;
|
|
while (inrow < cinfo->max_v_samp_factor) {
|
|
outptr = output_data[outrow];
|
|
for (outcol = 0, outcol_h = 0; outcol < output_cols;
|
|
outcol++, outcol_h += h_expand) {
|
|
outvalue = 0;
|
|
for (v = 0; v < v_expand; v++) {
|
|
inptr = input_data[inrow+v] + outcol_h;
|
|
for (h = 0; h < h_expand; h++) {
|
|
outvalue += (INT32) GETJSAMPLE(*inptr++);
|
|
}
|
|
}
|
|
*outptr++ = (JSAMPLE) ((outvalue + numpix2) / numpix);
|
|
}
|
|
inrow += v_expand;
|
|
outrow++;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
fullsize_downsample (j_compress_ptr cinfo, jpeg_component_info * compptr,
|
|
JSAMPARRAY input_data, JSAMPARRAY output_data)
|
|
{
|
|
|
|
jcopy_sample_rows(input_data, 0, output_data, 0,
|
|
cinfo->max_v_samp_factor, cinfo->image_width);
|
|
|
|
expand_right_edge(output_data, cinfo->max_v_samp_factor, cinfo->image_width,
|
|
compptr->width_in_blocks * compptr->DCT_h_scaled_size);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
h2v1_downsample (j_compress_ptr cinfo, jpeg_component_info * compptr,
|
|
JSAMPARRAY input_data, JSAMPARRAY output_data)
|
|
{
|
|
int inrow;
|
|
JDIMENSION outcol;
|
|
JDIMENSION output_cols = compptr->width_in_blocks * compptr->DCT_h_scaled_size;
|
|
register JSAMPROW inptr, outptr;
|
|
register int bias;
|
|
|
|
|
|
|
|
|
|
|
|
expand_right_edge(input_data, cinfo->max_v_samp_factor,
|
|
cinfo->image_width, output_cols * 2);
|
|
|
|
for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) {
|
|
outptr = output_data[inrow];
|
|
inptr = input_data[inrow];
|
|
bias = 0;
|
|
for (outcol = 0; outcol < output_cols; outcol++) {
|
|
*outptr++ = (JSAMPLE) ((GETJSAMPLE(*inptr) + GETJSAMPLE(inptr[1])
|
|
+ bias) >> 1);
|
|
bias ^= 1;
|
|
inptr += 2;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
h2v2_downsample (j_compress_ptr cinfo, jpeg_component_info * compptr,
|
|
JSAMPARRAY input_data, JSAMPARRAY output_data)
|
|
{
|
|
int inrow, outrow;
|
|
JDIMENSION outcol;
|
|
JDIMENSION output_cols = compptr->width_in_blocks * compptr->DCT_h_scaled_size;
|
|
register JSAMPROW inptr0, inptr1, outptr;
|
|
register int bias;
|
|
|
|
|
|
|
|
|
|
|
|
expand_right_edge(input_data, cinfo->max_v_samp_factor,
|
|
cinfo->image_width, output_cols * 2);
|
|
|
|
inrow = outrow = 0;
|
|
while (inrow < cinfo->max_v_samp_factor) {
|
|
outptr = output_data[outrow];
|
|
inptr0 = input_data[inrow];
|
|
inptr1 = input_data[inrow+1];
|
|
bias = 1;
|
|
for (outcol = 0; outcol < output_cols; outcol++) {
|
|
*outptr++ = (JSAMPLE) ((GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
|
|
GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1])
|
|
+ bias) >> 2);
|
|
bias ^= 3;
|
|
inptr0 += 2; inptr1 += 2;
|
|
}
|
|
inrow += 2;
|
|
outrow++;
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef INPUT_SMOOTHING_SUPPORTED
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
h2v2_smooth_downsample (j_compress_ptr cinfo, jpeg_component_info * compptr,
|
|
JSAMPARRAY input_data, JSAMPARRAY output_data)
|
|
{
|
|
int inrow, outrow;
|
|
JDIMENSION colctr;
|
|
JDIMENSION output_cols = compptr->width_in_blocks * compptr->DCT_h_scaled_size;
|
|
register JSAMPROW inptr0, inptr1, above_ptr, below_ptr, outptr;
|
|
INT32 membersum, neighsum, memberscale, neighscale;
|
|
|
|
|
|
|
|
|
|
|
|
expand_right_edge(input_data - 1, cinfo->max_v_samp_factor + 2,
|
|
cinfo->image_width, output_cols * 2);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
memberscale = 16384 - cinfo->smoothing_factor * 80;
|
|
neighscale = cinfo->smoothing_factor * 16;
|
|
|
|
inrow = outrow = 0;
|
|
while (inrow < cinfo->max_v_samp_factor) {
|
|
outptr = output_data[outrow];
|
|
inptr0 = input_data[inrow];
|
|
inptr1 = input_data[inrow+1];
|
|
above_ptr = input_data[inrow-1];
|
|
below_ptr = input_data[inrow+2];
|
|
|
|
|
|
membersum = GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
|
|
GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1]);
|
|
neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) +
|
|
GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) +
|
|
GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[2]) +
|
|
GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[2]);
|
|
neighsum += neighsum;
|
|
neighsum += GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[2]) +
|
|
GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[2]);
|
|
membersum = membersum * memberscale + neighsum * neighscale;
|
|
*outptr++ = (JSAMPLE) ((membersum + 32768) >> 16);
|
|
inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2;
|
|
|
|
for (colctr = output_cols - 2; colctr > 0; colctr--) {
|
|
|
|
membersum = GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
|
|
GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1]);
|
|
|
|
neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) +
|
|
GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) +
|
|
GETJSAMPLE(inptr0[-1]) + GETJSAMPLE(inptr0[2]) +
|
|
GETJSAMPLE(inptr1[-1]) + GETJSAMPLE(inptr1[2]);
|
|
|
|
neighsum += neighsum;
|
|
|
|
neighsum += GETJSAMPLE(above_ptr[-1]) + GETJSAMPLE(above_ptr[2]) +
|
|
GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[2]);
|
|
|
|
membersum = membersum * memberscale + neighsum * neighscale;
|
|
|
|
*outptr++ = (JSAMPLE) ((membersum + 32768) >> 16);
|
|
inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2;
|
|
}
|
|
|
|
|
|
membersum = GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
|
|
GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1]);
|
|
neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) +
|
|
GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) +
|
|
GETJSAMPLE(inptr0[-1]) + GETJSAMPLE(inptr0[1]) +
|
|
GETJSAMPLE(inptr1[-1]) + GETJSAMPLE(inptr1[1]);
|
|
neighsum += neighsum;
|
|
neighsum += GETJSAMPLE(above_ptr[-1]) + GETJSAMPLE(above_ptr[1]) +
|
|
GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[1]);
|
|
membersum = membersum * memberscale + neighsum * neighscale;
|
|
*outptr = (JSAMPLE) ((membersum + 32768) >> 16);
|
|
|
|
inrow += 2;
|
|
outrow++;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
METHODDEF(void)
|
|
fullsize_smooth_downsample (j_compress_ptr cinfo, jpeg_component_info *compptr,
|
|
JSAMPARRAY input_data, JSAMPARRAY output_data)
|
|
{
|
|
int inrow;
|
|
JDIMENSION colctr;
|
|
JDIMENSION output_cols = compptr->width_in_blocks * compptr->DCT_h_scaled_size;
|
|
register JSAMPROW inptr, above_ptr, below_ptr, outptr;
|
|
INT32 membersum, neighsum, memberscale, neighscale;
|
|
int colsum, lastcolsum, nextcolsum;
|
|
|
|
|
|
|
|
|
|
|
|
expand_right_edge(input_data - 1, cinfo->max_v_samp_factor + 2,
|
|
cinfo->image_width, output_cols);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
memberscale = 65536L - cinfo->smoothing_factor * 512L;
|
|
neighscale = cinfo->smoothing_factor * 64;
|
|
|
|
for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) {
|
|
outptr = output_data[inrow];
|
|
inptr = input_data[inrow];
|
|
above_ptr = input_data[inrow-1];
|
|
below_ptr = input_data[inrow+1];
|
|
|
|
|
|
colsum = GETJSAMPLE(*above_ptr++) + GETJSAMPLE(*below_ptr++) +
|
|
GETJSAMPLE(*inptr);
|
|
membersum = GETJSAMPLE(*inptr++);
|
|
nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) +
|
|
GETJSAMPLE(*inptr);
|
|
neighsum = colsum + (colsum - membersum) + nextcolsum;
|
|
membersum = membersum * memberscale + neighsum * neighscale;
|
|
*outptr++ = (JSAMPLE) ((membersum + 32768) >> 16);
|
|
lastcolsum = colsum; colsum = nextcolsum;
|
|
|
|
for (colctr = output_cols - 2; colctr > 0; colctr--) {
|
|
membersum = GETJSAMPLE(*inptr++);
|
|
above_ptr++; below_ptr++;
|
|
nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) +
|
|
GETJSAMPLE(*inptr);
|
|
neighsum = lastcolsum + (colsum - membersum) + nextcolsum;
|
|
membersum = membersum * memberscale + neighsum * neighscale;
|
|
*outptr++ = (JSAMPLE) ((membersum + 32768) >> 16);
|
|
lastcolsum = colsum; colsum = nextcolsum;
|
|
}
|
|
|
|
|
|
membersum = GETJSAMPLE(*inptr);
|
|
neighsum = lastcolsum + (colsum - membersum) + colsum;
|
|
membersum = membersum * memberscale + neighsum * neighscale;
|
|
*outptr = (JSAMPLE) ((membersum + 32768) >> 16);
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GLOBAL(void)
|
|
jinit_downsampler (j_compress_ptr cinfo)
|
|
{
|
|
my_downsample_ptr downsample;
|
|
int ci;
|
|
jpeg_component_info * compptr;
|
|
boolean smoothok = TRUE;
|
|
int h_in_group, v_in_group, h_out_group, v_out_group;
|
|
|
|
downsample = (my_downsample_ptr)
|
|
(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
|
SIZEOF(my_downsampler));
|
|
cinfo->downsample = (struct jpeg_downsampler *) downsample;
|
|
downsample->pub.start_pass = start_pass_downsample;
|
|
downsample->pub.downsample = sep_downsample;
|
|
downsample->pub.need_context_rows = FALSE;
|
|
|
|
if (cinfo->CCIR601_sampling)
|
|
ERREXIT(cinfo, JERR_CCIR601_NOTIMPL);
|
|
|
|
|
|
for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
|
ci++, compptr++) {
|
|
|
|
|
|
|
|
h_out_group = (compptr->h_samp_factor * compptr->DCT_h_scaled_size) /
|
|
cinfo->min_DCT_h_scaled_size;
|
|
v_out_group = (compptr->v_samp_factor * compptr->DCT_v_scaled_size) /
|
|
cinfo->min_DCT_v_scaled_size;
|
|
h_in_group = cinfo->max_h_samp_factor;
|
|
v_in_group = cinfo->max_v_samp_factor;
|
|
downsample->rowgroup_height[ci] = v_out_group;
|
|
if (h_in_group == h_out_group && v_in_group == v_out_group) {
|
|
#ifdef INPUT_SMOOTHING_SUPPORTED
|
|
if (cinfo->smoothing_factor) {
|
|
downsample->methods[ci] = fullsize_smooth_downsample;
|
|
downsample->pub.need_context_rows = TRUE;
|
|
} else
|
|
#endif
|
|
downsample->methods[ci] = fullsize_downsample;
|
|
} else if (h_in_group == h_out_group * 2 &&
|
|
v_in_group == v_out_group) {
|
|
smoothok = FALSE;
|
|
downsample->methods[ci] = h2v1_downsample;
|
|
} else if (h_in_group == h_out_group * 2 &&
|
|
v_in_group == v_out_group * 2) {
|
|
#ifdef INPUT_SMOOTHING_SUPPORTED
|
|
if (cinfo->smoothing_factor) {
|
|
downsample->methods[ci] = h2v2_smooth_downsample;
|
|
downsample->pub.need_context_rows = TRUE;
|
|
} else
|
|
#endif
|
|
downsample->methods[ci] = h2v2_downsample;
|
|
} else if ((h_in_group % h_out_group) == 0 &&
|
|
(v_in_group % v_out_group) == 0) {
|
|
smoothok = FALSE;
|
|
downsample->methods[ci] = int_downsample;
|
|
downsample->h_expand[ci] = (UINT8) (h_in_group / h_out_group);
|
|
downsample->v_expand[ci] = (UINT8) (v_in_group / v_out_group);
|
|
} else
|
|
ERREXIT(cinfo, JERR_FRACT_SAMPLE_NOTIMPL);
|
|
}
|
|
|
|
#ifdef INPUT_SMOOTHING_SUPPORTED
|
|
if (cinfo->smoothing_factor && !smoothok)
|
|
TRACEMS(cinfo, 0, JTRC_SMOOTH_NOTIMPL);
|
|
#endif
|
|
}
|
|
|