rev |
line source |
nuclear@14
|
1 /*
|
nuclear@14
|
2 * jdmainct.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 main buffer controller for decompression.
|
nuclear@14
|
9 * The main buffer lies between the JPEG decompressor proper and the
|
nuclear@14
|
10 * post-processor; it holds downsampled data in the JPEG colorspace.
|
nuclear@14
|
11 *
|
nuclear@14
|
12 * Note that this code is bypassed in raw-data mode, since the application
|
nuclear@14
|
13 * supplies the equivalent of the main buffer in that case.
|
nuclear@14
|
14 */
|
nuclear@14
|
15
|
nuclear@14
|
16 #define JPEG_INTERNALS
|
nuclear@14
|
17 #include "jinclude.h"
|
nuclear@14
|
18 #include "jpeglib.h"
|
nuclear@14
|
19
|
nuclear@14
|
20
|
nuclear@14
|
21 /*
|
nuclear@14
|
22 * In the current system design, the main buffer need never be a full-image
|
nuclear@14
|
23 * buffer; any full-height buffers will be found inside the coefficient or
|
nuclear@14
|
24 * postprocessing controllers. Nonetheless, the main controller is not
|
nuclear@14
|
25 * trivial. Its responsibility is to provide context rows for upsampling/
|
nuclear@14
|
26 * rescaling, and doing this in an efficient fashion is a bit tricky.
|
nuclear@14
|
27 *
|
nuclear@14
|
28 * Postprocessor input data is counted in "row groups". A row group
|
nuclear@14
|
29 * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size)
|
nuclear@14
|
30 * sample rows of each component. (We require DCT_scaled_size values to be
|
nuclear@14
|
31 * chosen such that these numbers are integers. In practice DCT_scaled_size
|
nuclear@14
|
32 * values will likely be powers of two, so we actually have the stronger
|
nuclear@14
|
33 * condition that DCT_scaled_size / min_DCT_scaled_size is an integer.)
|
nuclear@14
|
34 * Upsampling will typically produce max_v_samp_factor pixel rows from each
|
nuclear@14
|
35 * row group (times any additional scale factor that the upsampler is
|
nuclear@14
|
36 * applying).
|
nuclear@14
|
37 *
|
nuclear@14
|
38 * The coefficient controller will deliver data to us one iMCU row at a time;
|
nuclear@14
|
39 * each iMCU row contains v_samp_factor * DCT_scaled_size sample rows, or
|
nuclear@14
|
40 * exactly min_DCT_scaled_size row groups. (This amount of data corresponds
|
nuclear@14
|
41 * to one row of MCUs when the image is fully interleaved.) Note that the
|
nuclear@14
|
42 * number of sample rows varies across components, but the number of row
|
nuclear@14
|
43 * groups does not. Some garbage sample rows may be included in the last iMCU
|
nuclear@14
|
44 * row at the bottom of the image.
|
nuclear@14
|
45 *
|
nuclear@14
|
46 * Depending on the vertical scaling algorithm used, the upsampler may need
|
nuclear@14
|
47 * access to the sample row(s) above and below its current input row group.
|
nuclear@14
|
48 * The upsampler is required to set need_context_rows TRUE at global selection
|
nuclear@14
|
49 * time if so. When need_context_rows is FALSE, this controller can simply
|
nuclear@14
|
50 * obtain one iMCU row at a time from the coefficient controller and dole it
|
nuclear@14
|
51 * out as row groups to the postprocessor.
|
nuclear@14
|
52 *
|
nuclear@14
|
53 * When need_context_rows is TRUE, this controller guarantees that the buffer
|
nuclear@14
|
54 * passed to postprocessing contains at least one row group's worth of samples
|
nuclear@14
|
55 * above and below the row group(s) being processed. Note that the context
|
nuclear@14
|
56 * rows "above" the first passed row group appear at negative row offsets in
|
nuclear@14
|
57 * the passed buffer. At the top and bottom of the image, the required
|
nuclear@14
|
58 * context rows are manufactured by duplicating the first or last real sample
|
nuclear@14
|
59 * row; this avoids having special cases in the upsampling inner loops.
|
nuclear@14
|
60 *
|
nuclear@14
|
61 * The amount of context is fixed at one row group just because that's a
|
nuclear@14
|
62 * convenient number for this controller to work with. The existing
|
nuclear@14
|
63 * upsamplers really only need one sample row of context. An upsampler
|
nuclear@14
|
64 * supporting arbitrary output rescaling might wish for more than one row
|
nuclear@14
|
65 * group of context when shrinking the image; tough, we don't handle that.
|
nuclear@14
|
66 * (This is justified by the assumption that downsizing will be handled mostly
|
nuclear@14
|
67 * by adjusting the DCT_scaled_size values, so that the actual scale factor at
|
nuclear@14
|
68 * the upsample step needn't be much less than one.)
|
nuclear@14
|
69 *
|
nuclear@14
|
70 * To provide the desired context, we have to retain the last two row groups
|
nuclear@14
|
71 * of one iMCU row while reading in the next iMCU row. (The last row group
|
nuclear@14
|
72 * can't be processed until we have another row group for its below-context,
|
nuclear@14
|
73 * and so we have to save the next-to-last group too for its above-context.)
|
nuclear@14
|
74 * We could do this most simply by copying data around in our buffer, but
|
nuclear@14
|
75 * that'd be very slow. We can avoid copying any data by creating a rather
|
nuclear@14
|
76 * strange pointer structure. Here's how it works. We allocate a workspace
|
nuclear@14
|
77 * consisting of M+2 row groups (where M = min_DCT_scaled_size is the number
|
nuclear@14
|
78 * of row groups per iMCU row). We create two sets of redundant pointers to
|
nuclear@14
|
79 * the workspace. Labeling the physical row groups 0 to M+1, the synthesized
|
nuclear@14
|
80 * pointer lists look like this:
|
nuclear@14
|
81 * M+1 M-1
|
nuclear@14
|
82 * master pointer --> 0 master pointer --> 0
|
nuclear@14
|
83 * 1 1
|
nuclear@14
|
84 * ... ...
|
nuclear@14
|
85 * M-3 M-3
|
nuclear@14
|
86 * M-2 M
|
nuclear@14
|
87 * M-1 M+1
|
nuclear@14
|
88 * M M-2
|
nuclear@14
|
89 * M+1 M-1
|
nuclear@14
|
90 * 0 0
|
nuclear@14
|
91 * We read alternate iMCU rows using each master pointer; thus the last two
|
nuclear@14
|
92 * row groups of the previous iMCU row remain un-overwritten in the workspace.
|
nuclear@14
|
93 * The pointer lists are set up so that the required context rows appear to
|
nuclear@14
|
94 * be adjacent to the proper places when we pass the pointer lists to the
|
nuclear@14
|
95 * upsampler.
|
nuclear@14
|
96 *
|
nuclear@14
|
97 * The above pictures describe the normal state of the pointer lists.
|
nuclear@14
|
98 * At top and bottom of the image, we diddle the pointer lists to duplicate
|
nuclear@14
|
99 * the first or last sample row as necessary (this is cheaper than copying
|
nuclear@14
|
100 * sample rows around).
|
nuclear@14
|
101 *
|
nuclear@14
|
102 * This scheme breaks down if M < 2, ie, min_DCT_scaled_size is 1. In that
|
nuclear@14
|
103 * situation each iMCU row provides only one row group so the buffering logic
|
nuclear@14
|
104 * must be different (eg, we must read two iMCU rows before we can emit the
|
nuclear@14
|
105 * first row group). For now, we simply do not support providing context
|
nuclear@14
|
106 * rows when min_DCT_scaled_size is 1. That combination seems unlikely to
|
nuclear@14
|
107 * be worth providing --- if someone wants a 1/8th-size preview, they probably
|
nuclear@14
|
108 * want it quick and dirty, so a context-free upsampler is sufficient.
|
nuclear@14
|
109 */
|
nuclear@14
|
110
|
nuclear@14
|
111
|
nuclear@14
|
112 /* Private buffer controller object */
|
nuclear@14
|
113
|
nuclear@14
|
114 typedef struct {
|
nuclear@14
|
115 struct jpeg_d_main_controller pub; /* public fields */
|
nuclear@14
|
116
|
nuclear@14
|
117 /* Pointer to allocated workspace (M or M+2 row groups). */
|
nuclear@14
|
118 JSAMPARRAY buffer[MAX_COMPONENTS];
|
nuclear@14
|
119
|
nuclear@14
|
120 boolean buffer_full; /* Have we gotten an iMCU row from decoder? */
|
nuclear@14
|
121 JDIMENSION rowgroup_ctr; /* counts row groups output to postprocessor */
|
nuclear@14
|
122
|
nuclear@14
|
123 /* Remaining fields are only used in the context case. */
|
nuclear@14
|
124
|
nuclear@14
|
125 /* These are the master pointers to the funny-order pointer lists. */
|
nuclear@14
|
126 JSAMPIMAGE xbuffer[2]; /* pointers to weird pointer lists */
|
nuclear@14
|
127
|
nuclear@14
|
128 int whichptr; /* indicates which pointer set is now in use */
|
nuclear@14
|
129 int context_state; /* process_data state machine status */
|
nuclear@14
|
130 JDIMENSION rowgroups_avail; /* row groups available to postprocessor */
|
nuclear@14
|
131 JDIMENSION iMCU_row_ctr; /* counts iMCU rows to detect image top/bot */
|
nuclear@14
|
132 } my_main_controller;
|
nuclear@14
|
133
|
nuclear@14
|
134 typedef my_main_controller * my_main_ptr;
|
nuclear@14
|
135
|
nuclear@14
|
136 /* context_state values: */
|
nuclear@14
|
137 #define CTX_PREPARE_FOR_IMCU 0 /* need to prepare for MCU row */
|
nuclear@14
|
138 #define CTX_PROCESS_IMCU 1 /* feeding iMCU to postprocessor */
|
nuclear@14
|
139 #define CTX_POSTPONED_ROW 2 /* feeding postponed row group */
|
nuclear@14
|
140
|
nuclear@14
|
141
|
nuclear@14
|
142 /* Forward declarations */
|
nuclear@14
|
143 METHODDEF(void) process_data_simple_main
|
nuclear@14
|
144 JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
|
nuclear@14
|
145 JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
|
nuclear@14
|
146 METHODDEF(void) process_data_context_main
|
nuclear@14
|
147 JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
|
nuclear@14
|
148 JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
|
nuclear@14
|
149 #ifdef QUANT_2PASS_SUPPORTED
|
nuclear@14
|
150 METHODDEF(void) process_data_crank_post
|
nuclear@14
|
151 JPP((j_decompress_ptr cinfo, JSAMPARRAY output_buf,
|
nuclear@14
|
152 JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail));
|
nuclear@14
|
153 #endif
|
nuclear@14
|
154
|
nuclear@14
|
155
|
nuclear@14
|
156 LOCAL(void)
|
nuclear@14
|
157 alloc_funny_pointers (j_decompress_ptr cinfo)
|
nuclear@14
|
158 /* Allocate space for the funny pointer lists.
|
nuclear@14
|
159 * This is done only once, not once per pass.
|
nuclear@14
|
160 */
|
nuclear@14
|
161 {
|
nuclear@14
|
162 my_main_ptr main = (my_main_ptr) cinfo->main;
|
nuclear@14
|
163 int ci, rgroup;
|
nuclear@14
|
164 int M = cinfo->min_DCT_scaled_size;
|
nuclear@14
|
165 jpeg_component_info *compptr;
|
nuclear@14
|
166 JSAMPARRAY xbuf;
|
nuclear@14
|
167
|
nuclear@14
|
168 /* Get top-level space for component array pointers.
|
nuclear@14
|
169 * We alloc both arrays with one call to save a few cycles.
|
nuclear@14
|
170 */
|
nuclear@14
|
171 main->xbuffer[0] = (JSAMPIMAGE)
|
nuclear@14
|
172 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
173 cinfo->num_components * 2 * SIZEOF(JSAMPARRAY));
|
nuclear@14
|
174 main->xbuffer[1] = main->xbuffer[0] + cinfo->num_components;
|
nuclear@14
|
175
|
nuclear@14
|
176 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
177 ci++, compptr++) {
|
nuclear@14
|
178 rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
|
nuclear@14
|
179 cinfo->min_DCT_scaled_size; /* height of a row group of component */
|
nuclear@14
|
180 /* Get space for pointer lists --- M+4 row groups in each list.
|
nuclear@14
|
181 * We alloc both pointer lists with one call to save a few cycles.
|
nuclear@14
|
182 */
|
nuclear@14
|
183 xbuf = (JSAMPARRAY)
|
nuclear@14
|
184 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
185 2 * (rgroup * (M + 4)) * SIZEOF(JSAMPROW));
|
nuclear@14
|
186 xbuf += rgroup; /* want one row group at negative offsets */
|
nuclear@14
|
187 main->xbuffer[0][ci] = xbuf;
|
nuclear@14
|
188 xbuf += rgroup * (M + 4);
|
nuclear@14
|
189 main->xbuffer[1][ci] = xbuf;
|
nuclear@14
|
190 }
|
nuclear@14
|
191 }
|
nuclear@14
|
192
|
nuclear@14
|
193
|
nuclear@14
|
194 LOCAL(void)
|
nuclear@14
|
195 make_funny_pointers (j_decompress_ptr cinfo)
|
nuclear@14
|
196 /* Create the funny pointer lists discussed in the comments above.
|
nuclear@14
|
197 * The actual workspace is already allocated (in main->buffer),
|
nuclear@14
|
198 * and the space for the pointer lists is allocated too.
|
nuclear@14
|
199 * This routine just fills in the curiously ordered lists.
|
nuclear@14
|
200 * This will be repeated at the beginning of each pass.
|
nuclear@14
|
201 */
|
nuclear@14
|
202 {
|
nuclear@14
|
203 my_main_ptr main = (my_main_ptr) cinfo->main;
|
nuclear@14
|
204 int ci, i, rgroup;
|
nuclear@14
|
205 int M = cinfo->min_DCT_scaled_size;
|
nuclear@14
|
206 jpeg_component_info *compptr;
|
nuclear@14
|
207 JSAMPARRAY buf, xbuf0, xbuf1;
|
nuclear@14
|
208
|
nuclear@14
|
209 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
210 ci++, compptr++) {
|
nuclear@14
|
211 rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
|
nuclear@14
|
212 cinfo->min_DCT_scaled_size; /* height of a row group of component */
|
nuclear@14
|
213 xbuf0 = main->xbuffer[0][ci];
|
nuclear@14
|
214 xbuf1 = main->xbuffer[1][ci];
|
nuclear@14
|
215 /* First copy the workspace pointers as-is */
|
nuclear@14
|
216 buf = main->buffer[ci];
|
nuclear@14
|
217 for (i = 0; i < rgroup * (M + 2); i++) {
|
nuclear@14
|
218 xbuf0[i] = xbuf1[i] = buf[i];
|
nuclear@14
|
219 }
|
nuclear@14
|
220 /* In the second list, put the last four row groups in swapped order */
|
nuclear@14
|
221 for (i = 0; i < rgroup * 2; i++) {
|
nuclear@14
|
222 xbuf1[rgroup*(M-2) + i] = buf[rgroup*M + i];
|
nuclear@14
|
223 xbuf1[rgroup*M + i] = buf[rgroup*(M-2) + i];
|
nuclear@14
|
224 }
|
nuclear@14
|
225 /* The wraparound pointers at top and bottom will be filled later
|
nuclear@14
|
226 * (see set_wraparound_pointers, below). Initially we want the "above"
|
nuclear@14
|
227 * pointers to duplicate the first actual data line. This only needs
|
nuclear@14
|
228 * to happen in xbuffer[0].
|
nuclear@14
|
229 */
|
nuclear@14
|
230 for (i = 0; i < rgroup; i++) {
|
nuclear@14
|
231 xbuf0[i - rgroup] = xbuf0[0];
|
nuclear@14
|
232 }
|
nuclear@14
|
233 }
|
nuclear@14
|
234 }
|
nuclear@14
|
235
|
nuclear@14
|
236
|
nuclear@14
|
237 LOCAL(void)
|
nuclear@14
|
238 set_wraparound_pointers (j_decompress_ptr cinfo)
|
nuclear@14
|
239 /* Set up the "wraparound" pointers at top and bottom of the pointer lists.
|
nuclear@14
|
240 * This changes the pointer list state from top-of-image to the normal state.
|
nuclear@14
|
241 */
|
nuclear@14
|
242 {
|
nuclear@14
|
243 my_main_ptr main = (my_main_ptr) cinfo->main;
|
nuclear@14
|
244 int ci, i, rgroup;
|
nuclear@14
|
245 int M = cinfo->min_DCT_scaled_size;
|
nuclear@14
|
246 jpeg_component_info *compptr;
|
nuclear@14
|
247 JSAMPARRAY xbuf0, xbuf1;
|
nuclear@14
|
248
|
nuclear@14
|
249 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
250 ci++, compptr++) {
|
nuclear@14
|
251 rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
|
nuclear@14
|
252 cinfo->min_DCT_scaled_size; /* height of a row group of component */
|
nuclear@14
|
253 xbuf0 = main->xbuffer[0][ci];
|
nuclear@14
|
254 xbuf1 = main->xbuffer[1][ci];
|
nuclear@14
|
255 for (i = 0; i < rgroup; i++) {
|
nuclear@14
|
256 xbuf0[i - rgroup] = xbuf0[rgroup*(M+1) + i];
|
nuclear@14
|
257 xbuf1[i - rgroup] = xbuf1[rgroup*(M+1) + i];
|
nuclear@14
|
258 xbuf0[rgroup*(M+2) + i] = xbuf0[i];
|
nuclear@14
|
259 xbuf1[rgroup*(M+2) + i] = xbuf1[i];
|
nuclear@14
|
260 }
|
nuclear@14
|
261 }
|
nuclear@14
|
262 }
|
nuclear@14
|
263
|
nuclear@14
|
264
|
nuclear@14
|
265 LOCAL(void)
|
nuclear@14
|
266 set_bottom_pointers (j_decompress_ptr cinfo)
|
nuclear@14
|
267 /* Change the pointer lists to duplicate the last sample row at the bottom
|
nuclear@14
|
268 * of the image. whichptr indicates which xbuffer holds the final iMCU row.
|
nuclear@14
|
269 * Also sets rowgroups_avail to indicate number of nondummy row groups in row.
|
nuclear@14
|
270 */
|
nuclear@14
|
271 {
|
nuclear@14
|
272 my_main_ptr main = (my_main_ptr) cinfo->main;
|
nuclear@14
|
273 int ci, i, rgroup, iMCUheight, rows_left;
|
nuclear@14
|
274 jpeg_component_info *compptr;
|
nuclear@14
|
275 JSAMPARRAY xbuf;
|
nuclear@14
|
276
|
nuclear@14
|
277 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
278 ci++, compptr++) {
|
nuclear@14
|
279 /* Count sample rows in one iMCU row and in one row group */
|
nuclear@14
|
280 iMCUheight = compptr->v_samp_factor * compptr->DCT_scaled_size;
|
nuclear@14
|
281 rgroup = iMCUheight / cinfo->min_DCT_scaled_size;
|
nuclear@14
|
282 /* Count nondummy sample rows remaining for this component */
|
nuclear@14
|
283 rows_left = (int) (compptr->downsampled_height % (JDIMENSION) iMCUheight);
|
nuclear@14
|
284 if (rows_left == 0) rows_left = iMCUheight;
|
nuclear@14
|
285 /* Count nondummy row groups. Should get same answer for each component,
|
nuclear@14
|
286 * so we need only do it once.
|
nuclear@14
|
287 */
|
nuclear@14
|
288 if (ci == 0) {
|
nuclear@14
|
289 main->rowgroups_avail = (JDIMENSION) ((rows_left-1) / rgroup + 1);
|
nuclear@14
|
290 }
|
nuclear@14
|
291 /* Duplicate the last real sample row rgroup*2 times; this pads out the
|
nuclear@14
|
292 * last partial rowgroup and ensures at least one full rowgroup of context.
|
nuclear@14
|
293 */
|
nuclear@14
|
294 xbuf = main->xbuffer[main->whichptr][ci];
|
nuclear@14
|
295 for (i = 0; i < rgroup * 2; i++) {
|
nuclear@14
|
296 xbuf[rows_left + i] = xbuf[rows_left-1];
|
nuclear@14
|
297 }
|
nuclear@14
|
298 }
|
nuclear@14
|
299 }
|
nuclear@14
|
300
|
nuclear@14
|
301
|
nuclear@14
|
302 /*
|
nuclear@14
|
303 * Initialize for a processing pass.
|
nuclear@14
|
304 */
|
nuclear@14
|
305
|
nuclear@14
|
306 METHODDEF(void)
|
nuclear@14
|
307 start_pass_main (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)
|
nuclear@14
|
308 {
|
nuclear@14
|
309 my_main_ptr main = (my_main_ptr) cinfo->main;
|
nuclear@14
|
310
|
nuclear@14
|
311 switch (pass_mode) {
|
nuclear@14
|
312 case JBUF_PASS_THRU:
|
nuclear@14
|
313 if (cinfo->upsample->need_context_rows) {
|
nuclear@14
|
314 main->pub.process_data = process_data_context_main;
|
nuclear@14
|
315 make_funny_pointers(cinfo); /* Create the xbuffer[] lists */
|
nuclear@14
|
316 main->whichptr = 0; /* Read first iMCU row into xbuffer[0] */
|
nuclear@14
|
317 main->context_state = CTX_PREPARE_FOR_IMCU;
|
nuclear@14
|
318 main->iMCU_row_ctr = 0;
|
nuclear@14
|
319 } else {
|
nuclear@14
|
320 /* Simple case with no context needed */
|
nuclear@14
|
321 main->pub.process_data = process_data_simple_main;
|
nuclear@14
|
322 }
|
nuclear@14
|
323 main->buffer_full = FALSE; /* Mark buffer empty */
|
nuclear@14
|
324 main->rowgroup_ctr = 0;
|
nuclear@14
|
325 break;
|
nuclear@14
|
326 #ifdef QUANT_2PASS_SUPPORTED
|
nuclear@14
|
327 case JBUF_CRANK_DEST:
|
nuclear@14
|
328 /* For last pass of 2-pass quantization, just crank the postprocessor */
|
nuclear@14
|
329 main->pub.process_data = process_data_crank_post;
|
nuclear@14
|
330 break;
|
nuclear@14
|
331 #endif
|
nuclear@14
|
332 default:
|
nuclear@14
|
333 ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
|
nuclear@14
|
334 break;
|
nuclear@14
|
335 }
|
nuclear@14
|
336 }
|
nuclear@14
|
337
|
nuclear@14
|
338
|
nuclear@14
|
339 /*
|
nuclear@14
|
340 * Process some data.
|
nuclear@14
|
341 * This handles the simple case where no context is required.
|
nuclear@14
|
342 */
|
nuclear@14
|
343
|
nuclear@14
|
344 METHODDEF(void)
|
nuclear@14
|
345 process_data_simple_main (j_decompress_ptr cinfo,
|
nuclear@14
|
346 JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
|
nuclear@14
|
347 JDIMENSION out_rows_avail)
|
nuclear@14
|
348 {
|
nuclear@14
|
349 my_main_ptr main = (my_main_ptr) cinfo->main;
|
nuclear@14
|
350 JDIMENSION rowgroups_avail;
|
nuclear@14
|
351
|
nuclear@14
|
352 /* Read input data if we haven't filled the main buffer yet */
|
nuclear@14
|
353 if (! main->buffer_full) {
|
nuclear@14
|
354 if (! (*cinfo->coef->decompress_data) (cinfo, main->buffer))
|
nuclear@14
|
355 return; /* suspension forced, can do nothing more */
|
nuclear@14
|
356 main->buffer_full = TRUE; /* OK, we have an iMCU row to work with */
|
nuclear@14
|
357 }
|
nuclear@14
|
358
|
nuclear@14
|
359 /* There are always min_DCT_scaled_size row groups in an iMCU row. */
|
nuclear@14
|
360 rowgroups_avail = (JDIMENSION) cinfo->min_DCT_scaled_size;
|
nuclear@14
|
361 /* Note: at the bottom of the image, we may pass extra garbage row groups
|
nuclear@14
|
362 * to the postprocessor. The postprocessor has to check for bottom
|
nuclear@14
|
363 * of image anyway (at row resolution), so no point in us doing it too.
|
nuclear@14
|
364 */
|
nuclear@14
|
365
|
nuclear@14
|
366 /* Feed the postprocessor */
|
nuclear@14
|
367 (*cinfo->post->post_process_data) (cinfo, main->buffer,
|
nuclear@14
|
368 &main->rowgroup_ctr, rowgroups_avail,
|
nuclear@14
|
369 output_buf, out_row_ctr, out_rows_avail);
|
nuclear@14
|
370
|
nuclear@14
|
371 /* Has postprocessor consumed all the data yet? If so, mark buffer empty */
|
nuclear@14
|
372 if (main->rowgroup_ctr >= rowgroups_avail) {
|
nuclear@14
|
373 main->buffer_full = FALSE;
|
nuclear@14
|
374 main->rowgroup_ctr = 0;
|
nuclear@14
|
375 }
|
nuclear@14
|
376 }
|
nuclear@14
|
377
|
nuclear@14
|
378
|
nuclear@14
|
379 /*
|
nuclear@14
|
380 * Process some data.
|
nuclear@14
|
381 * This handles the case where context rows must be provided.
|
nuclear@14
|
382 */
|
nuclear@14
|
383
|
nuclear@14
|
384 METHODDEF(void)
|
nuclear@14
|
385 process_data_context_main (j_decompress_ptr cinfo,
|
nuclear@14
|
386 JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
|
nuclear@14
|
387 JDIMENSION out_rows_avail)
|
nuclear@14
|
388 {
|
nuclear@14
|
389 my_main_ptr main = (my_main_ptr) cinfo->main;
|
nuclear@14
|
390
|
nuclear@14
|
391 /* Read input data if we haven't filled the main buffer yet */
|
nuclear@14
|
392 if (! main->buffer_full) {
|
nuclear@14
|
393 if (! (*cinfo->coef->decompress_data) (cinfo,
|
nuclear@14
|
394 main->xbuffer[main->whichptr]))
|
nuclear@14
|
395 return; /* suspension forced, can do nothing more */
|
nuclear@14
|
396 main->buffer_full = TRUE; /* OK, we have an iMCU row to work with */
|
nuclear@14
|
397 main->iMCU_row_ctr++; /* count rows received */
|
nuclear@14
|
398 }
|
nuclear@14
|
399
|
nuclear@14
|
400 /* Postprocessor typically will not swallow all the input data it is handed
|
nuclear@14
|
401 * in one call (due to filling the output buffer first). Must be prepared
|
nuclear@14
|
402 * to exit and restart. This switch lets us keep track of how far we got.
|
nuclear@14
|
403 * Note that each case falls through to the next on successful completion.
|
nuclear@14
|
404 */
|
nuclear@14
|
405 switch (main->context_state) {
|
nuclear@14
|
406 case CTX_POSTPONED_ROW:
|
nuclear@14
|
407 /* Call postprocessor using previously set pointers for postponed row */
|
nuclear@14
|
408 (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr],
|
nuclear@14
|
409 &main->rowgroup_ctr, main->rowgroups_avail,
|
nuclear@14
|
410 output_buf, out_row_ctr, out_rows_avail);
|
nuclear@14
|
411 if (main->rowgroup_ctr < main->rowgroups_avail)
|
nuclear@14
|
412 return; /* Need to suspend */
|
nuclear@14
|
413 main->context_state = CTX_PREPARE_FOR_IMCU;
|
nuclear@14
|
414 if (*out_row_ctr >= out_rows_avail)
|
nuclear@14
|
415 return; /* Postprocessor exactly filled output buf */
|
nuclear@14
|
416 /*FALLTHROUGH*/
|
nuclear@14
|
417 case CTX_PREPARE_FOR_IMCU:
|
nuclear@14
|
418 /* Prepare to process first M-1 row groups of this iMCU row */
|
nuclear@14
|
419 main->rowgroup_ctr = 0;
|
nuclear@14
|
420 main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size - 1);
|
nuclear@14
|
421 /* Check for bottom of image: if so, tweak pointers to "duplicate"
|
nuclear@14
|
422 * the last sample row, and adjust rowgroups_avail to ignore padding rows.
|
nuclear@14
|
423 */
|
nuclear@14
|
424 if (main->iMCU_row_ctr == cinfo->total_iMCU_rows)
|
nuclear@14
|
425 set_bottom_pointers(cinfo);
|
nuclear@14
|
426 main->context_state = CTX_PROCESS_IMCU;
|
nuclear@14
|
427 /*FALLTHROUGH*/
|
nuclear@14
|
428 case CTX_PROCESS_IMCU:
|
nuclear@14
|
429 /* Call postprocessor using previously set pointers */
|
nuclear@14
|
430 (*cinfo->post->post_process_data) (cinfo, main->xbuffer[main->whichptr],
|
nuclear@14
|
431 &main->rowgroup_ctr, main->rowgroups_avail,
|
nuclear@14
|
432 output_buf, out_row_ctr, out_rows_avail);
|
nuclear@14
|
433 if (main->rowgroup_ctr < main->rowgroups_avail)
|
nuclear@14
|
434 return; /* Need to suspend */
|
nuclear@14
|
435 /* After the first iMCU, change wraparound pointers to normal state */
|
nuclear@14
|
436 if (main->iMCU_row_ctr == 1)
|
nuclear@14
|
437 set_wraparound_pointers(cinfo);
|
nuclear@14
|
438 /* Prepare to load new iMCU row using other xbuffer list */
|
nuclear@14
|
439 main->whichptr ^= 1; /* 0=>1 or 1=>0 */
|
nuclear@14
|
440 main->buffer_full = FALSE;
|
nuclear@14
|
441 /* Still need to process last row group of this iMCU row, */
|
nuclear@14
|
442 /* which is saved at index M+1 of the other xbuffer */
|
nuclear@14
|
443 main->rowgroup_ctr = (JDIMENSION) (cinfo->min_DCT_scaled_size + 1);
|
nuclear@14
|
444 main->rowgroups_avail = (JDIMENSION) (cinfo->min_DCT_scaled_size + 2);
|
nuclear@14
|
445 main->context_state = CTX_POSTPONED_ROW;
|
nuclear@14
|
446 }
|
nuclear@14
|
447 }
|
nuclear@14
|
448
|
nuclear@14
|
449
|
nuclear@14
|
450 /*
|
nuclear@14
|
451 * Process some data.
|
nuclear@14
|
452 * Final pass of two-pass quantization: just call the postprocessor.
|
nuclear@14
|
453 * Source data will be the postprocessor controller's internal buffer.
|
nuclear@14
|
454 */
|
nuclear@14
|
455
|
nuclear@14
|
456 #ifdef QUANT_2PASS_SUPPORTED
|
nuclear@14
|
457
|
nuclear@14
|
458 METHODDEF(void)
|
nuclear@14
|
459 process_data_crank_post (j_decompress_ptr cinfo,
|
nuclear@14
|
460 JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
|
nuclear@14
|
461 JDIMENSION out_rows_avail)
|
nuclear@14
|
462 {
|
nuclear@14
|
463 (*cinfo->post->post_process_data) (cinfo, (JSAMPIMAGE) NULL,
|
nuclear@14
|
464 (JDIMENSION *) NULL, (JDIMENSION) 0,
|
nuclear@14
|
465 output_buf, out_row_ctr, out_rows_avail);
|
nuclear@14
|
466 }
|
nuclear@14
|
467
|
nuclear@14
|
468 #endif /* QUANT_2PASS_SUPPORTED */
|
nuclear@14
|
469
|
nuclear@14
|
470
|
nuclear@14
|
471 /*
|
nuclear@14
|
472 * Initialize main buffer controller.
|
nuclear@14
|
473 */
|
nuclear@14
|
474
|
nuclear@14
|
475 GLOBAL(void)
|
nuclear@14
|
476 jinit_d_main_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
|
nuclear@14
|
477 {
|
nuclear@14
|
478 my_main_ptr main;
|
nuclear@14
|
479 int ci, rgroup, ngroups;
|
nuclear@14
|
480 jpeg_component_info *compptr;
|
nuclear@14
|
481
|
nuclear@14
|
482 main = (my_main_ptr)
|
nuclear@14
|
483 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
484 SIZEOF(my_main_controller));
|
nuclear@14
|
485 cinfo->main = (struct jpeg_d_main_controller *) main;
|
nuclear@14
|
486 main->pub.start_pass = start_pass_main;
|
nuclear@14
|
487
|
nuclear@14
|
488 if (need_full_buffer) /* shouldn't happen */
|
nuclear@14
|
489 ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
|
nuclear@14
|
490
|
nuclear@14
|
491 /* Allocate the workspace.
|
nuclear@14
|
492 * ngroups is the number of row groups we need.
|
nuclear@14
|
493 */
|
nuclear@14
|
494 if (cinfo->upsample->need_context_rows) {
|
nuclear@14
|
495 if (cinfo->min_DCT_scaled_size < 2) /* unsupported, see comments above */
|
nuclear@14
|
496 ERREXIT(cinfo, JERR_NOTIMPL);
|
nuclear@14
|
497 alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */
|
nuclear@14
|
498 ngroups = cinfo->min_DCT_scaled_size + 2;
|
nuclear@14
|
499 } else {
|
nuclear@14
|
500 ngroups = cinfo->min_DCT_scaled_size;
|
nuclear@14
|
501 }
|
nuclear@14
|
502
|
nuclear@14
|
503 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
|
nuclear@14
|
504 ci++, compptr++) {
|
nuclear@14
|
505 rgroup = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
|
nuclear@14
|
506 cinfo->min_DCT_scaled_size; /* height of a row group of component */
|
nuclear@14
|
507 main->buffer[ci] = (*cinfo->mem->alloc_sarray)
|
nuclear@14
|
508 ((j_common_ptr) cinfo, JPOOL_IMAGE,
|
nuclear@14
|
509 compptr->width_in_blocks * compptr->DCT_scaled_size,
|
nuclear@14
|
510 (JDIMENSION) (rgroup * ngroups));
|
nuclear@14
|
511 }
|
nuclear@14
|
512 }
|