blob: bd27b84e068a06434dfd6694ab8d5a0d7c5a9774 [file] [log] [blame]
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +00001/*
2 * jcsample.c
3 *
DRCda13af62014-05-18 17:52:06 +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.
DRCda13af62014-05-18 17:52:06 +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) 2014, MIPS Technologies, Inc., California.
9 * Copyright (C) 2015, D. R. Commander.
10 * For conditions of distribution and use, see the accompanying README.ijg
11 * file.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000012 *
Thomas G. Lane88aeed41992-12-10 00:00:00 +000013 * This file contains downsampling routines.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000014 *
15 * Downsampling input data is counted in "row groups". A row group
16 * is defined to be max_v_samp_factor pixel rows of each component,
17 * from which the downsampler produces v_samp_factor sample rows.
18 * A single row group is processed in each call to the downsampler module.
19 *
20 * The downsampler is responsible for edge-expansion of its output data
21 * to fill an integral number of DCT blocks horizontally. The source buffer
22 * may be modified if it is helpful for this purpose (the source buffer is
23 * allocated wide enough to correspond to the desired output width).
24 * The caller (the prep controller) is responsible for vertical padding.
25 *
26 * The downsampler may request "context rows" by setting need_context_rows
27 * during startup. In this case, the input arrays will contain at least
28 * one row group's worth of pixels above and below the passed-in data;
29 * the caller will create dummy rows at image top and bottom by replicating
30 * the first or last real pixel row.
Thomas G. Lane88aeed41992-12-10 00:00:00 +000031 *
32 * An excellent reference for image resampling is
33 * Digital Image Warping, George Wolberg, 1990.
34 * Pub. by IEEE Computer Society Press, Los Alamitos, CA. ISBN 0-8186-8944-7.
35 *
36 * The downsampling algorithm used here is a simple average of the source
37 * pixels covered by the output pixel. The hi-falutin sampling literature
38 * refers to this as a "box filter". In general the characteristics of a box
39 * filter are not very good, but for the specific cases we normally use (1:1
40 * and 2:1 ratios) the box is equivalent to a "triangle filter" which is not
41 * nearly so bad. If you intend to use other sampling ratios, you'd be well
42 * advised to improve this code.
43 *
44 * A simple input-smoothing capability is provided. This is mainly intended
45 * for cleaning up color-dithered GIF input files (if you find it inadequate,
46 * we suggest using an external filtering program such as pnmconvol). When
47 * enabled, each input pixel P is replaced by a weighted sum of itself and its
48 * eight neighbors. P's weight is 1-8*SF and each neighbor's weight is SF,
49 * where SF = (smoothing_factor / 1024).
50 * Currently, smoothing is only supported for 2h2v sampling factors.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000051 */
52
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000053#define JPEG_INTERNALS
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000054#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000055#include "jpeglib.h"
Pierre Ossman59a39382009-03-09 13:15:56 +000056#include "jsimd.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000057
58
59/* Pointer to routine to downsample a single component */
DRCbc56b752014-05-16 10:43:44 +000060typedef void (*downsample1_ptr) (j_compress_ptr cinfo,
Alex Naidis6eb7d372016-10-16 23:10:08 +020061 jpeg_component_info *compptr,
DRCbc56b752014-05-16 10:43:44 +000062 JSAMPARRAY input_data,
63 JSAMPARRAY output_data);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000064
65/* Private subobject */
66
67typedef struct {
DRCb7753512014-05-11 09:36:25 +000068 struct jpeg_downsampler pub; /* public fields */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000069
70 /* Downsampling method pointers, one per component */
71 downsample1_ptr methods[MAX_COMPONENTS];
72} my_downsampler;
73
Alex Naidis6eb7d372016-10-16 23:10:08 +020074typedef my_downsampler *my_downsample_ptr;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000075
76
77/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000078 * Initialize for a downsampling pass.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000079 */
80
Thomas G. Lane489583f1996-02-07 00:00:00 +000081METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040082start_pass_downsample(j_compress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +000083{
84 /* no work for now */
85}
86
87
88/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000089 * Expand a component horizontally from width input_cols to width output_cols,
90 * by duplicating the rightmost samples.
91 */
92
Thomas G. Lane489583f1996-02-07 00:00:00 +000093LOCAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040094expand_right_edge(JSAMPARRAY image_data, int num_rows, JDIMENSION input_cols,
95 JDIMENSION output_cols)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000096{
97 register JSAMPROW ptr;
98 register JSAMPLE pixval;
99 register int count;
100 int row;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400101 int numcols = (int)(output_cols - input_cols);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000102
103 if (numcols > 0) {
104 for (row = 0; row < num_rows; row++) {
105 ptr = image_data[row] + input_cols;
DRCb7753512014-05-11 09:36:25 +0000106 pixval = ptr[-1]; /* don't need GETJSAMPLE() here */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000107 for (count = numcols; count > 0; count--)
DRCb7753512014-05-11 09:36:25 +0000108 *ptr++ = pixval;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000109 }
110 }
111}
112
113
114/*
115 * Do downsampling for a whole row group (all components).
116 *
117 * In this version we simply downsample each component independently.
118 */
119
Thomas G. Lane489583f1996-02-07 00:00:00 +0000120METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400121sep_downsample(j_compress_ptr cinfo, JSAMPIMAGE input_buf,
122 JDIMENSION in_row_index, JSAMPIMAGE output_buf,
123 JDIMENSION out_row_group_index)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000124{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400125 my_downsample_ptr downsample = (my_downsample_ptr)cinfo->downsample;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000126 int ci;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200127 jpeg_component_info *compptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000128 JSAMPARRAY in_ptr, out_ptr;
129
130 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
131 ci++, compptr++) {
132 in_ptr = input_buf[ci] + in_row_index;
133 out_ptr = output_buf[ci] + (out_row_group_index * compptr->v_samp_factor);
134 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
135 }
136}
137
138
139/*
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000140 * Downsample pixel values of a single component.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000141 * One row group is processed per call.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000142 * This version handles arbitrary integral sampling ratios, without smoothing.
143 * Note that this version is not actually used for customary sampling ratios.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000144 */
145
Thomas G. Lane489583f1996-02-07 00:00:00 +0000146METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400147int_downsample(j_compress_ptr cinfo, jpeg_component_info *compptr,
148 JSAMPARRAY input_data, JSAMPARRAY output_data)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000149{
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000150 int inrow, outrow, h_expand, v_expand, numpix, numpix2, h, v;
DRCb7753512014-05-11 09:36:25 +0000151 JDIMENSION outcol, outcol_h; /* outcol_h == outcol*h_expand */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000152 JDIMENSION output_cols = compptr->width_in_blocks * DCTSIZE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000153 JSAMPROW inptr, outptr;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200154 JLONG outvalue;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000155
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000156 h_expand = cinfo->max_h_samp_factor / compptr->h_samp_factor;
157 v_expand = cinfo->max_v_samp_factor / compptr->v_samp_factor;
158 numpix = h_expand * v_expand;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400159 numpix2 = numpix / 2;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000160
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000161 /* Expand input data enough to let all the output samples be generated
162 * by the standard loop. Special-casing padded output would be more
163 * efficient.
164 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400165 expand_right_edge(input_data, cinfo->max_v_samp_factor, cinfo->image_width,
166 output_cols * h_expand);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000167
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000168 inrow = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000169 for (outrow = 0; outrow < compptr->v_samp_factor; outrow++) {
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000170 outptr = output_data[outrow];
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000171 for (outcol = 0, outcol_h = 0; outcol < output_cols;
DRCb7753512014-05-11 09:36:25 +0000172 outcol++, outcol_h += h_expand) {
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000173 outvalue = 0;
174 for (v = 0; v < v_expand; v++) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400175 inptr = input_data[inrow + v] + outcol_h;
DRCb7753512014-05-11 09:36:25 +0000176 for (h = 0; h < h_expand; h++) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400177 outvalue += (JLONG)GETJSAMPLE(*inptr++);
DRCb7753512014-05-11 09:36:25 +0000178 }
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000179 }
Leon Scroggins III3993b372018-07-16 10:43:45 -0400180 *outptr++ = (JSAMPLE)((outvalue + numpix2) / numpix);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000181 }
182 inrow += v_expand;
183 }
184}
185
186
187/*
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000188 * Downsample pixel values of a single component.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000189 * This version handles the special case of a full-size component,
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000190 * without smoothing.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000191 */
192
Thomas G. Lane489583f1996-02-07 00:00:00 +0000193METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400194fullsize_downsample(j_compress_ptr cinfo, jpeg_component_info *compptr,
195 JSAMPARRAY input_data, JSAMPARRAY output_data)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000196{
197 /* Copy the data */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400198 jcopy_sample_rows(input_data, 0, output_data, 0, cinfo->max_v_samp_factor,
199 cinfo->image_width);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000200 /* Edge-expand */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400201 expand_right_edge(output_data, cinfo->max_v_samp_factor, cinfo->image_width,
202 compptr->width_in_blocks * DCTSIZE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000203}
204
205
206/*
207 * Downsample pixel values of a single component.
208 * This version handles the common case of 2:1 horizontal and 1:1 vertical,
209 * without smoothing.
210 *
211 * A note about the "bias" calculations: when rounding fractional values to
212 * integer, we do not want to always round 0.5 up to the next integer.
213 * If we did that, we'd introduce a noticeable bias towards larger values.
214 * Instead, this code is arranged so that 0.5 will be rounded up or down at
215 * alternate pixel locations (a simple ordered dither pattern).
216 */
217
Thomas G. Lane489583f1996-02-07 00:00:00 +0000218METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400219h2v1_downsample(j_compress_ptr cinfo, jpeg_component_info *compptr,
220 JSAMPARRAY input_data, JSAMPARRAY output_data)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000221{
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000222 int outrow;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000223 JDIMENSION outcol;
224 JDIMENSION output_cols = compptr->width_in_blocks * DCTSIZE;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000225 register JSAMPROW inptr, outptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000226 register int bias;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000227
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000228 /* Expand input data enough to let all the output samples be generated
229 * by the standard loop. Special-casing padded output would be more
230 * efficient.
231 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400232 expand_right_edge(input_data, cinfo->max_v_samp_factor, cinfo->image_width,
233 output_cols * 2);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000234
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000235 for (outrow = 0; outrow < compptr->v_samp_factor; outrow++) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000236 outptr = output_data[outrow];
237 inptr = input_data[outrow];
DRCb7753512014-05-11 09:36:25 +0000238 bias = 0; /* bias = 0,1,0,1,... for successive samples */
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000239 for (outcol = 0; outcol < output_cols; outcol++) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400240 *outptr++ =
241 (JSAMPLE)((GETJSAMPLE(*inptr) + GETJSAMPLE(inptr[1]) + bias) >> 1);
DRCb7753512014-05-11 09:36:25 +0000242 bias ^= 1; /* 0=>1, 1=>0 */
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000243 inptr += 2;
244 }
245 }
246}
247
248
249/*
250 * Downsample pixel values of a single component.
251 * This version handles the standard case of 2:1 horizontal and 2:1 vertical,
252 * without smoothing.
253 */
254
Thomas G. Lane489583f1996-02-07 00:00:00 +0000255METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400256h2v2_downsample(j_compress_ptr cinfo, jpeg_component_info *compptr,
257 JSAMPARRAY input_data, JSAMPARRAY output_data)
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000258{
259 int inrow, outrow;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000260 JDIMENSION outcol;
261 JDIMENSION output_cols = compptr->width_in_blocks * DCTSIZE;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000262 register JSAMPROW inptr0, inptr1, outptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000263 register int bias;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000264
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000265 /* Expand input data enough to let all the output samples be generated
266 * by the standard loop. Special-casing padded output would be more
267 * efficient.
268 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400269 expand_right_edge(input_data, cinfo->max_v_samp_factor, cinfo->image_width,
270 output_cols * 2);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000271
272 inrow = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000273 for (outrow = 0; outrow < compptr->v_samp_factor; outrow++) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000274 outptr = output_data[outrow];
275 inptr0 = input_data[inrow];
Leon Scroggins III3993b372018-07-16 10:43:45 -0400276 inptr1 = input_data[inrow + 1];
DRCb7753512014-05-11 09:36:25 +0000277 bias = 1; /* bias = 1,2,1,2,... for successive samples */
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000278 for (outcol = 0; outcol < output_cols; outcol++) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400279 *outptr++ =
280 (JSAMPLE)((GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
281 GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1]) + bias) >> 2);
DRCb7753512014-05-11 09:36:25 +0000282 bias ^= 3; /* 1=>2, 2=>1 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400283 inptr0 += 2; inptr1 += 2;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000284 }
285 inrow += 2;
286 }
287}
288
289
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000290#ifdef INPUT_SMOOTHING_SUPPORTED
291
292/*
293 * Downsample pixel values of a single component.
294 * This version handles the standard case of 2:1 horizontal and 2:1 vertical,
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000295 * with smoothing. One row of context is required.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000296 */
297
Thomas G. Lane489583f1996-02-07 00:00:00 +0000298METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400299h2v2_smooth_downsample(j_compress_ptr cinfo, jpeg_component_info *compptr,
300 JSAMPARRAY input_data, JSAMPARRAY output_data)
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000301{
302 int inrow, outrow;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000303 JDIMENSION colctr;
304 JDIMENSION output_cols = compptr->width_in_blocks * DCTSIZE;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000305 register JSAMPROW inptr0, inptr1, above_ptr, below_ptr, outptr;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200306 JLONG membersum, neighsum, memberscale, neighscale;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000307
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000308 /* Expand input data enough to let all the output samples be generated
309 * by the standard loop. Special-casing padded output would be more
310 * efficient.
311 */
312 expand_right_edge(input_data - 1, cinfo->max_v_samp_factor + 2,
DRCb7753512014-05-11 09:36:25 +0000313 cinfo->image_width, output_cols * 2);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000314
315 /* We don't bother to form the individual "smoothed" input pixel values;
316 * we can directly compute the output which is the average of the four
317 * smoothed values. Each of the four member pixels contributes a fraction
318 * (1-8*SF) to its own smoothed image and a fraction SF to each of the three
319 * other smoothed pixels, therefore a total fraction (1-5*SF)/4 to the final
320 * output. The four corner-adjacent neighbor pixels contribute a fraction
321 * SF to just one smoothed pixel, or SF/4 to the final output; while the
322 * eight edge-adjacent neighbors contribute SF to each of two smoothed
323 * pixels, or SF/2 overall. In order to use integer arithmetic, these
324 * factors are scaled by 2^16 = 65536.
325 * Also recall that SF = smoothing_factor / 1024.
326 */
327
328 memberscale = 16384 - cinfo->smoothing_factor * 80; /* scaled (1-5*SF)/4 */
329 neighscale = cinfo->smoothing_factor * 16; /* scaled SF/4 */
330
331 inrow = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000332 for (outrow = 0; outrow < compptr->v_samp_factor; outrow++) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000333 outptr = output_data[outrow];
334 inptr0 = input_data[inrow];
Leon Scroggins III3993b372018-07-16 10:43:45 -0400335 inptr1 = input_data[inrow + 1];
336 above_ptr = input_data[inrow - 1];
337 below_ptr = input_data[inrow + 2];
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000338
339 /* Special case for first column: pretend column -1 is same as column 0 */
340 membersum = GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
DRCb7753512014-05-11 09:36:25 +0000341 GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000342 neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) +
DRCb7753512014-05-11 09:36:25 +0000343 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) +
344 GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[2]) +
345 GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[2]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000346 neighsum += neighsum;
347 neighsum += GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[2]) +
DRCb7753512014-05-11 09:36:25 +0000348 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[2]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000349 membersum = membersum * memberscale + neighsum * neighscale;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400350 *outptr++ = (JSAMPLE)((membersum + 32768) >> 16);
351 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000352
353 for (colctr = output_cols - 2; colctr > 0; colctr--) {
354 /* sum of pixels directly mapped to this output element */
355 membersum = GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
DRCb7753512014-05-11 09:36:25 +0000356 GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000357 /* sum of edge-neighbor pixels */
358 neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) +
DRCb7753512014-05-11 09:36:25 +0000359 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) +
360 GETJSAMPLE(inptr0[-1]) + GETJSAMPLE(inptr0[2]) +
361 GETJSAMPLE(inptr1[-1]) + GETJSAMPLE(inptr1[2]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000362 /* The edge-neighbors count twice as much as corner-neighbors */
363 neighsum += neighsum;
364 /* Add in the corner-neighbors */
365 neighsum += GETJSAMPLE(above_ptr[-1]) + GETJSAMPLE(above_ptr[2]) +
DRCb7753512014-05-11 09:36:25 +0000366 GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[2]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000367 /* form final output scaled up by 2^16 */
368 membersum = membersum * memberscale + neighsum * neighscale;
369 /* round, descale and output it */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400370 *outptr++ = (JSAMPLE)((membersum + 32768) >> 16);
371 inptr0 += 2; inptr1 += 2; above_ptr += 2; below_ptr += 2;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000372 }
373
374 /* Special case for last column */
375 membersum = GETJSAMPLE(*inptr0) + GETJSAMPLE(inptr0[1]) +
DRCb7753512014-05-11 09:36:25 +0000376 GETJSAMPLE(*inptr1) + GETJSAMPLE(inptr1[1]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000377 neighsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(above_ptr[1]) +
DRCb7753512014-05-11 09:36:25 +0000378 GETJSAMPLE(*below_ptr) + GETJSAMPLE(below_ptr[1]) +
379 GETJSAMPLE(inptr0[-1]) + GETJSAMPLE(inptr0[1]) +
380 GETJSAMPLE(inptr1[-1]) + GETJSAMPLE(inptr1[1]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000381 neighsum += neighsum;
382 neighsum += GETJSAMPLE(above_ptr[-1]) + GETJSAMPLE(above_ptr[1]) +
DRCb7753512014-05-11 09:36:25 +0000383 GETJSAMPLE(below_ptr[-1]) + GETJSAMPLE(below_ptr[1]);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000384 membersum = membersum * memberscale + neighsum * neighscale;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400385 *outptr = (JSAMPLE)((membersum + 32768) >> 16);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000386
387 inrow += 2;
388 }
389}
390
391
392/*
393 * Downsample pixel values of a single component.
394 * This version handles the special case of a full-size component,
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000395 * with smoothing. One row of context is required.
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000396 */
397
Thomas G. Lane489583f1996-02-07 00:00:00 +0000398METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400399fullsize_smooth_downsample(j_compress_ptr cinfo, jpeg_component_info *compptr,
400 JSAMPARRAY input_data, JSAMPARRAY output_data)
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000401{
402 int outrow;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000403 JDIMENSION colctr;
404 JDIMENSION output_cols = compptr->width_in_blocks * DCTSIZE;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000405 register JSAMPROW inptr, above_ptr, below_ptr, outptr;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200406 JLONG membersum, neighsum, memberscale, neighscale;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000407 int colsum, lastcolsum, nextcolsum;
408
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000409 /* Expand input data enough to let all the output samples be generated
410 * by the standard loop. Special-casing padded output would be more
411 * efficient.
412 */
413 expand_right_edge(input_data - 1, cinfo->max_v_samp_factor + 2,
DRCb7753512014-05-11 09:36:25 +0000414 cinfo->image_width, output_cols);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000415
416 /* Each of the eight neighbor pixels contributes a fraction SF to the
417 * smoothed pixel, while the main pixel contributes (1-8*SF). In order
418 * to use integer arithmetic, these factors are multiplied by 2^16 = 65536.
419 * Also recall that SF = smoothing_factor / 1024.
420 */
421
422 memberscale = 65536L - cinfo->smoothing_factor * 512L; /* scaled 1-8*SF */
423 neighscale = cinfo->smoothing_factor * 64; /* scaled SF */
424
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000425 for (outrow = 0; outrow < compptr->v_samp_factor; outrow++) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000426 outptr = output_data[outrow];
427 inptr = input_data[outrow];
Leon Scroggins III3993b372018-07-16 10:43:45 -0400428 above_ptr = input_data[outrow - 1];
429 below_ptr = input_data[outrow + 1];
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000430
431 /* Special case for first column */
432 colsum = GETJSAMPLE(*above_ptr++) + GETJSAMPLE(*below_ptr++) +
DRCb7753512014-05-11 09:36:25 +0000433 GETJSAMPLE(*inptr);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000434 membersum = GETJSAMPLE(*inptr++);
435 nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) +
DRCb7753512014-05-11 09:36:25 +0000436 GETJSAMPLE(*inptr);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000437 neighsum = colsum + (colsum - membersum) + nextcolsum;
438 membersum = membersum * memberscale + neighsum * neighscale;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400439 *outptr++ = (JSAMPLE)((membersum + 32768) >> 16);
440 lastcolsum = colsum; colsum = nextcolsum;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000441
442 for (colctr = output_cols - 2; colctr > 0; colctr--) {
443 membersum = GETJSAMPLE(*inptr++);
Leon Scroggins III3993b372018-07-16 10:43:45 -0400444 above_ptr++; below_ptr++;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000445 nextcolsum = GETJSAMPLE(*above_ptr) + GETJSAMPLE(*below_ptr) +
DRCb7753512014-05-11 09:36:25 +0000446 GETJSAMPLE(*inptr);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000447 neighsum = lastcolsum + (colsum - membersum) + nextcolsum;
448 membersum = membersum * memberscale + neighsum * neighscale;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400449 *outptr++ = (JSAMPLE)((membersum + 32768) >> 16);
450 lastcolsum = colsum; colsum = nextcolsum;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000451 }
452
453 /* Special case for last column */
454 membersum = GETJSAMPLE(*inptr);
455 neighsum = lastcolsum + (colsum - membersum) + colsum;
456 membersum = membersum * memberscale + neighsum * neighscale;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400457 *outptr = (JSAMPLE)((membersum + 32768) >> 16);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000458
459 }
460}
461
462#endif /* INPUT_SMOOTHING_SUPPORTED */
463
464
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000465/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000466 * Module initialization routine for downsampling.
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000467 * Note that we must select a routine for each component.
468 */
469
Thomas G. Lane489583f1996-02-07 00:00:00 +0000470GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400471jinit_downsampler(j_compress_ptr cinfo)
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000472{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000473 my_downsample_ptr downsample;
474 int ci;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200475 jpeg_component_info *compptr;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000476 boolean smoothok = TRUE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000477
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000478 downsample = (my_downsample_ptr)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400479 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000480 sizeof(my_downsampler));
Leon Scroggins III3993b372018-07-16 10:43:45 -0400481 cinfo->downsample = (struct jpeg_downsampler *)downsample;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000482 downsample->pub.start_pass = start_pass_downsample;
483 downsample->pub.downsample = sep_downsample;
484 downsample->pub.need_context_rows = FALSE;
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000485
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000486 if (cinfo->CCIR601_sampling)
487 ERREXIT(cinfo, JERR_CCIR601_NOTIMPL);
488
489 /* Verify we can handle the sampling factors, and set up method pointers */
490 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
491 ci++, compptr++) {
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000492 if (compptr->h_samp_factor == cinfo->max_h_samp_factor &&
DRCb7753512014-05-11 09:36:25 +0000493 compptr->v_samp_factor == cinfo->max_v_samp_factor) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000494#ifdef INPUT_SMOOTHING_SUPPORTED
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000495 if (cinfo->smoothing_factor) {
DRCb7753512014-05-11 09:36:25 +0000496 downsample->methods[ci] = fullsize_smooth_downsample;
497 downsample->pub.need_context_rows = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000498 } else
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000499#endif
DRCb7753512014-05-11 09:36:25 +0000500 downsample->methods[ci] = fullsize_downsample;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000501 } else if (compptr->h_samp_factor * 2 == cinfo->max_h_samp_factor &&
DRCb7753512014-05-11 09:36:25 +0000502 compptr->v_samp_factor == cinfo->max_v_samp_factor) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000503 smoothok = FALSE;
Pierre Ossman59a39382009-03-09 13:15:56 +0000504 if (jsimd_can_h2v1_downsample())
505 downsample->methods[ci] = jsimd_h2v1_downsample;
506 else
507 downsample->methods[ci] = h2v1_downsample;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000508 } else if (compptr->h_samp_factor * 2 == cinfo->max_h_samp_factor &&
DRCb7753512014-05-11 09:36:25 +0000509 compptr->v_samp_factor * 2 == cinfo->max_v_samp_factor) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000510#ifdef INPUT_SMOOTHING_SUPPORTED
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000511 if (cinfo->smoothing_factor) {
DRCa3c3bbc2014-05-15 18:22:24 +0000512#if defined(__mips__)
DRC6a61c1e2014-05-14 15:00:10 +0000513 if (jsimd_can_h2v2_smooth_downsample())
514 downsample->methods[ci] = jsimd_h2v2_smooth_downsample;
515 else
DRCa3c3bbc2014-05-15 18:22:24 +0000516#endif
DRC6a61c1e2014-05-14 15:00:10 +0000517 downsample->methods[ci] = h2v2_smooth_downsample;
DRCb7753512014-05-11 09:36:25 +0000518 downsample->pub.need_context_rows = TRUE;
DRCb3296972014-12-01 19:54:15 +0000519 } else
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000520#endif
DRCb3296972014-12-01 19:54:15 +0000521 {
DRCb7753512014-05-11 09:36:25 +0000522 if (jsimd_can_h2v2_downsample())
523 downsample->methods[ci] = jsimd_h2v2_downsample;
524 else
525 downsample->methods[ci] = h2v2_downsample;
DRC3b489c32014-05-14 14:57:01 +0000526 }
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000527 } else if ((cinfo->max_h_samp_factor % compptr->h_samp_factor) == 0 &&
DRCb7753512014-05-11 09:36:25 +0000528 (cinfo->max_v_samp_factor % compptr->v_samp_factor) == 0) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000529 smoothok = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000530 downsample->methods[ci] = int_downsample;
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000531 } else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000532 ERREXIT(cinfo, JERR_FRACT_SAMPLE_NOTIMPL);
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000533 }
534
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000535#ifdef INPUT_SMOOTHING_SUPPORTED
536 if (cinfo->smoothing_factor && !smoothok)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000537 TRACEMS(cinfo, 0, JTRC_SMOOTH_NOTIMPL);
Thomas G. Lane88aeed41992-12-10 00:00:00 +0000538#endif
Thomas G. Lane2cbeb8a1991-10-07 00:00:00 +0000539}