rev |
line source |
nuclear@14
|
1 /*
|
nuclear@14
|
2 * jcprepct.c
|
nuclear@14
|
3 *
|
nuclear@14
|
4 * Copyright (C) 1994-1996, Thomas G. Lane.
|
nuclear@14
|
5 * This file is part of the Independent JPEG Group's software.
|
nuclear@14
|
6 * For conditions of distribution and use, see the accompanying README file.
|
nuclear@14
|
7 *
|
nuclear@14
|
8 * This file contains the compression preprocessing controller.
|
nuclear@14
|
9 * This controller manages the color conversion, downsampling,
|
nuclear@14
|
10 * and edge expansion steps.
|
nuclear@14
|
11 *
|
nuclear@14
|
12 * Most of the complexity here is associated with buffering input rows
|
nuclear@14
|
13 * as required by the downsampler. See the comments at the head of
|
nuclear@14
|
14 * jcsample.c for the downsampler's needs.
|
nuclear@14
|
15 */
|
nuclear@14
|
16
|
nuclear@14
|
17 #define JPEG_INTERNALS
|
nuclear@14
|
18 #include "jinclude.h"
|
nuclear@14
|
19 #include "jpeglib.h"
|
nuclear@14
|
20
|
nuclear@14
|
21
|
nuclear@14
|
22 /* At present, jcsample.c can request context rows only for smoothing.
|
nuclear@14
|
23 * In the future, we might also need context rows for CCIR601 sampling
|
nuclear@14
|
24 * or other more-complex downsampling procedures. The code to support
|
nuclear@14
|
25 * context rows should be compiled only if needed.
|
nuclear@14
|
26 */
|
nuclear@14
|
27 #ifdef INPUT_SMOOTHING_SUPPORTED
|
nuclear@14
|
28 #define CONTEXT_ROWS_SUPPORTED
|
nuclear@14
|
29 #endif
|
nuclear@14
|
30
|
nuclear@14
|
31
|
nuclear@14
|
32 /*
|
nuclear@14
|
33 * For the simple (no-context-row) case, we just need to buffer one
|
nuclear@14
|
34 * row group's worth of pixels for the downsampling step. At the bottom of
|
nuclear@14
|
35 * the image, we pad to a full row group by replicating the last pixel row.
|
nuclear@14
|
36 * The downsampler's last output row is then replicated if needed to pad
|
nuclear@14
|
37 * out to a full iMCU row.
|
nuclear@14
|
38 *
|
nuclear@14
|
39 * When providing context rows, we must buffer three row groups' worth of
|
nuclear@14
|
40 * pixels. Three row groups are physically allocated, but the row pointer
|
nuclear@14
|
41 * arrays are made five row groups high, with the extra pointers above and
|
nuclear@14
|
42 * below "wrapping around" to point to the last and first real row groups.
|
nuclear@14
|
43 * This allows the downsampler to access the proper context rows.
|
nuclear@14
|
44 * At the top and bottom of the image, we create dummy context rows by
|
nuclear@14
|
45 * copying the first or last real pixel row. This copying could be avoided
|
nuclear@14
|
46 * by pointer hacking as is done in jdmainct.c, but it doesn't seem worth the
|
nuclear@14
|
47 * trouble on the compression side.
|
nuclear@14
|
48 */
|
nuclear@14
|
49
|
nuclear@14
|
50
|
nuclear@14
|
51 /* Private buffer controller object */
|
nuclear@14
|
52
|
nuclear@14
|
53 typedef struct {
|
nuclear@14
|
54 struct jpeg_c_prep_controller pub; /* public fields */
|
nuclear@14
|
55
|
nuclear@14
|
56 /* Downsampling input buffer. This buffer holds color-converted data
|
nuclear@14
|
57 * until we have enough to do a downsample step.
|
nuclear@14
|
58 */
|
nuclear@14
|
59 JSAMPARRAY color_buf[MAX_COMPONENTS];
|
nuclear@14
|
60
|
nuclear@14
|
61 JDIMENSION rows_to_go; /* counts rows remaining in source image */
|
nuclear@14
|
62 int next_buf_row; /* index of next row to store in color_buf */
|
nuclear@14
|
63
|
nuclear@14
|
64 #ifdef CONTEXT_ROWS_SUPPORTED /* only needed for context case */
|
nuclear@14
|
65 int this_row_group; /* starting row index of group to process */
|
nuclear@14
|
66 int next_buf_stop; /* downsample when we reach this index */
|
nuclear@14
|
67 #endif
|
nuclear@14
|
68 } my_prep_controller;
|
nuclear@14
|
69
|
nuclear@14
|
70 typedef my_prep_controller * my_prep_ptr;
|
nuclear@14
|
71
|
nuclear@14
|
72
|
nuclear@14
|
73 /*
|
nuclear@14
|
74 * Initialize for a processing pass.
|
nuclear@14
|
75 */
|
nuclear@14
|
76
|
nuclear@14
|
77 METHODDEF(void)
|
nuclear@14
|
78 start_pass_prep (j_compress_ptr cinfo, J_BUF_MODE pass_mode)
|
nuclear@14
|
79 {
|
nuclear@14
|
80 my_prep_ptr prep = (my_prep_ptr) cinfo->prep;
|
nuclear@14
|
81
|
nuclear@14
|
82 if (pass_mode != JBUF_PASS_THRU)
|
nuclear@14
|
83 ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
|
nuclear@14
|
84
|
nuclear@14
|
85 /* Initialize total-height counter for detecting bottom of image */
|
nuclear@14
|
86 prep->rows_to_go = cinfo->image_height;
|
nuclear@14
|
87 /* Mark the conversion buffer empty */
|
nuclear@14
|
88 prep->next_buf_row = 0;
|
nuclear@14
|
89 #ifdef CONTEXT_ROWS_SUPPORTED
|
nuclear@14
|
90 /* Preset additional state variables for context mode.
|
nuclear@14
|
91 * These aren't used in non-context mode, so we needn't test which mode.
|
nuclear@14
|
92 */
|
nuclear@14
|
93 prep->this_row_group = 0;
|
nuclear@14
|
94 /* Set next_buf_stop to stop after two row groups have been read in. */
|
nuclear@14
|
95 prep->next_buf_stop = 2 * cinfo->max_v_samp_factor;
|
nuclear@14
|
96 #endif
|
nuclear@14
|
97 }
|
nuclear@14
|
98
|
nuclear@14
|
99
|
nuclear@14
|
100 /*
|
nuclear@14
|
101 * Expand an image vertically from height input_rows to height output_rows,
|
nuclear@14
|
102 * by duplicating the bottom row.
|
nuclear@14
|
103 */
|
nuclear@14
|
104
|
nuclear@14
|
105 LOCAL(void)
|
nuclear@14
|
106 expand_bottom_edge (JSAMPARRAY image_data, JDIMENSION num_cols,
|
nuclear@14
|
107 int input_rows, int output_rows)
|
nuclear@14
|
108 {
|
nuclear@14
|
109 register int row;
|
nuclear@14
|
110
|
nuclear@14
|
111 for (row = input_rows; row < output_rows; row++) {
|
nuclear@14
|
112 jcopy_sample_rows(image_data, input_rows-1, image_data, row,
|
nuclear@14
|
113 1, num_cols);
|
nuclear@14
|
114 }
|
nuclear@14
|
115 }
|
nuclear@14
|
116
|
nuclear@14
|
117
|
nuclear@14
|
118 /*
|
nuclear@14
|
119 * Process some data in the simple no-context case.
|
nuclear@14
|
120 *
|
nuclear@14
|
121 * Preprocessor output data is counted in "row groups". A row group
|
nuclear@14
|
122 * is defined to be v_samp_factor sample rows of each component.
|
nuclear@14
|
123 * Downsampling will produce this much data from each max_v_samp_factor
|
nuclear@14
|
124 * input rows.
|
nuclear@14
|
125 */
|
nuclear@14
|
126
|
nuclear@14
|
127 METHODDEF(void)
|
nuclear@14
|
128 pre_process_data (j_compress_ptr cinfo,
|
nuclear@14
|
129 JSAMPARRAY input_buf, JDIMENSION *in_row_ctr,
|
nuclear@14
|
130 JDIMENSION in_rows_avail,
|
nuclear@14
|
131 JSAMPIMAGE output_buf, JDIMENSION *out_row_group_ctr,
|
nuclear@14
|
132 JDIMENSION out_row_groups_avail)
|
nuclear@14
|
133 {
|
nuclear@14
|
134 my_prep_ptr prep = (my_prep_ptr) cinfo->prep;
|
nuclear@14
|
135 int numrows, ci;
|
nuclear@14
|
136 JDIMENSION inrows;
|
nuclear@14
|
137 jpeg_component_info * compptr;
|
nuclear@14
|
138
|
nuclear@14
|
139 while (*in_row_ctr < in_rows_avail &&
|
nuclear@14
|
140 *out_row_group_ctr < out_row_groups_avail) {
|
nuclear@14
|
141 /* Do color conversion to fill the conversion buffer. */
|
nuclear@14
|
142 inrows = in_rows_avail - *in_row_ctr;
|
nuclear@14
|
143 numrows = cinfo->max_v_samp_factor - prep->next_buf_row;
|
nuclear@14
|
144 numrows = (int) MIN((JDIMENSION) numrows, inrows);
|
nuclear@14
|
145 (*cinfo->cconvert->color_convert) (cinfo, input_buf + *in_row_ctr,
|
nuclear@14
|
146 prep->color_buf,
|
nuclear@14
|
147 (JDIMENSION) prep->next_buf_row,
|
nuclear@14
|
148 numrows);
|
nuclear@14
|
149 *in_row_ctr += numrows;
|
nuclear@14
|
150 prep->next_buf_row += numrows;
|
nuclear@14
|
151 prep->rows_to_go -= numrows;
|
nuclear@14
|
152 /* If at bottom of image, pad to fill the conversion buffer. */
|
nuclear@14
|
153 if (prep->rows_to_go == 0 &&
|
nuclear@14
|
154 prep->next_buf_row < cinfo->max_v_samp_factor) {
|
nuclear@14
|
155 for (ci = 0; ci < cinfo->num_components; ci++) {
|
nuclear@14
|
156 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
|
nuclear@14
|
157 prep->next_buf_row, cinfo->max_v_samp_factor);
|
nuclear@14
|
158 }
|
nuclear@14
|
159 prep->next_buf_row = cinfo->max_v_samp_factor;
|
nuclear@14
|
160 }
|
nuclear@14
|
161 /* If we've filled the conversion buffer, empty it. */
|
nuclear@14
|
162 if (prep->next_buf_row == cinfo->max_v_samp_factor) {
|
nuclear@14
|
163 (*cinfo->downsample->downsample) (cinfo,
|
nuclear@14
|
164 prep->color_buf, (JDIMENSION) 0,
|
nuclear@14
|
165 output_buf, *out_row_group_ctr);
|
nuclear@14
|
166 prep->next_buf_row = 0;
|
nuclear@14
|
167 (*out_row_group_ctr)++;
|
nuclear@14
|
168 }
|
nuclear@14
|
169 /* If at bottom of image, pad the output to a full iMCU height.
|
nuclear@14
|
170 * Note we assume the caller is providing a one-iMCU-height output buffer!
|
nuclear@14
|
171 */
|
nuclear@14
|
172 if (prep->rows_to_go == 0 &&
|
nuclear@14
|
173 *out_row_group_ctr < out_row_groups_avail) {
|
nuclear@14
|
174 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
175 ci++, compptr++) {
|
nuclear@14
|
176 expand_bottom_edge(output_buf[ci],
|
nuclear@14
|
177 compptr->width_in_blocks * DCTSIZE,
|
nuclear@14
|
178 (int) (*out_row_group_ctr * compptr->v_samp_factor),
|
nuclear@14
|
179 (int) (out_row_groups_avail * compptr->v_samp_factor));
|
nuclear@14
|
180 }
|
nuclear@14
|
181 *out_row_group_ctr = out_row_groups_avail;
|
nuclear@14
|
182 break; /* can exit outer loop without test */
|
nuclear@14
|
183 }
|
nuclear@14
|
184 }
|
nuclear@14
|
185 }
|
nuclear@14
|
186
|
nuclear@14
|
187
|
nuclear@14
|
188 #ifdef CONTEXT_ROWS_SUPPORTED
|
nuclear@14
|
189
|
nuclear@14
|
190 /*
|
nuclear@14
|
191 * Process some data in the context case.
|
nuclear@14
|
192 */
|
nuclear@14
|
193
|
nuclear@14
|
194 METHODDEF(void)
|
nuclear@14
|
195 pre_process_context (j_compress_ptr cinfo,
|
nuclear@14
|
196 JSAMPARRAY input_buf, JDIMENSION *in_row_ctr,
|
nuclear@14
|
197 JDIMENSION in_rows_avail,
|
nuclear@14
|
198 JSAMPIMAGE output_buf, JDIMENSION *out_row_group_ctr,
|
nuclear@14
|
199 JDIMENSION out_row_groups_avail)
|
nuclear@14
|
200 {
|
nuclear@14
|
201 my_prep_ptr prep = (my_prep_ptr) cinfo->prep;
|
nuclear@14
|
202 int numrows, ci;
|
nuclear@14
|
203 int buf_height = cinfo->max_v_samp_factor * 3;
|
nuclear@14
|
204 JDIMENSION inrows;
|
nuclear@14
|
205
|
nuclear@14
|
206 while (*out_row_group_ctr < out_row_groups_avail) {
|
nuclear@14
|
207 if (*in_row_ctr < in_rows_avail) {
|
nuclear@14
|
208 /* Do color conversion to fill the conversion buffer. */
|
nuclear@14
|
209 inrows = in_rows_avail - *in_row_ctr;
|
nuclear@14
|
210 numrows = prep->next_buf_stop - prep->next_buf_row;
|
nuclear@14
|
211 numrows = (int) MIN((JDIMENSION) numrows, inrows);
|
nuclear@14
|
212 (*cinfo->cconvert->color_convert) (cinfo, input_buf + *in_row_ctr,
|
nuclear@14
|
213 prep->color_buf,
|
nuclear@14
|
214 (JDIMENSION) prep->next_buf_row,
|
nuclear@14
|
215 numrows);
|
nuclear@14
|
216 /* Pad at top of image, if first time through */
|
nuclear@14
|
217 if (prep->rows_to_go == cinfo->image_height) {
|
nuclear@14
|
218 for (ci = 0; ci < cinfo->num_components; ci++) {
|
nuclear@14
|
219 int row;
|
nuclear@14
|
220 for (row = 1; row <= cinfo->max_v_samp_factor; row++) {
|
nuclear@14
|
221 jcopy_sample_rows(prep->color_buf[ci], 0,
|
nuclear@14
|
222 prep->color_buf[ci], -row,
|
nuclear@14
|
223 1, cinfo->image_width);
|
nuclear@14
|
224 }
|
nuclear@14
|
225 }
|
nuclear@14
|
226 }
|
nuclear@14
|
227 *in_row_ctr += numrows;
|
nuclear@14
|
228 prep->next_buf_row += numrows;
|
nuclear@14
|
229 prep->rows_to_go -= numrows;
|
nuclear@14
|
230 } else {
|
nuclear@14
|
231 /* Return for more data, unless we are at the bottom of the image. */
|
nuclear@14
|
232 if (prep->rows_to_go != 0)
|
nuclear@14
|
233 break;
|
nuclear@14
|
234 /* When at bottom of image, pad to fill the conversion buffer. */
|
nuclear@14
|
235 if (prep->next_buf_row < prep->next_buf_stop) {
|
nuclear@14
|
236 for (ci = 0; ci < cinfo->num_components; ci++) {
|
nuclear@14
|
237 expand_bottom_edge(prep->color_buf[ci], cinfo->image_width,
|
nuclear@14
|
238 prep->next_buf_row, prep->next_buf_stop);
|
nuclear@14
|
239 }
|
nuclear@14
|
240 prep->next_buf_row = prep->next_buf_stop;
|
nuclear@14
|
241 }
|
nuclear@14
|
242 }
|
nuclear@14
|
243 /* If we've gotten enough data, downsample a row group. */
|
nuclear@14
|
244 if (prep->next_buf_row == prep->next_buf_stop) {
|
nuclear@14
|
245 (*cinfo->downsample->downsample) (cinfo,
|
nuclear@14
|
246 prep->color_buf,
|
nuclear@14
|
247 (JDIMENSION) prep->this_row_group,
|
nuclear@14
|
248 output_buf, *out_row_group_ctr);
|
nuclear@14
|
249 (*out_row_group_ctr)++;
|
nuclear@14
|
250 /* Advance pointers with wraparound as necessary. */
|
nuclear@14
|
251 prep->this_row_group += cinfo->max_v_samp_factor;
|
nuclear@14
|
252 if (prep->this_row_group >= buf_height)
|
nuclear@14
|
253 prep->this_row_group = 0;
|
nuclear@14
|
254 if (prep->next_buf_row >= buf_height)
|
nuclear@14
|
255 prep->next_buf_row = 0;
|
nuclear@14
|
256 prep->next_buf_stop = prep->next_buf_row + cinfo->max_v_samp_factor;
|
nuclear@14
|
257 }
|
nuclear@14
|
258 }
|
nuclear@14
|
259 }
|
nuclear@14
|
260
|
nuclear@14
|
261
|
nuclear@14
|
262 /*
|
nuclear@14
|
263 * Create the wrapped-around downsampling input buffer needed for context mode.
|
nuclear@14
|
264 */
|
nuclear@14
|
265
|
nuclear@14
|
266 LOCAL(void)
|
nuclear@14
|
267 create_context_buffer (j_compress_ptr cinfo)
|
nuclear@14
|
268 {
|
nuclear@14
|
269 my_prep_ptr prep = (my_prep_ptr) cinfo->prep;
|
nuclear@14
|
270 int rgroup_height = cinfo->max_v_samp_factor;
|
nuclear@14
|
271 int ci, i;
|
nuclear@14
|
272 jpeg_component_info * compptr;
|
nuclear@14
|
273 JSAMPARRAY true_buffer, fake_buffer;
|
nuclear@14
|
274
|
nuclear@14
|
275 /* Grab enough space for fake row pointers for all the components;
|
nuclear@14
|
276 * we need five row groups' worth of pointers for each component.
|
nuclear@14
|
277 */
|
nuclear@14
|
278 fake_buffer = (JSAMPARRAY)
|
nuclear@14
|
279 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
280 (cinfo->num_components * 5 * rgroup_height) *
|
nuclear@14
|
281 SIZEOF(JSAMPROW));
|
nuclear@14
|
282
|
nuclear@14
|
283 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
284 ci++, compptr++) {
|
nuclear@14
|
285 /* Allocate the actual buffer space (3 row groups) for this component.
|
nuclear@14
|
286 * We make the buffer wide enough to allow the downsampler to edge-expand
|
nuclear@14
|
287 * horizontally within the buffer, if it so chooses.
|
nuclear@14
|
288 */
|
nuclear@14
|
289 true_buffer = (*cinfo->mem->alloc_sarray)
|
nuclear@14
|
290 ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
291 (JDIMENSION) (((long) compptr->width_in_blocks * DCTSIZE *
|
nuclear@14
|
292 cinfo->max_h_samp_factor) / compptr->h_samp_factor),
|
nuclear@14
|
293 (JDIMENSION) (3 * rgroup_height));
|
nuclear@14
|
294 /* Copy true buffer row pointers into the middle of the fake row array */
|
nuclear@14
|
295 MEMCOPY(fake_buffer + rgroup_height, true_buffer,
|
nuclear@14
|
296 3 * rgroup_height * SIZEOF(JSAMPROW));
|
nuclear@14
|
297 /* Fill in the above and below wraparound pointers */
|
nuclear@14
|
298 for (i = 0; i < rgroup_height; i++) {
|
nuclear@14
|
299 fake_buffer[i] = true_buffer[2 * rgroup_height + i];
|
nuclear@14
|
300 fake_buffer[4 * rgroup_height + i] = true_buffer[i];
|
nuclear@14
|
301 }
|
nuclear@14
|
302 prep->color_buf[ci] = fake_buffer + rgroup_height;
|
nuclear@14
|
303 fake_buffer += 5 * rgroup_height; /* point to space for next component */
|
nuclear@14
|
304 }
|
nuclear@14
|
305 }
|
nuclear@14
|
306
|
nuclear@14
|
307 #endif /* CONTEXT_ROWS_SUPPORTED */
|
nuclear@14
|
308
|
nuclear@14
|
309
|
nuclear@14
|
310 /*
|
nuclear@14
|
311 * Initialize preprocessing controller.
|
nuclear@14
|
312 */
|
nuclear@14
|
313
|
nuclear@14
|
314 GLOBAL(void)
|
nuclear@14
|
315 jinit_c_prep_controller (j_compress_ptr cinfo, boolean need_full_buffer)
|
nuclear@14
|
316 {
|
nuclear@14
|
317 my_prep_ptr prep;
|
nuclear@14
|
318 int ci;
|
nuclear@14
|
319 jpeg_component_info * compptr;
|
nuclear@14
|
320
|
nuclear@14
|
321 if (need_full_buffer) /* safety check */
|
nuclear@14
|
322 ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
|
nuclear@14
|
323
|
nuclear@14
|
324 prep = (my_prep_ptr)
|
nuclear@14
|
325 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
326 SIZEOF(my_prep_controller));
|
nuclear@14
|
327 cinfo->prep = (struct jpeg_c_prep_controller *) prep;
|
nuclear@14
|
328 prep->pub.start_pass = start_pass_prep;
|
nuclear@14
|
329
|
nuclear@14
|
330 /* Allocate the color conversion buffer.
|
nuclear@14
|
331 * We make the buffer wide enough to allow the downsampler to edge-expand
|
nuclear@14
|
332 * horizontally within the buffer, if it so chooses.
|
nuclear@14
|
333 */
|
nuclear@14
|
334 if (cinfo->downsample->need_context_rows) {
|
nuclear@14
|
335 /* Set up to provide context rows */
|
nuclear@14
|
336 #ifdef CONTEXT_ROWS_SUPPORTED
|
nuclear@14
|
337 prep->pub.pre_process_data = pre_process_context;
|
nuclear@14
|
338 create_context_buffer(cinfo);
|
nuclear@14
|
339 #else
|
nuclear@14
|
340 ERREXIT(cinfo, JERR_NOT_COMPILED);
|
nuclear@14
|
341 #endif
|
nuclear@14
|
342 } else {
|
nuclear@14
|
343 /* No context, just make it tall enough for one row group */
|
nuclear@14
|
344 prep->pub.pre_process_data = pre_process_data;
|
nuclear@14
|
345 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
346 ci++, compptr++) {
|
nuclear@14
|
347 prep->color_buf[ci] = (*cinfo->mem->alloc_sarray)
|
nuclear@14
|
348 ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
349 (JDIMENSION) (((long) compptr->width_in_blocks * DCTSIZE *
|
nuclear@14
|
350 cinfo->max_h_samp_factor) / compptr->h_samp_factor),
|
nuclear@14
|
351 (JDIMENSION) cinfo->max_v_samp_factor);
|
nuclear@14
|
352 }
|
nuclear@14
|
353 }
|
nuclear@14
|
354 }
|