blob: 52ee9af49b36791e01e076f24fe5147f4eb12f3f [file] [log] [blame]
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001/*
2 * jdsample.c
3 *
DRCa73e8702012-12-31 02:52:30 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane489583f1996-02-07 00:00:00 +00005 * Copyright (C) 1991-1996, Thomas G. Lane.
DRCa6ef2822013-09-28 03:23:49 +00006 * libjpeg-turbo Modifications:
Pierre Ossman59a39382009-03-09 13:15:56 +00007 * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB
Alex Naidis6eb7d372016-10-16 23:10:08 +02008 * Copyright (C) 2010, 2015-2016, D. R. Commander.
9 * Copyright (C) 2014, MIPS Technologies, Inc., California.
DRC0ef076f2016-02-19 18:32:10 -060010 * Copyright (C) 2015, Google, Inc.
11 * For conditions of distribution and use, see the accompanying README.ijg
12 * file.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000013 *
Thomas G. Lane88aeed41992-12-10 00:00:00 +000014 * This file contains upsampling routines.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000015 *
16 * Upsampling input data is counted in "row groups". A row group
17 * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size)
18 * sample rows of each component. Upsampling will normally produce
19 * max_v_samp_factor pixel rows from each row group (but this could vary
20 * if the upsampler is applying a scale factor of its own).
Thomas G. Lane88aeed41992-12-10 00:00:00 +000021 *
22 * An excellent reference for image resampling is
23 * Digital Image Warping, George Wolberg, 1990.
24 * Pub. by IEEE Computer Society Press, Los Alamitos, CA. ISBN 0-8186-8944-7.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000025 */
26
Alex Naidis6eb7d372016-10-16 23:10:08 +020027#include "jinclude.h"
DRCac30a1b2015-06-25 03:44:36 +000028#include "jdsample.h"
Pierre Ossman59a39382009-03-09 13:15:56 +000029#include "jsimd.h"
DRC36a6eec2010-10-08 08:05:44 +000030#include "jpegcomp.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000031
32
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000033
34/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000035 * Initialize for an upsampling pass.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000036 */
37
Thomas G. Lane489583f1996-02-07 00:00:00 +000038METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040039start_pass_upsample(j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000040{
Leon Scroggins III3993b372018-07-16 10:43:45 -040041 my_upsample_ptr upsample = (my_upsample_ptr)cinfo->upsample;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000042
43 /* Mark the conversion buffer empty */
44 upsample->next_row_out = cinfo->max_v_samp_factor;
45 /* Initialize total-height counter for detecting bottom of image */
46 upsample->rows_to_go = cinfo->output_height;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000047}
48
49
50/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000051 * Control routine to do upsampling (and color conversion).
Thomas G. Lane88aeed41992-12-10 00:00:00 +000052 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000053 * In this version we upsample each component independently.
54 * We upsample one row group into the conversion buffer, then apply
55 * color conversion a row at a time.
56 */
57
Thomas G. Lane489583f1996-02-07 00:00:00 +000058METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040059sep_upsample(j_decompress_ptr cinfo, JSAMPIMAGE input_buf,
60 JDIMENSION *in_row_group_ctr, JDIMENSION in_row_groups_avail,
61 JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
62 JDIMENSION out_rows_avail)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000063{
Leon Scroggins III3993b372018-07-16 10:43:45 -040064 my_upsample_ptr upsample = (my_upsample_ptr)cinfo->upsample;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000065 int ci;
Alex Naidis6eb7d372016-10-16 23:10:08 +020066 jpeg_component_info *compptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000067 JDIMENSION num_rows;
68
69 /* Fill the conversion buffer, if it's empty */
70 if (upsample->next_row_out >= cinfo->max_v_samp_factor) {
71 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
DRCe5eaf372014-05-09 18:00:32 +000072 ci++, compptr++) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000073 /* Invoke per-component upsample method. Notice we pass a POINTER
74 * to color_buf[ci], so that fullsize_upsample can change it.
75 */
76 (*upsample->methods[ci]) (cinfo, compptr,
DRCe5eaf372014-05-09 18:00:32 +000077 input_buf[ci] + (*in_row_group_ctr * upsample->rowgroup_height[ci]),
78 upsample->color_buf + ci);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000079 }
80 upsample->next_row_out = 0;
81 }
82
83 /* Color-convert and emit rows */
84
85 /* How many we have in the buffer: */
Leon Scroggins III3993b372018-07-16 10:43:45 -040086 num_rows = (JDIMENSION)(cinfo->max_v_samp_factor - upsample->next_row_out);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000087 /* Not more than the distance to the end of the image. Need this test
88 * in case the image height is not a multiple of max_v_samp_factor:
89 */
DRCe5eaf372014-05-09 18:00:32 +000090 if (num_rows > upsample->rows_to_go)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000091 num_rows = upsample->rows_to_go;
92 /* And not more than what the client can accept: */
93 out_rows_avail -= *out_row_ctr;
94 if (num_rows > out_rows_avail)
95 num_rows = out_rows_avail;
96
97 (*cinfo->cconvert->color_convert) (cinfo, upsample->color_buf,
Leon Scroggins III3993b372018-07-16 10:43:45 -040098 (JDIMENSION)upsample->next_row_out,
99 output_buf + *out_row_ctr, (int)num_rows);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000100
101 /* Adjust counts */
102 *out_row_ctr += num_rows;
103 upsample->rows_to_go -= num_rows;
104 upsample->next_row_out += num_rows;
105 /* When the buffer is emptied, declare this input row group consumed */
106 if (upsample->next_row_out >= cinfo->max_v_samp_factor)
107 (*in_row_group_ctr)++;
108}
109
110
111/*
112 * These are the routines invoked by sep_upsample to upsample pixel values
113 * of a single component. One row group is processed per call.
114 */
115
116
117/*
118 * For full-size components, we just make color_buf[ci] point at the
119 * input buffer, and thus avoid copying any data. Note that this is
120 * safe only because sep_upsample doesn't declare the input row group
121 * "consumed" until we are done color converting and emitting it.
122 */
123
Thomas G. Lane489583f1996-02-07 00:00:00 +0000124METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400125fullsize_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
126 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000127{
128 *output_data_ptr = input_data;
129}
130
131
132/*
133 * This is a no-op version used for "uninteresting" components.
134 * These components will not be referenced by color conversion.
135 */
136
Thomas G. Lane489583f1996-02-07 00:00:00 +0000137METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400138noop_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
139 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000140{
DRCe5eaf372014-05-09 18:00:32 +0000141 *output_data_ptr = NULL; /* safety check */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000142}
143
144
145/*
146 * This version handles any integral sampling ratios.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000147 * This is not used for typical JPEG files, so it need not be fast.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000148 * Nor, for that matter, is it particularly accurate: the algorithm is
149 * simple replication of the input pixel onto the corresponding output
150 * pixels. The hi-falutin sampling literature refers to this as a
151 * "box filter". A box filter tends to introduce visible artifacts,
152 * so if you are actually going to use 3:1 or 4:1 sampling ratios
153 * you would be well advised to improve this code.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000154 */
155
Thomas G. Lane489583f1996-02-07 00:00:00 +0000156METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400157int_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
158 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000159{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400160 my_upsample_ptr upsample = (my_upsample_ptr)cinfo->upsample;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000161 JSAMPARRAY output_data = *output_data_ptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000162 register JSAMPROW inptr, outptr;
163 register JSAMPLE invalue;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000164 register int h;
165 JSAMPROW outend;
166 int h_expand, v_expand;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000167 int inrow, outrow;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000168
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000169 h_expand = upsample->h_expand[compptr->component_index];
170 v_expand = upsample->v_expand[compptr->component_index];
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000171
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000172 inrow = outrow = 0;
173 while (outrow < cinfo->max_v_samp_factor) {
174 /* Generate one output row with proper horizontal expansion */
175 inptr = input_data[inrow];
176 outptr = output_data[outrow];
177 outend = outptr + cinfo->output_width;
178 while (outptr < outend) {
DRCe5eaf372014-05-09 18:00:32 +0000179 invalue = *inptr++; /* don't need GETJSAMPLE() here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000180 for (h = h_expand; h > 0; h--) {
DRCe5eaf372014-05-09 18:00:32 +0000181 *outptr++ = invalue;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000182 }
183 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000184 /* Generate any additional output rows by duplicating the first one */
185 if (v_expand > 1) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400186 jcopy_sample_rows(output_data, outrow, output_data, outrow + 1,
187 v_expand - 1, cinfo->output_width);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000188 }
189 inrow++;
190 outrow += v_expand;
191 }
192}
193
194
195/*
196 * Fast processing for the common case of 2:1 horizontal and 1:1 vertical.
197 * It's still a box filter.
198 */
199
Thomas G. Lane489583f1996-02-07 00:00:00 +0000200METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400201h2v1_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
202 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000203{
204 JSAMPARRAY output_data = *output_data_ptr;
205 register JSAMPROW inptr, outptr;
206 register JSAMPLE invalue;
207 JSAMPROW outend;
208 int inrow;
209
210 for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) {
211 inptr = input_data[inrow];
212 outptr = output_data[inrow];
213 outend = outptr + cinfo->output_width;
214 while (outptr < outend) {
DRCe5eaf372014-05-09 18:00:32 +0000215 invalue = *inptr++; /* don't need GETJSAMPLE() here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000216 *outptr++ = invalue;
217 *outptr++ = invalue;
218 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000219 }
220}
221
222
223/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000224 * Fast processing for the common case of 2:1 horizontal and 2:1 vertical.
225 * It's still a box filter.
226 */
227
Thomas G. Lane489583f1996-02-07 00:00:00 +0000228METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400229h2v2_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
230 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000231{
232 JSAMPARRAY output_data = *output_data_ptr;
233 register JSAMPROW inptr, outptr;
234 register JSAMPLE invalue;
235 JSAMPROW outend;
236 int inrow, outrow;
237
238 inrow = outrow = 0;
239 while (outrow < cinfo->max_v_samp_factor) {
240 inptr = input_data[inrow];
241 outptr = output_data[outrow];
242 outend = outptr + cinfo->output_width;
243 while (outptr < outend) {
DRCe5eaf372014-05-09 18:00:32 +0000244 invalue = *inptr++; /* don't need GETJSAMPLE() here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000245 *outptr++ = invalue;
246 *outptr++ = invalue;
247 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400248 jcopy_sample_rows(output_data, outrow, output_data, outrow + 1, 1,
249 cinfo->output_width);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000250 inrow++;
251 outrow += 2;
252 }
253}
254
255
256/*
257 * Fancy processing for the common case of 2:1 horizontal and 1:1 vertical.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000258 *
259 * The upsampling algorithm is linear interpolation between pixel centers,
260 * also known as a "triangle filter". This is a good compromise between
261 * speed and visual quality. The centers of the output pixels are 1/4 and 3/4
262 * of the way between input pixel centers.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000263 *
264 * A note about the "bias" calculations: when rounding fractional values to
265 * integer, we do not want to always round 0.5 up to the next integer.
266 * If we did that, we'd introduce a noticeable bias towards larger values.
267 * Instead, this code is arranged so that 0.5 will be rounded up or down at
268 * alternate pixel locations (a simple ordered dither pattern).
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000269 */
270
Thomas G. Lane489583f1996-02-07 00:00:00 +0000271METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400272h2v1_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
273 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000274{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000275 JSAMPARRAY output_data = *output_data_ptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000276 register JSAMPROW inptr, outptr;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000277 register int invalue;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000278 register JDIMENSION colctr;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000279 int inrow;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000280
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000281 for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000282 inptr = input_data[inrow];
283 outptr = output_data[inrow];
284 /* Special case for first column */
285 invalue = GETJSAMPLE(*inptr++);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400286 *outptr++ = (JSAMPLE)invalue;
287 *outptr++ = (JSAMPLE)((invalue * 3 + GETJSAMPLE(*inptr) + 2) >> 2);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000288
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000289 for (colctr = compptr->downsampled_width - 2; colctr > 0; colctr--) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000290 /* General case: 3/4 * nearer pixel + 1/4 * further pixel */
291 invalue = GETJSAMPLE(*inptr++) * 3;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400292 *outptr++ = (JSAMPLE)((invalue + GETJSAMPLE(inptr[-2]) + 1) >> 2);
293 *outptr++ = (JSAMPLE)((invalue + GETJSAMPLE(*inptr) + 2) >> 2);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000294 }
295
296 /* Special case for last column */
297 invalue = GETJSAMPLE(*inptr);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400298 *outptr++ = (JSAMPLE)((invalue * 3 + GETJSAMPLE(inptr[-1]) + 1) >> 2);
299 *outptr++ = (JSAMPLE)invalue;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000300 }
301}
302
303
304/*
Alex Naidis6eb7d372016-10-16 23:10:08 +0200305 * Fancy processing for 1:1 horizontal and 2:1 vertical (4:4:0 subsampling).
306 *
307 * This is a less common case, but it can be encountered when losslessly
308 * rotating/transposing a JPEG file that uses 4:2:2 chroma subsampling.
309 */
310
311METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400312h1v2_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
313 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Alex Naidis6eb7d372016-10-16 23:10:08 +0200314{
315 JSAMPARRAY output_data = *output_data_ptr;
316 JSAMPROW inptr0, inptr1, outptr;
317#if BITS_IN_JSAMPLE == 8
318 int thiscolsum;
319#else
320 JLONG thiscolsum;
321#endif
322 JDIMENSION colctr;
323 int inrow, outrow, v;
324
325 inrow = outrow = 0;
326 while (outrow < cinfo->max_v_samp_factor) {
327 for (v = 0; v < 2; v++) {
328 /* inptr0 points to nearest input row, inptr1 points to next nearest */
329 inptr0 = input_data[inrow];
330 if (v == 0) /* next nearest is row above */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400331 inptr1 = input_data[inrow - 1];
Alex Naidis6eb7d372016-10-16 23:10:08 +0200332 else /* next nearest is row below */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400333 inptr1 = input_data[inrow + 1];
Alex Naidis6eb7d372016-10-16 23:10:08 +0200334 outptr = output_data[outrow++];
335
Leon Scroggins III3993b372018-07-16 10:43:45 -0400336 for (colctr = 0; colctr < compptr->downsampled_width; colctr++) {
Alex Naidis6eb7d372016-10-16 23:10:08 +0200337 thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400338 *outptr++ = (JSAMPLE)((thiscolsum + 1) >> 2);
Alex Naidis6eb7d372016-10-16 23:10:08 +0200339 }
340 }
341 inrow++;
342 }
343}
344
345
346/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000347 * Fancy processing for the common case of 2:1 horizontal and 2:1 vertical.
348 * Again a triangle filter; see comments for h2v1 case, above.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000349 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000350 * It is OK for us to reference the adjacent input rows because we demanded
351 * context from the main buffer controller (see initialization code).
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000352 */
353
Thomas G. Lane489583f1996-02-07 00:00:00 +0000354METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400355h2v2_fancy_upsample(j_decompress_ptr cinfo, jpeg_component_info *compptr,
356 JSAMPARRAY input_data, JSAMPARRAY *output_data_ptr)
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000357{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000358 JSAMPARRAY output_data = *output_data_ptr;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000359 register JSAMPROW inptr0, inptr1, outptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000360#if BITS_IN_JSAMPLE == 8
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000361 register int thiscolsum, lastcolsum, nextcolsum;
362#else
Alex Naidis6eb7d372016-10-16 23:10:08 +0200363 register JLONG thiscolsum, lastcolsum, nextcolsum;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000364#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000365 register JDIMENSION colctr;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000366 int inrow, outrow, v;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000367
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000368 inrow = outrow = 0;
369 while (outrow < cinfo->max_v_samp_factor) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000370 for (v = 0; v < 2; v++) {
371 /* inptr0 points to nearest input row, inptr1 points to next nearest */
372 inptr0 = input_data[inrow];
DRCe5eaf372014-05-09 18:00:32 +0000373 if (v == 0) /* next nearest is row above */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400374 inptr1 = input_data[inrow - 1];
DRCe5eaf372014-05-09 18:00:32 +0000375 else /* next nearest is row below */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400376 inptr1 = input_data[inrow + 1];
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000377 outptr = output_data[outrow++];
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000378
379 /* Special case for first column */
380 thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++);
381 nextcolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400382 *outptr++ = (JSAMPLE)((thiscolsum * 4 + 8) >> 4);
383 *outptr++ = (JSAMPLE)((thiscolsum * 3 + nextcolsum + 7) >> 4);
384 lastcolsum = thiscolsum; thiscolsum = nextcolsum;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000385
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000386 for (colctr = compptr->downsampled_width - 2; colctr > 0; colctr--) {
DRCe5eaf372014-05-09 18:00:32 +0000387 /* General case: 3/4 * nearer pixel + 1/4 * further pixel in each */
388 /* dimension, thus 9/16, 3/16, 3/16, 1/16 overall */
389 nextcolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400390 *outptr++ = (JSAMPLE)((thiscolsum * 3 + lastcolsum + 8) >> 4);
391 *outptr++ = (JSAMPLE)((thiscolsum * 3 + nextcolsum + 7) >> 4);
392 lastcolsum = thiscolsum; thiscolsum = nextcolsum;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000393 }
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000394
395 /* Special case for last column */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400396 *outptr++ = (JSAMPLE)((thiscolsum * 3 + lastcolsum + 8) >> 4);
397 *outptr++ = (JSAMPLE)((thiscolsum * 4 + 7) >> 4);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000398 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000399 inrow++;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000400 }
401}
402
403
404/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000405 * Module initialization routine for upsampling.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000406 */
407
Thomas G. Lane489583f1996-02-07 00:00:00 +0000408GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400409jinit_upsampler(j_decompress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000410{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000411 my_upsample_ptr upsample;
412 int ci;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200413 jpeg_component_info *compptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000414 boolean need_buffer, do_fancy;
415 int h_in_group, v_in_group, h_out_group, v_out_group;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000416
DRC0ef076f2016-02-19 18:32:10 -0600417 if (!cinfo->master->jinit_upsampler_no_alloc) {
418 upsample = (my_upsample_ptr)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400419 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC0ef076f2016-02-19 18:32:10 -0600420 sizeof(my_upsampler));
Leon Scroggins III3993b372018-07-16 10:43:45 -0400421 cinfo->upsample = (struct jpeg_upsampler *)upsample;
DRC0ef076f2016-02-19 18:32:10 -0600422 upsample->pub.start_pass = start_pass_upsample;
423 upsample->pub.upsample = sep_upsample;
424 upsample->pub.need_context_rows = FALSE; /* until we find out differently */
425 } else
Leon Scroggins III3993b372018-07-16 10:43:45 -0400426 upsample = (my_upsample_ptr)cinfo->upsample;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000427
DRCe5eaf372014-05-09 18:00:32 +0000428 if (cinfo->CCIR601_sampling) /* this isn't supported */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000429 ERREXIT(cinfo, JERR_CCIR601_NOTIMPL);
430
431 /* jdmainct.c doesn't support context rows when min_DCT_scaled_size = 1,
432 * so don't ask for it.
433 */
DRC49967cd2010-10-09 19:57:51 +0000434 do_fancy = cinfo->do_fancy_upsampling && cinfo->_min_DCT_scaled_size > 1;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000435
436 /* Verify we can handle the sampling factors, select per-component methods,
437 * and create storage as needed.
438 */
439 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
440 ci++, compptr++) {
441 /* Compute size of an "input group" after IDCT scaling. This many samples
442 * are to be converted to max_h_samp_factor * max_v_samp_factor pixels.
443 */
DRC49967cd2010-10-09 19:57:51 +0000444 h_in_group = (compptr->h_samp_factor * compptr->_DCT_scaled_size) /
DRCe5eaf372014-05-09 18:00:32 +0000445 cinfo->_min_DCT_scaled_size;
DRC49967cd2010-10-09 19:57:51 +0000446 v_in_group = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
DRCe5eaf372014-05-09 18:00:32 +0000447 cinfo->_min_DCT_scaled_size;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000448 h_out_group = cinfo->max_h_samp_factor;
449 v_out_group = cinfo->max_v_samp_factor;
450 upsample->rowgroup_height[ci] = v_in_group; /* save for use later */
451 need_buffer = TRUE;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400452 if (!compptr->component_needed) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000453 /* Don't bother to upsample an uninteresting component. */
454 upsample->methods[ci] = noop_upsample;
455 need_buffer = FALSE;
456 } else if (h_in_group == h_out_group && v_in_group == v_out_group) {
457 /* Fullsize components can be processed without any work. */
458 upsample->methods[ci] = fullsize_upsample;
459 need_buffer = FALSE;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400460 } else if (h_in_group * 2 == h_out_group && v_in_group == v_out_group) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000461 /* Special cases for 2h1v upsampling */
Pierre Ossman59a39382009-03-09 13:15:56 +0000462 if (do_fancy && compptr->downsampled_width > 2) {
DRCe5eaf372014-05-09 18:00:32 +0000463 if (jsimd_can_h2v1_fancy_upsample())
464 upsample->methods[ci] = jsimd_h2v1_fancy_upsample;
465 else
466 upsample->methods[ci] = h2v1_fancy_upsample;
Pierre Ossman59a39382009-03-09 13:15:56 +0000467 } else {
DRCe5eaf372014-05-09 18:00:32 +0000468 if (jsimd_can_h2v1_upsample())
469 upsample->methods[ci] = jsimd_h2v1_upsample;
470 else
471 upsample->methods[ci] = h2v1_upsample;
Pierre Ossman59a39382009-03-09 13:15:56 +0000472 }
Alex Naidis6eb7d372016-10-16 23:10:08 +0200473 } else if (h_in_group == h_out_group &&
474 v_in_group * 2 == v_out_group && do_fancy) {
475 /* Non-fancy upsampling is handled by the generic method */
476 upsample->methods[ci] = h1v2_fancy_upsample;
477 upsample->pub.need_context_rows = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000478 } else if (h_in_group * 2 == h_out_group &&
DRCe5eaf372014-05-09 18:00:32 +0000479 v_in_group * 2 == v_out_group) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000480 /* Special cases for 2h2v upsampling */
481 if (do_fancy && compptr->downsampled_width > 2) {
DRCe5eaf372014-05-09 18:00:32 +0000482 if (jsimd_can_h2v2_fancy_upsample())
483 upsample->methods[ci] = jsimd_h2v2_fancy_upsample;
484 else
485 upsample->methods[ci] = h2v2_fancy_upsample;
486 upsample->pub.need_context_rows = TRUE;
Pierre Ossman59a39382009-03-09 13:15:56 +0000487 } else {
DRCe5eaf372014-05-09 18:00:32 +0000488 if (jsimd_can_h2v2_upsample())
489 upsample->methods[ci] = jsimd_h2v2_upsample;
490 else
491 upsample->methods[ci] = h2v2_upsample;
Pierre Ossman59a39382009-03-09 13:15:56 +0000492 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000493 } else if ((h_out_group % h_in_group) == 0 &&
DRCe5eaf372014-05-09 18:00:32 +0000494 (v_out_group % v_in_group) == 0) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000495 /* Generic integral-factors upsampling method */
DRC5ef46302014-05-18 20:04:47 +0000496#if defined(__mips__)
497 if (jsimd_can_int_upsample())
498 upsample->methods[ci] = jsimd_int_upsample;
499 else
500#endif
501 upsample->methods[ci] = int_upsample;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400502 upsample->h_expand[ci] = (UINT8)(h_out_group / h_in_group);
503 upsample->v_expand[ci] = (UINT8)(v_out_group / v_in_group);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000504 } else
505 ERREXIT(cinfo, JERR_FRACT_SAMPLE_NOTIMPL);
DRC0ef076f2016-02-19 18:32:10 -0600506 if (need_buffer && !cinfo->master->jinit_upsampler_no_alloc) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000507 upsample->color_buf[ci] = (*cinfo->mem->alloc_sarray)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400508 ((j_common_ptr)cinfo, JPOOL_IMAGE,
509 (JDIMENSION)jround_up((long)cinfo->output_width,
510 (long)cinfo->max_h_samp_factor),
511 (JDIMENSION)cinfo->max_v_samp_factor);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000512 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000513 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000514}