blob: 5c314168d8ecc5e8496de734072d63bbe7eb9188 [file] [log] [blame]
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001/*
2 * transupp.c
3 *
Guido Vollbeding5996a252009-06-27 00:00:00 +00004 * Copyright (C) 1997-2009, Thomas G. Lane, Guido Vollbeding.
DRCc04bd3c2010-10-10 02:15:56 +00005 * Copyright (C) 2010, D. R. Commander.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00006 * This file is part of the Independent JPEG Group's software.
7 * For conditions of distribution and use, see the accompanying README file.
8 *
9 * This file contains image transformation routines and other utility code
10 * used by the jpegtran sample application. These are NOT part of the core
11 * JPEG library. But we keep these routines separate from jpegtran.c to
12 * ease the task of maintaining jpegtran-like programs that have other user
13 * interfaces.
14 */
15
16/* Although this file really shouldn't have access to the library internals,
17 * it's helpful to let it call jround_up() and jcopy_block_row().
18 */
19#define JPEG_INTERNALS
20
21#include "jinclude.h"
22#include "jpeglib.h"
23#include "transupp.h" /* My own external interface */
DRCc04bd3c2010-10-10 02:15:56 +000024#include "jpegcomp.h"
Guido Vollbeding5996a252009-06-27 00:00:00 +000025#include <ctype.h> /* to declare isdigit() */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000026
27
DRCc04bd3c2010-10-10 02:15:56 +000028#if JPEG_LIB_VERSION >= 70
29#define dstinfo_min_DCT_h_scaled_size dstinfo->min_DCT_h_scaled_size
30#define dstinfo_min_DCT_v_scaled_size dstinfo->min_DCT_v_scaled_size
31#else
32#define dstinfo_min_DCT_h_scaled_size DCTSIZE
33#define dstinfo_min_DCT_v_scaled_size DCTSIZE
34#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000035
36
37#if TRANSFORMS_SUPPORTED
38
39/*
40 * Lossless image transformation routines. These routines work on DCT
41 * coefficient arrays and thus do not require any lossy decompression
42 * or recompression of the image.
Guido Vollbeding5996a252009-06-27 00:00:00 +000043 * Thanks to Guido Vollbeding for the initial design and code of this feature,
44 * and to Ben Jackson for introducing the cropping feature.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000045 *
46 * Horizontal flipping is done in-place, using a single top-to-bottom
47 * pass through the virtual source array. It will thus be much the
48 * fastest option for images larger than main memory.
49 *
50 * The other routines require a set of destination virtual arrays, so they
51 * need twice as much memory as jpegtran normally does. The destination
52 * arrays are always written in normal scan order (top to bottom) because
53 * the virtual array manager expects this. The source arrays will be scanned
54 * in the corresponding order, which means multiple passes through the source
55 * arrays for most of the transforms. That could result in much thrashing
56 * if the image is larger than main memory.
57 *
Guido Vollbeding5996a252009-06-27 00:00:00 +000058 * If cropping or trimming is involved, the destination arrays may be smaller
59 * than the source arrays. Note it is not possible to do horizontal flip
60 * in-place when a nonzero Y crop offset is specified, since we'd have to move
61 * data from one block row to another but the virtual array manager doesn't
62 * guarantee we can touch more than one row at a time. So in that case,
63 * we have to use a separate destination array.
64 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000065 * Some notes about the operating environment of the individual transform
66 * routines:
67 * 1. Both the source and destination virtual arrays are allocated from the
68 * source JPEG object, and therefore should be manipulated by calling the
69 * source's memory manager.
70 * 2. The destination's component count should be used. It may be smaller
71 * than the source's when forcing to grayscale.
72 * 3. Likewise the destination's sampling factors should be used. When
73 * forcing to grayscale the destination's sampling factors will be all 1,
74 * and we may as well take that as the effective iMCU size.
75 * 4. When "trim" is in effect, the destination's dimensions will be the
76 * trimmed values but the source's will be untrimmed.
Guido Vollbeding5996a252009-06-27 00:00:00 +000077 * 5. When "crop" is in effect, the destination's dimensions will be the
78 * cropped values but the source's will be uncropped. Each transform
79 * routine is responsible for picking up source data starting at the
80 * correct X and Y offset for the crop region. (The X and Y offsets
81 * passed to the transform routines are measured in iMCU blocks of the
82 * destination.)
83 * 6. All the routines assume that the source and destination buffers are
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000084 * padded out to a full iMCU boundary. This is true, although for the
85 * source buffer it is an undocumented property of jdcoefct.c.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000086 */
87
88
89LOCAL(void)
Guido Vollbeding5996a252009-06-27 00:00:00 +000090do_crop (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
91 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
92 jvirt_barray_ptr *src_coef_arrays,
93 jvirt_barray_ptr *dst_coef_arrays)
94/* Crop. This is only used when no rotate/flip is requested with the crop. */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000095{
Guido Vollbeding5996a252009-06-27 00:00:00 +000096 JDIMENSION dst_blk_y, x_crop_blocks, y_crop_blocks;
97 int ci, offset_y;
98 JBLOCKARRAY src_buffer, dst_buffer;
99 jpeg_component_info *compptr;
100
101 /* We simply have to copy the right amount of data (the destination's
102 * image size) starting at the given X and Y offsets in the source.
103 */
104 for (ci = 0; ci < dstinfo->num_components; ci++) {
105 compptr = dstinfo->comp_info + ci;
106 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
107 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
108 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
109 dst_blk_y += compptr->v_samp_factor) {
110 dst_buffer = (*srcinfo->mem->access_virt_barray)
111 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
112 (JDIMENSION) compptr->v_samp_factor, TRUE);
113 src_buffer = (*srcinfo->mem->access_virt_barray)
114 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
115 dst_blk_y + y_crop_blocks,
116 (JDIMENSION) compptr->v_samp_factor, FALSE);
117 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
118 jcopy_block_row(src_buffer[offset_y] + x_crop_blocks,
119 dst_buffer[offset_y],
120 compptr->width_in_blocks);
121 }
122 }
123 }
124}
125
126
127LOCAL(void)
128do_flip_h_no_crop (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
129 JDIMENSION x_crop_offset,
130 jvirt_barray_ptr *src_coef_arrays)
131/* Horizontal flip; done in-place, so no separate dest array is required.
132 * NB: this only works when y_crop_offset is zero.
133 */
134{
135 JDIMENSION MCU_cols, comp_width, blk_x, blk_y, x_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000136 int ci, k, offset_y;
137 JBLOCKARRAY buffer;
138 JCOEFPTR ptr1, ptr2;
139 JCOEF temp1, temp2;
140 jpeg_component_info *compptr;
141
142 /* Horizontal mirroring of DCT blocks is accomplished by swapping
143 * pairs of blocks in-place. Within a DCT block, we perform horizontal
144 * mirroring by changing the signs of odd-numbered columns.
145 * Partial iMCUs at the right edge are left untouched.
146 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000147 MCU_cols = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000148 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000149
150 for (ci = 0; ci < dstinfo->num_components; ci++) {
151 compptr = dstinfo->comp_info + ci;
152 comp_width = MCU_cols * compptr->h_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000153 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000154 for (blk_y = 0; blk_y < compptr->height_in_blocks;
155 blk_y += compptr->v_samp_factor) {
156 buffer = (*srcinfo->mem->access_virt_barray)
157 ((j_common_ptr) srcinfo, src_coef_arrays[ci], blk_y,
158 (JDIMENSION) compptr->v_samp_factor, TRUE);
159 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000160 /* Do the mirroring */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000161 for (blk_x = 0; blk_x * 2 < comp_width; blk_x++) {
162 ptr1 = buffer[offset_y][blk_x];
163 ptr2 = buffer[offset_y][comp_width - blk_x - 1];
164 /* this unrolled loop doesn't need to know which row it's on... */
165 for (k = 0; k < DCTSIZE2; k += 2) {
166 temp1 = *ptr1; /* swap even column */
167 temp2 = *ptr2;
168 *ptr1++ = temp2;
169 *ptr2++ = temp1;
170 temp1 = *ptr1; /* swap odd column with sign change */
171 temp2 = *ptr2;
172 *ptr1++ = -temp2;
173 *ptr2++ = -temp1;
174 }
175 }
Guido Vollbeding5996a252009-06-27 00:00:00 +0000176 if (x_crop_blocks > 0) {
177 /* Now left-justify the portion of the data to be kept.
178 * We can't use a single jcopy_block_row() call because that routine
179 * depends on memcpy(), whose behavior is unspecified for overlapping
180 * source and destination areas. Sigh.
181 */
182 for (blk_x = 0; blk_x < compptr->width_in_blocks; blk_x++) {
183 jcopy_block_row(buffer[offset_y] + blk_x + x_crop_blocks,
184 buffer[offset_y] + blk_x,
185 (JDIMENSION) 1);
186 }
187 }
188 }
189 }
190 }
191}
192
193
194LOCAL(void)
195do_flip_h (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
196 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
197 jvirt_barray_ptr *src_coef_arrays,
198 jvirt_barray_ptr *dst_coef_arrays)
199/* Horizontal flip in general cropping case */
200{
201 JDIMENSION MCU_cols, comp_width, dst_blk_x, dst_blk_y;
202 JDIMENSION x_crop_blocks, y_crop_blocks;
203 int ci, k, offset_y;
204 JBLOCKARRAY src_buffer, dst_buffer;
205 JBLOCKROW src_row_ptr, dst_row_ptr;
206 JCOEFPTR src_ptr, dst_ptr;
207 jpeg_component_info *compptr;
208
209 /* Here we must output into a separate array because we can't touch
210 * different rows of a single virtual array simultaneously. Otherwise,
211 * this is essentially the same as the routine above.
212 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000213 MCU_cols = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000214 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Guido Vollbeding5996a252009-06-27 00:00:00 +0000215
216 for (ci = 0; ci < dstinfo->num_components; ci++) {
217 compptr = dstinfo->comp_info + ci;
218 comp_width = MCU_cols * compptr->h_samp_factor;
219 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
220 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
221 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
222 dst_blk_y += compptr->v_samp_factor) {
223 dst_buffer = (*srcinfo->mem->access_virt_barray)
224 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
225 (JDIMENSION) compptr->v_samp_factor, TRUE);
226 src_buffer = (*srcinfo->mem->access_virt_barray)
227 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
228 dst_blk_y + y_crop_blocks,
229 (JDIMENSION) compptr->v_samp_factor, FALSE);
230 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
231 dst_row_ptr = dst_buffer[offset_y];
232 src_row_ptr = src_buffer[offset_y];
233 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks; dst_blk_x++) {
234 if (x_crop_blocks + dst_blk_x < comp_width) {
235 /* Do the mirrorable blocks */
236 dst_ptr = dst_row_ptr[dst_blk_x];
237 src_ptr = src_row_ptr[comp_width - x_crop_blocks - dst_blk_x - 1];
238 /* this unrolled loop doesn't need to know which row it's on... */
239 for (k = 0; k < DCTSIZE2; k += 2) {
240 *dst_ptr++ = *src_ptr++; /* copy even column */
241 *dst_ptr++ = - *src_ptr++; /* copy odd column with sign change */
242 }
243 } else {
244 /* Copy last partial block(s) verbatim */
245 jcopy_block_row(src_row_ptr + dst_blk_x + x_crop_blocks,
246 dst_row_ptr + dst_blk_x,
247 (JDIMENSION) 1);
248 }
249 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000250 }
251 }
252 }
253}
254
255
256LOCAL(void)
257do_flip_v (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000258 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000259 jvirt_barray_ptr *src_coef_arrays,
260 jvirt_barray_ptr *dst_coef_arrays)
261/* Vertical flip */
262{
263 JDIMENSION MCU_rows, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000264 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000265 int ci, i, j, offset_y;
266 JBLOCKARRAY src_buffer, dst_buffer;
267 JBLOCKROW src_row_ptr, dst_row_ptr;
268 JCOEFPTR src_ptr, dst_ptr;
269 jpeg_component_info *compptr;
270
271 /* We output into a separate array because we can't touch different
272 * rows of the source virtual array simultaneously. Otherwise, this
273 * is a pretty straightforward analog of horizontal flip.
274 * Within a DCT block, vertical mirroring is done by changing the signs
275 * of odd-numbered rows.
276 * Partial iMCUs at the bottom edge are copied verbatim.
277 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000278 MCU_rows = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000279 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000280
281 for (ci = 0; ci < dstinfo->num_components; ci++) {
282 compptr = dstinfo->comp_info + ci;
283 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000284 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
285 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000286 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
287 dst_blk_y += compptr->v_samp_factor) {
288 dst_buffer = (*srcinfo->mem->access_virt_barray)
289 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
290 (JDIMENSION) compptr->v_samp_factor, TRUE);
Guido Vollbeding5996a252009-06-27 00:00:00 +0000291 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000292 /* Row is within the mirrorable area. */
293 src_buffer = (*srcinfo->mem->access_virt_barray)
294 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
Guido Vollbeding5996a252009-06-27 00:00:00 +0000295 comp_height - y_crop_blocks - dst_blk_y -
296 (JDIMENSION) compptr->v_samp_factor,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000297 (JDIMENSION) compptr->v_samp_factor, FALSE);
298 } else {
299 /* Bottom-edge blocks will be copied verbatim. */
300 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000301 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
302 dst_blk_y + y_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000303 (JDIMENSION) compptr->v_samp_factor, FALSE);
304 }
305 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000306 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000307 /* Row is within the mirrorable area. */
308 dst_row_ptr = dst_buffer[offset_y];
309 src_row_ptr = src_buffer[compptr->v_samp_factor - offset_y - 1];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000310 src_row_ptr += x_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000311 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
312 dst_blk_x++) {
313 dst_ptr = dst_row_ptr[dst_blk_x];
314 src_ptr = src_row_ptr[dst_blk_x];
315 for (i = 0; i < DCTSIZE; i += 2) {
316 /* copy even row */
317 for (j = 0; j < DCTSIZE; j++)
318 *dst_ptr++ = *src_ptr++;
319 /* copy odd row with sign change */
320 for (j = 0; j < DCTSIZE; j++)
321 *dst_ptr++ = - *src_ptr++;
322 }
323 }
324 } else {
325 /* Just copy row verbatim. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000326 jcopy_block_row(src_buffer[offset_y] + x_crop_blocks,
327 dst_buffer[offset_y],
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000328 compptr->width_in_blocks);
329 }
330 }
331 }
332 }
333}
334
335
336LOCAL(void)
337do_transpose (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000338 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000339 jvirt_barray_ptr *src_coef_arrays,
340 jvirt_barray_ptr *dst_coef_arrays)
341/* Transpose source into destination */
342{
Guido Vollbeding5996a252009-06-27 00:00:00 +0000343 JDIMENSION dst_blk_x, dst_blk_y, x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000344 int ci, i, j, offset_x, offset_y;
345 JBLOCKARRAY src_buffer, dst_buffer;
346 JCOEFPTR src_ptr, dst_ptr;
347 jpeg_component_info *compptr;
348
349 /* Transposing pixels within a block just requires transposing the
350 * DCT coefficients.
351 * Partial iMCUs at the edges require no special treatment; we simply
352 * process all the available DCT blocks for every component.
353 */
354 for (ci = 0; ci < dstinfo->num_components; ci++) {
355 compptr = dstinfo->comp_info + ci;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000356 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
357 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000358 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
359 dst_blk_y += compptr->v_samp_factor) {
360 dst_buffer = (*srcinfo->mem->access_virt_barray)
361 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
362 (JDIMENSION) compptr->v_samp_factor, TRUE);
363 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
364 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
365 dst_blk_x += compptr->h_samp_factor) {
366 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000367 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
368 dst_blk_x + x_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000369 (JDIMENSION) compptr->h_samp_factor, FALSE);
370 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000371 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000372 src_ptr = src_buffer[offset_x][dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000373 for (i = 0; i < DCTSIZE; i++)
374 for (j = 0; j < DCTSIZE; j++)
375 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
376 }
377 }
378 }
379 }
380 }
381}
382
383
384LOCAL(void)
385do_rot_90 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000386 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000387 jvirt_barray_ptr *src_coef_arrays,
388 jvirt_barray_ptr *dst_coef_arrays)
389/* 90 degree rotation is equivalent to
390 * 1. Transposing the image;
391 * 2. Horizontal mirroring.
392 * These two steps are merged into a single processing routine.
393 */
394{
395 JDIMENSION MCU_cols, comp_width, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000396 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000397 int ci, i, j, offset_x, offset_y;
398 JBLOCKARRAY src_buffer, dst_buffer;
399 JCOEFPTR src_ptr, dst_ptr;
400 jpeg_component_info *compptr;
401
402 /* Because of the horizontal mirror step, we can't process partial iMCUs
403 * at the (output) right edge properly. They just get transposed and
404 * not mirrored.
405 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000406 MCU_cols = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000407 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000408
409 for (ci = 0; ci < dstinfo->num_components; ci++) {
410 compptr = dstinfo->comp_info + ci;
411 comp_width = MCU_cols * compptr->h_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000412 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
413 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000414 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
415 dst_blk_y += compptr->v_samp_factor) {
416 dst_buffer = (*srcinfo->mem->access_virt_barray)
417 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
418 (JDIMENSION) compptr->v_samp_factor, TRUE);
419 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
420 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
421 dst_blk_x += compptr->h_samp_factor) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000422 if (x_crop_blocks + dst_blk_x < comp_width) {
423 /* Block is within the mirrorable area. */
424 src_buffer = (*srcinfo->mem->access_virt_barray)
425 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
426 comp_width - x_crop_blocks - dst_blk_x -
427 (JDIMENSION) compptr->h_samp_factor,
428 (JDIMENSION) compptr->h_samp_factor, FALSE);
429 } else {
430 /* Edge blocks are transposed but not mirrored. */
431 src_buffer = (*srcinfo->mem->access_virt_barray)
432 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
433 dst_blk_x + x_crop_blocks,
434 (JDIMENSION) compptr->h_samp_factor, FALSE);
435 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000436 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000437 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
438 if (x_crop_blocks + dst_blk_x < comp_width) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000439 /* Block is within the mirrorable area. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000440 src_ptr = src_buffer[compptr->h_samp_factor - offset_x - 1]
441 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000442 for (i = 0; i < DCTSIZE; i++) {
443 for (j = 0; j < DCTSIZE; j++)
444 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
445 i++;
446 for (j = 0; j < DCTSIZE; j++)
447 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
448 }
449 } else {
450 /* Edge blocks are transposed but not mirrored. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000451 src_ptr = src_buffer[offset_x]
452 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000453 for (i = 0; i < DCTSIZE; i++)
454 for (j = 0; j < DCTSIZE; j++)
455 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
456 }
457 }
458 }
459 }
460 }
461 }
462}
463
464
465LOCAL(void)
466do_rot_270 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000467 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000468 jvirt_barray_ptr *src_coef_arrays,
469 jvirt_barray_ptr *dst_coef_arrays)
470/* 270 degree rotation is equivalent to
471 * 1. Horizontal mirroring;
472 * 2. Transposing the image.
473 * These two steps are merged into a single processing routine.
474 */
475{
476 JDIMENSION MCU_rows, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000477 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000478 int ci, i, j, offset_x, offset_y;
479 JBLOCKARRAY src_buffer, dst_buffer;
480 JCOEFPTR src_ptr, dst_ptr;
481 jpeg_component_info *compptr;
482
483 /* Because of the horizontal mirror step, we can't process partial iMCUs
484 * at the (output) bottom edge properly. They just get transposed and
485 * not mirrored.
486 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000487 MCU_rows = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000488 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000489
490 for (ci = 0; ci < dstinfo->num_components; ci++) {
491 compptr = dstinfo->comp_info + ci;
492 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000493 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
494 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000495 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
496 dst_blk_y += compptr->v_samp_factor) {
497 dst_buffer = (*srcinfo->mem->access_virt_barray)
498 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
499 (JDIMENSION) compptr->v_samp_factor, TRUE);
500 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
501 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
502 dst_blk_x += compptr->h_samp_factor) {
503 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000504 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
505 dst_blk_x + x_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000506 (JDIMENSION) compptr->h_samp_factor, FALSE);
507 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
508 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000509 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000510 /* Block is within the mirrorable area. */
511 src_ptr = src_buffer[offset_x]
Guido Vollbeding5996a252009-06-27 00:00:00 +0000512 [comp_height - y_crop_blocks - dst_blk_y - offset_y - 1];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000513 for (i = 0; i < DCTSIZE; i++) {
514 for (j = 0; j < DCTSIZE; j++) {
515 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
516 j++;
517 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
518 }
519 }
520 } else {
521 /* Edge blocks are transposed but not mirrored. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000522 src_ptr = src_buffer[offset_x]
523 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000524 for (i = 0; i < DCTSIZE; i++)
525 for (j = 0; j < DCTSIZE; j++)
526 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
527 }
528 }
529 }
530 }
531 }
532 }
533}
534
535
536LOCAL(void)
537do_rot_180 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000538 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000539 jvirt_barray_ptr *src_coef_arrays,
540 jvirt_barray_ptr *dst_coef_arrays)
541/* 180 degree rotation is equivalent to
542 * 1. Vertical mirroring;
543 * 2. Horizontal mirroring.
544 * These two steps are merged into a single processing routine.
545 */
546{
547 JDIMENSION MCU_cols, MCU_rows, comp_width, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000548 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000549 int ci, i, j, offset_y;
550 JBLOCKARRAY src_buffer, dst_buffer;
551 JBLOCKROW src_row_ptr, dst_row_ptr;
552 JCOEFPTR src_ptr, dst_ptr;
553 jpeg_component_info *compptr;
554
Guido Vollbeding989630f2010-01-10 00:00:00 +0000555 MCU_cols = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000556 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000557 MCU_rows = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000558 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000559
560 for (ci = 0; ci < dstinfo->num_components; ci++) {
561 compptr = dstinfo->comp_info + ci;
562 comp_width = MCU_cols * compptr->h_samp_factor;
563 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000564 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
565 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000566 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
567 dst_blk_y += compptr->v_samp_factor) {
568 dst_buffer = (*srcinfo->mem->access_virt_barray)
569 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
570 (JDIMENSION) compptr->v_samp_factor, TRUE);
Guido Vollbeding5996a252009-06-27 00:00:00 +0000571 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000572 /* Row is within the vertically mirrorable area. */
573 src_buffer = (*srcinfo->mem->access_virt_barray)
574 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
Guido Vollbeding5996a252009-06-27 00:00:00 +0000575 comp_height - y_crop_blocks - dst_blk_y -
576 (JDIMENSION) compptr->v_samp_factor,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000577 (JDIMENSION) compptr->v_samp_factor, FALSE);
578 } else {
579 /* Bottom-edge rows are only mirrored horizontally. */
580 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000581 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
582 dst_blk_y + y_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000583 (JDIMENSION) compptr->v_samp_factor, FALSE);
584 }
585 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000586 dst_row_ptr = dst_buffer[offset_y];
587 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000588 /* Row is within the mirrorable area. */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000589 src_row_ptr = src_buffer[compptr->v_samp_factor - offset_y - 1];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000590 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks; dst_blk_x++) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000591 dst_ptr = dst_row_ptr[dst_blk_x];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000592 if (x_crop_blocks + dst_blk_x < comp_width) {
593 /* Process the blocks that can be mirrored both ways. */
594 src_ptr = src_row_ptr[comp_width - x_crop_blocks - dst_blk_x - 1];
595 for (i = 0; i < DCTSIZE; i += 2) {
596 /* For even row, negate every odd column. */
597 for (j = 0; j < DCTSIZE; j += 2) {
598 *dst_ptr++ = *src_ptr++;
599 *dst_ptr++ = - *src_ptr++;
600 }
601 /* For odd row, negate every even column. */
602 for (j = 0; j < DCTSIZE; j += 2) {
603 *dst_ptr++ = - *src_ptr++;
604 *dst_ptr++ = *src_ptr++;
605 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000606 }
Guido Vollbeding5996a252009-06-27 00:00:00 +0000607 } else {
608 /* Any remaining right-edge blocks are only mirrored vertically. */
609 src_ptr = src_row_ptr[x_crop_blocks + dst_blk_x];
610 for (i = 0; i < DCTSIZE; i += 2) {
611 for (j = 0; j < DCTSIZE; j++)
612 *dst_ptr++ = *src_ptr++;
613 for (j = 0; j < DCTSIZE; j++)
614 *dst_ptr++ = - *src_ptr++;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000615 }
616 }
617 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000618 } else {
619 /* Remaining rows are just mirrored horizontally. */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000620 src_row_ptr = src_buffer[offset_y];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000621 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks; dst_blk_x++) {
622 if (x_crop_blocks + dst_blk_x < comp_width) {
623 /* Process the blocks that can be mirrored. */
624 dst_ptr = dst_row_ptr[dst_blk_x];
625 src_ptr = src_row_ptr[comp_width - x_crop_blocks - dst_blk_x - 1];
626 for (i = 0; i < DCTSIZE2; i += 2) {
627 *dst_ptr++ = *src_ptr++;
628 *dst_ptr++ = - *src_ptr++;
629 }
630 } else {
631 /* Any remaining right-edge blocks are only copied. */
632 jcopy_block_row(src_row_ptr + dst_blk_x + x_crop_blocks,
633 dst_row_ptr + dst_blk_x,
634 (JDIMENSION) 1);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000635 }
636 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000637 }
638 }
639 }
640 }
641}
642
643
644LOCAL(void)
645do_transverse (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000646 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000647 jvirt_barray_ptr *src_coef_arrays,
648 jvirt_barray_ptr *dst_coef_arrays)
649/* Transverse transpose is equivalent to
650 * 1. 180 degree rotation;
651 * 2. Transposition;
652 * or
653 * 1. Horizontal mirroring;
654 * 2. Transposition;
655 * 3. Horizontal mirroring.
656 * These steps are merged into a single processing routine.
657 */
658{
659 JDIMENSION MCU_cols, MCU_rows, comp_width, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000660 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000661 int ci, i, j, offset_x, offset_y;
662 JBLOCKARRAY src_buffer, dst_buffer;
663 JCOEFPTR src_ptr, dst_ptr;
664 jpeg_component_info *compptr;
665
Guido Vollbeding989630f2010-01-10 00:00:00 +0000666 MCU_cols = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000667 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000668 MCU_rows = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000669 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000670
671 for (ci = 0; ci < dstinfo->num_components; ci++) {
672 compptr = dstinfo->comp_info + ci;
673 comp_width = MCU_cols * compptr->h_samp_factor;
674 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000675 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
676 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000677 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
678 dst_blk_y += compptr->v_samp_factor) {
679 dst_buffer = (*srcinfo->mem->access_virt_barray)
680 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
681 (JDIMENSION) compptr->v_samp_factor, TRUE);
682 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
683 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
684 dst_blk_x += compptr->h_samp_factor) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000685 if (x_crop_blocks + dst_blk_x < comp_width) {
686 /* Block is within the mirrorable area. */
687 src_buffer = (*srcinfo->mem->access_virt_barray)
688 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
689 comp_width - x_crop_blocks - dst_blk_x -
690 (JDIMENSION) compptr->h_samp_factor,
691 (JDIMENSION) compptr->h_samp_factor, FALSE);
692 } else {
693 src_buffer = (*srcinfo->mem->access_virt_barray)
694 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
695 dst_blk_x + x_crop_blocks,
696 (JDIMENSION) compptr->h_samp_factor, FALSE);
697 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000698 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000699 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
700 if (y_crop_blocks + dst_blk_y < comp_height) {
701 if (x_crop_blocks + dst_blk_x < comp_width) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000702 /* Block is within the mirrorable area. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000703 src_ptr = src_buffer[compptr->h_samp_factor - offset_x - 1]
704 [comp_height - y_crop_blocks - dst_blk_y - offset_y - 1];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000705 for (i = 0; i < DCTSIZE; i++) {
706 for (j = 0; j < DCTSIZE; j++) {
707 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
708 j++;
709 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
710 }
711 i++;
712 for (j = 0; j < DCTSIZE; j++) {
713 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
714 j++;
715 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
716 }
717 }
718 } else {
719 /* Right-edge blocks are mirrored in y only */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000720 src_ptr = src_buffer[offset_x]
721 [comp_height - y_crop_blocks - dst_blk_y - offset_y - 1];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000722 for (i = 0; i < DCTSIZE; i++) {
723 for (j = 0; j < DCTSIZE; j++) {
724 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
725 j++;
726 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
727 }
728 }
729 }
730 } else {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000731 if (x_crop_blocks + dst_blk_x < comp_width) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000732 /* Bottom-edge blocks are mirrored in x only */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000733 src_ptr = src_buffer[compptr->h_samp_factor - offset_x - 1]
734 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000735 for (i = 0; i < DCTSIZE; i++) {
736 for (j = 0; j < DCTSIZE; j++)
737 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
738 i++;
739 for (j = 0; j < DCTSIZE; j++)
740 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
741 }
742 } else {
743 /* At lower right corner, just transpose, no mirroring */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000744 src_ptr = src_buffer[offset_x]
745 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000746 for (i = 0; i < DCTSIZE; i++)
747 for (j = 0; j < DCTSIZE; j++)
748 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
749 }
750 }
751 }
752 }
753 }
754 }
755 }
756}
757
758
Guido Vollbeding5996a252009-06-27 00:00:00 +0000759/* Parse an unsigned integer: subroutine for jtransform_parse_crop_spec.
760 * Returns TRUE if valid integer found, FALSE if not.
761 * *strptr is advanced over the digit string, and *result is set to its value.
762 */
763
764LOCAL(boolean)
765jt_read_integer (const char ** strptr, JDIMENSION * result)
766{
767 const char * ptr = *strptr;
768 JDIMENSION val = 0;
769
770 for (; isdigit(*ptr); ptr++) {
771 val = val * 10 + (JDIMENSION) (*ptr - '0');
772 }
773 *result = val;
774 if (ptr == *strptr)
775 return FALSE; /* oops, no digits */
776 *strptr = ptr;
777 return TRUE;
778}
779
780
781/* Parse a crop specification (written in X11 geometry style).
782 * The routine returns TRUE if the spec string is valid, FALSE if not.
783 *
784 * The crop spec string should have the format
785 * <width>x<height>{+-}<xoffset>{+-}<yoffset>
786 * where width, height, xoffset, and yoffset are unsigned integers.
787 * Each of the elements can be omitted to indicate a default value.
788 * (A weakness of this style is that it is not possible to omit xoffset
789 * while specifying yoffset, since they look alike.)
790 *
791 * This code is loosely based on XParseGeometry from the X11 distribution.
792 */
793
794GLOBAL(boolean)
795jtransform_parse_crop_spec (jpeg_transform_info *info, const char *spec)
796{
797 info->crop = FALSE;
798 info->crop_width_set = JCROP_UNSET;
799 info->crop_height_set = JCROP_UNSET;
800 info->crop_xoffset_set = JCROP_UNSET;
801 info->crop_yoffset_set = JCROP_UNSET;
802
803 if (isdigit(*spec)) {
804 /* fetch width */
805 if (! jt_read_integer(&spec, &info->crop_width))
806 return FALSE;
807 info->crop_width_set = JCROP_POS;
808 }
809 if (*spec == 'x' || *spec == 'X') {
810 /* fetch height */
811 spec++;
812 if (! jt_read_integer(&spec, &info->crop_height))
813 return FALSE;
814 info->crop_height_set = JCROP_POS;
815 }
816 if (*spec == '+' || *spec == '-') {
817 /* fetch xoffset */
818 info->crop_xoffset_set = (*spec == '-') ? JCROP_NEG : JCROP_POS;
819 spec++;
820 if (! jt_read_integer(&spec, &info->crop_xoffset))
821 return FALSE;
822 }
823 if (*spec == '+' || *spec == '-') {
824 /* fetch yoffset */
825 info->crop_yoffset_set = (*spec == '-') ? JCROP_NEG : JCROP_POS;
826 spec++;
827 if (! jt_read_integer(&spec, &info->crop_yoffset))
828 return FALSE;
829 }
830 /* We had better have gotten to the end of the string. */
831 if (*spec != '\0')
832 return FALSE;
833 info->crop = TRUE;
834 return TRUE;
835}
836
837
838/* Trim off any partial iMCUs on the indicated destination edge */
839
840LOCAL(void)
841trim_right_edge (jpeg_transform_info *info, JDIMENSION full_width)
842{
843 JDIMENSION MCU_cols;
844
Guido Vollbeding989630f2010-01-10 00:00:00 +0000845 MCU_cols = info->output_width / info->iMCU_sample_width;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000846 if (MCU_cols > 0 && info->x_crop_offset + MCU_cols ==
Guido Vollbeding989630f2010-01-10 00:00:00 +0000847 full_width / info->iMCU_sample_width)
848 info->output_width = MCU_cols * info->iMCU_sample_width;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000849}
850
851LOCAL(void)
852trim_bottom_edge (jpeg_transform_info *info, JDIMENSION full_height)
853{
854 JDIMENSION MCU_rows;
855
Guido Vollbeding989630f2010-01-10 00:00:00 +0000856 MCU_rows = info->output_height / info->iMCU_sample_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000857 if (MCU_rows > 0 && info->y_crop_offset + MCU_rows ==
Guido Vollbeding989630f2010-01-10 00:00:00 +0000858 full_height / info->iMCU_sample_height)
859 info->output_height = MCU_rows * info->iMCU_sample_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000860}
861
862
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000863/* Request any required workspace.
864 *
Guido Vollbeding5996a252009-06-27 00:00:00 +0000865 * This routine figures out the size that the output image will be
866 * (which implies that all the transform parameters must be set before
867 * it is called).
868 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000869 * We allocate the workspace virtual arrays from the source decompression
870 * object, so that all the arrays (both the original data and the workspace)
871 * will be taken into account while making memory management decisions.
872 * Hence, this routine must be called after jpeg_read_header (which reads
873 * the image dimensions) and before jpeg_read_coefficients (which realizes
874 * the source's virtual arrays).
Guido Vollbeding989630f2010-01-10 00:00:00 +0000875 *
876 * This function returns FALSE right away if -perfect is given
877 * and transformation is not perfect. Otherwise returns TRUE.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000878 */
879
Guido Vollbeding989630f2010-01-10 00:00:00 +0000880GLOBAL(boolean)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000881jtransform_request_workspace (j_decompress_ptr srcinfo,
882 jpeg_transform_info *info)
883{
Guido Vollbeding989630f2010-01-10 00:00:00 +0000884 jvirt_barray_ptr *coef_arrays;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000885 boolean need_workspace, transpose_it;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000886 jpeg_component_info *compptr;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000887 JDIMENSION xoffset, yoffset;
888 JDIMENSION width_in_iMCUs, height_in_iMCUs;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000889 JDIMENSION width_in_blocks, height_in_blocks;
890 int ci, h_samp_factor, v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000891
Guido Vollbeding5996a252009-06-27 00:00:00 +0000892 /* Determine number of components in output image */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000893 if (info->force_grayscale &&
894 srcinfo->jpeg_color_space == JCS_YCbCr &&
Guido Vollbeding989630f2010-01-10 00:00:00 +0000895 srcinfo->num_components == 3)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000896 /* We'll only process the first component */
897 info->num_components = 1;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000898 else
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000899 /* Process all the components */
900 info->num_components = srcinfo->num_components;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000901
902 /* Compute output image dimensions and related values. */
DRCc04bd3c2010-10-10 02:15:56 +0000903#if JPEG_LIB_VERSION >= 80
Guido Vollbeding989630f2010-01-10 00:00:00 +0000904 jpeg_core_output_dimensions(srcinfo);
DRCc04bd3c2010-10-10 02:15:56 +0000905#else
906 srcinfo->output_width = srcinfo->image_width;
907 srcinfo->output_height = srcinfo->image_height;
908#endif
Guido Vollbeding989630f2010-01-10 00:00:00 +0000909
910 /* Return right away if -perfect is given and transformation is not perfect.
911 */
912 if (info->perfect) {
913 if (info->num_components == 1) {
914 if (!jtransform_perfect_transform(srcinfo->output_width,
915 srcinfo->output_height,
DRCc04bd3c2010-10-10 02:15:56 +0000916 srcinfo->_min_DCT_h_scaled_size,
917 srcinfo->_min_DCT_v_scaled_size,
Guido Vollbeding989630f2010-01-10 00:00:00 +0000918 info->transform))
919 return FALSE;
920 } else {
921 if (!jtransform_perfect_transform(srcinfo->output_width,
922 srcinfo->output_height,
DRCc04bd3c2010-10-10 02:15:56 +0000923 srcinfo->max_h_samp_factor * srcinfo->_min_DCT_h_scaled_size,
924 srcinfo->max_v_samp_factor * srcinfo->_min_DCT_v_scaled_size,
Guido Vollbeding989630f2010-01-10 00:00:00 +0000925 info->transform))
926 return FALSE;
927 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000928 }
929
Guido Vollbeding5996a252009-06-27 00:00:00 +0000930 /* If there is only one output component, force the iMCU size to be 1;
931 * else use the source iMCU size. (This allows us to do the right thing
932 * when reducing color to grayscale, and also provides a handy way of
933 * cleaning up "funny" grayscale images whose sampling factors are not 1x1.)
934 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000935 switch (info->transform) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000936 case JXFORM_TRANSPOSE:
937 case JXFORM_TRANSVERSE:
938 case JXFORM_ROT_90:
939 case JXFORM_ROT_270:
Guido Vollbeding989630f2010-01-10 00:00:00 +0000940 info->output_width = srcinfo->output_height;
941 info->output_height = srcinfo->output_width;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000942 if (info->num_components == 1) {
DRCc04bd3c2010-10-10 02:15:56 +0000943 info->iMCU_sample_width = srcinfo->_min_DCT_v_scaled_size;
944 info->iMCU_sample_height = srcinfo->_min_DCT_h_scaled_size;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000945 } else {
Guido Vollbeding989630f2010-01-10 00:00:00 +0000946 info->iMCU_sample_width =
DRCc04bd3c2010-10-10 02:15:56 +0000947 srcinfo->max_v_samp_factor * srcinfo->_min_DCT_v_scaled_size;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000948 info->iMCU_sample_height =
DRCc04bd3c2010-10-10 02:15:56 +0000949 srcinfo->max_h_samp_factor * srcinfo->_min_DCT_h_scaled_size;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000950 }
951 break;
952 default:
Guido Vollbeding989630f2010-01-10 00:00:00 +0000953 info->output_width = srcinfo->output_width;
954 info->output_height = srcinfo->output_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000955 if (info->num_components == 1) {
DRCc04bd3c2010-10-10 02:15:56 +0000956 info->iMCU_sample_width = srcinfo->_min_DCT_h_scaled_size;
957 info->iMCU_sample_height = srcinfo->_min_DCT_v_scaled_size;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000958 } else {
Guido Vollbeding989630f2010-01-10 00:00:00 +0000959 info->iMCU_sample_width =
DRCc04bd3c2010-10-10 02:15:56 +0000960 srcinfo->max_h_samp_factor * srcinfo->_min_DCT_h_scaled_size;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000961 info->iMCU_sample_height =
DRCc04bd3c2010-10-10 02:15:56 +0000962 srcinfo->max_v_samp_factor * srcinfo->_min_DCT_v_scaled_size;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000963 }
964 break;
965 }
Guido Vollbeding5996a252009-06-27 00:00:00 +0000966
967 /* If cropping has been requested, compute the crop area's position and
968 * dimensions, ensuring that its upper left corner falls at an iMCU boundary.
969 */
970 if (info->crop) {
971 /* Insert default values for unset crop parameters */
972 if (info->crop_xoffset_set == JCROP_UNSET)
973 info->crop_xoffset = 0; /* default to +0 */
974 if (info->crop_yoffset_set == JCROP_UNSET)
975 info->crop_yoffset = 0; /* default to +0 */
976 if (info->crop_xoffset >= info->output_width ||
977 info->crop_yoffset >= info->output_height)
978 ERREXIT(srcinfo, JERR_BAD_CROP_SPEC);
979 if (info->crop_width_set == JCROP_UNSET)
980 info->crop_width = info->output_width - info->crop_xoffset;
981 if (info->crop_height_set == JCROP_UNSET)
982 info->crop_height = info->output_height - info->crop_yoffset;
983 /* Ensure parameters are valid */
984 if (info->crop_width <= 0 || info->crop_width > info->output_width ||
985 info->crop_height <= 0 || info->crop_height > info->output_height ||
986 info->crop_xoffset > info->output_width - info->crop_width ||
987 info->crop_yoffset > info->output_height - info->crop_height)
988 ERREXIT(srcinfo, JERR_BAD_CROP_SPEC);
989 /* Convert negative crop offsets into regular offsets */
990 if (info->crop_xoffset_set == JCROP_NEG)
991 xoffset = info->output_width - info->crop_width - info->crop_xoffset;
992 else
993 xoffset = info->crop_xoffset;
994 if (info->crop_yoffset_set == JCROP_NEG)
995 yoffset = info->output_height - info->crop_height - info->crop_yoffset;
996 else
997 yoffset = info->crop_yoffset;
998 /* Now adjust so that upper left corner falls at an iMCU boundary */
999 info->output_width =
Guido Vollbeding989630f2010-01-10 00:00:00 +00001000 info->crop_width + (xoffset % info->iMCU_sample_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001001 info->output_height =
Guido Vollbeding989630f2010-01-10 00:00:00 +00001002 info->crop_height + (yoffset % info->iMCU_sample_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001003 /* Save x/y offsets measured in iMCUs */
Guido Vollbeding989630f2010-01-10 00:00:00 +00001004 info->x_crop_offset = xoffset / info->iMCU_sample_width;
1005 info->y_crop_offset = yoffset / info->iMCU_sample_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +00001006 } else {
1007 info->x_crop_offset = 0;
1008 info->y_crop_offset = 0;
1009 }
1010
1011 /* Figure out whether we need workspace arrays,
1012 * and if so whether they are transposed relative to the source.
1013 */
1014 need_workspace = FALSE;
1015 transpose_it = FALSE;
1016 switch (info->transform) {
1017 case JXFORM_NONE:
1018 if (info->x_crop_offset != 0 || info->y_crop_offset != 0)
1019 need_workspace = TRUE;
1020 /* No workspace needed if neither cropping nor transforming */
1021 break;
1022 case JXFORM_FLIP_H:
1023 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001024 trim_right_edge(info, srcinfo->output_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001025 if (info->y_crop_offset != 0)
1026 need_workspace = TRUE;
1027 /* do_flip_h_no_crop doesn't need a workspace array */
1028 break;
1029 case JXFORM_FLIP_V:
1030 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001031 trim_bottom_edge(info, srcinfo->output_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001032 /* Need workspace arrays having same dimensions as source image. */
1033 need_workspace = TRUE;
1034 break;
1035 case JXFORM_TRANSPOSE:
1036 /* transpose does NOT have to trim anything */
1037 /* Need workspace arrays having transposed dimensions. */
1038 need_workspace = TRUE;
1039 transpose_it = TRUE;
1040 break;
1041 case JXFORM_TRANSVERSE:
1042 if (info->trim) {
Guido Vollbeding989630f2010-01-10 00:00:00 +00001043 trim_right_edge(info, srcinfo->output_height);
1044 trim_bottom_edge(info, srcinfo->output_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001045 }
1046 /* Need workspace arrays having transposed dimensions. */
1047 need_workspace = TRUE;
1048 transpose_it = TRUE;
1049 break;
1050 case JXFORM_ROT_90:
1051 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001052 trim_right_edge(info, srcinfo->output_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001053 /* Need workspace arrays having transposed dimensions. */
1054 need_workspace = TRUE;
1055 transpose_it = TRUE;
1056 break;
1057 case JXFORM_ROT_180:
1058 if (info->trim) {
Guido Vollbeding989630f2010-01-10 00:00:00 +00001059 trim_right_edge(info, srcinfo->output_width);
1060 trim_bottom_edge(info, srcinfo->output_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001061 }
1062 /* Need workspace arrays having same dimensions as source image. */
1063 need_workspace = TRUE;
1064 break;
1065 case JXFORM_ROT_270:
1066 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001067 trim_bottom_edge(info, srcinfo->output_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001068 /* Need workspace arrays having transposed dimensions. */
1069 need_workspace = TRUE;
1070 transpose_it = TRUE;
1071 break;
1072 }
1073
1074 /* Allocate workspace if needed.
1075 * Note that we allocate arrays padded out to the next iMCU boundary,
1076 * so that transform routines need not worry about missing edge blocks.
1077 */
1078 if (need_workspace) {
1079 coef_arrays = (jvirt_barray_ptr *)
1080 (*srcinfo->mem->alloc_small) ((j_common_ptr) srcinfo, JPOOL_IMAGE,
1081 SIZEOF(jvirt_barray_ptr) * info->num_components);
1082 width_in_iMCUs = (JDIMENSION)
1083 jdiv_round_up((long) info->output_width,
Guido Vollbeding989630f2010-01-10 00:00:00 +00001084 (long) info->iMCU_sample_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001085 height_in_iMCUs = (JDIMENSION)
1086 jdiv_round_up((long) info->output_height,
Guido Vollbeding989630f2010-01-10 00:00:00 +00001087 (long) info->iMCU_sample_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001088 for (ci = 0; ci < info->num_components; ci++) {
1089 compptr = srcinfo->comp_info + ci;
1090 if (info->num_components == 1) {
1091 /* we're going to force samp factors to 1x1 in this case */
1092 h_samp_factor = v_samp_factor = 1;
1093 } else if (transpose_it) {
1094 h_samp_factor = compptr->v_samp_factor;
1095 v_samp_factor = compptr->h_samp_factor;
1096 } else {
1097 h_samp_factor = compptr->h_samp_factor;
1098 v_samp_factor = compptr->v_samp_factor;
1099 }
1100 width_in_blocks = width_in_iMCUs * h_samp_factor;
1101 height_in_blocks = height_in_iMCUs * v_samp_factor;
1102 coef_arrays[ci] = (*srcinfo->mem->request_virt_barray)
1103 ((j_common_ptr) srcinfo, JPOOL_IMAGE, FALSE,
1104 width_in_blocks, height_in_blocks, (JDIMENSION) v_samp_factor);
1105 }
Guido Vollbeding989630f2010-01-10 00:00:00 +00001106 info->workspace_coef_arrays = coef_arrays;
1107 } else
1108 info->workspace_coef_arrays = NULL;
Guido Vollbeding5996a252009-06-27 00:00:00 +00001109
Guido Vollbeding989630f2010-01-10 00:00:00 +00001110 return TRUE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001111}
1112
1113
1114/* Transpose destination image parameters */
1115
1116LOCAL(void)
1117transpose_critical_parameters (j_compress_ptr dstinfo)
1118{
1119 int tblno, i, j, ci, itemp;
1120 jpeg_component_info *compptr;
1121 JQUANT_TBL *qtblptr;
Guido Vollbeding989630f2010-01-10 00:00:00 +00001122 JDIMENSION jtemp;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001123 UINT16 qtemp;
1124
Guido Vollbeding989630f2010-01-10 00:00:00 +00001125 /* Transpose image dimensions */
1126 jtemp = dstinfo->image_width;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001127 dstinfo->image_width = dstinfo->image_height;
Guido Vollbeding989630f2010-01-10 00:00:00 +00001128 dstinfo->image_height = jtemp;
DRC36a6eec2010-10-08 08:05:44 +00001129#if JPEG_LIB_VERSION >= 70
Guido Vollbeding989630f2010-01-10 00:00:00 +00001130 itemp = dstinfo->min_DCT_h_scaled_size;
1131 dstinfo->min_DCT_h_scaled_size = dstinfo->min_DCT_v_scaled_size;
1132 dstinfo->min_DCT_v_scaled_size = itemp;
DRC36a6eec2010-10-08 08:05:44 +00001133#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001134
1135 /* Transpose sampling factors */
1136 for (ci = 0; ci < dstinfo->num_components; ci++) {
1137 compptr = dstinfo->comp_info + ci;
1138 itemp = compptr->h_samp_factor;
1139 compptr->h_samp_factor = compptr->v_samp_factor;
1140 compptr->v_samp_factor = itemp;
1141 }
1142
1143 /* Transpose quantization tables */
1144 for (tblno = 0; tblno < NUM_QUANT_TBLS; tblno++) {
1145 qtblptr = dstinfo->quant_tbl_ptrs[tblno];
1146 if (qtblptr != NULL) {
1147 for (i = 0; i < DCTSIZE; i++) {
1148 for (j = 0; j < i; j++) {
1149 qtemp = qtblptr->quantval[i*DCTSIZE+j];
1150 qtblptr->quantval[i*DCTSIZE+j] = qtblptr->quantval[j*DCTSIZE+i];
1151 qtblptr->quantval[j*DCTSIZE+i] = qtemp;
1152 }
1153 }
1154 }
1155 }
1156}
1157
1158
Guido Vollbeding5996a252009-06-27 00:00:00 +00001159/* Adjust Exif image parameters.
1160 *
1161 * We try to adjust the Tags ExifImageWidth and ExifImageHeight if possible.
1162 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001163
1164LOCAL(void)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001165adjust_exif_parameters (JOCTET FAR * data, unsigned int length,
1166 JDIMENSION new_width, JDIMENSION new_height)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001167{
Guido Vollbeding5996a252009-06-27 00:00:00 +00001168 boolean is_motorola; /* Flag for byte order */
1169 unsigned int number_of_tags, tagnum;
1170 unsigned int firstoffset, offset;
1171 JDIMENSION new_value;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001172
Guido Vollbeding5996a252009-06-27 00:00:00 +00001173 if (length < 12) return; /* Length of an IFD entry */
1174
1175 /* Discover byte order */
1176 if (GETJOCTET(data[0]) == 0x49 && GETJOCTET(data[1]) == 0x49)
1177 is_motorola = FALSE;
1178 else if (GETJOCTET(data[0]) == 0x4D && GETJOCTET(data[1]) == 0x4D)
1179 is_motorola = TRUE;
1180 else
1181 return;
1182
1183 /* Check Tag Mark */
1184 if (is_motorola) {
1185 if (GETJOCTET(data[2]) != 0) return;
1186 if (GETJOCTET(data[3]) != 0x2A) return;
1187 } else {
1188 if (GETJOCTET(data[3]) != 0) return;
1189 if (GETJOCTET(data[2]) != 0x2A) return;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001190 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001191
Guido Vollbeding5996a252009-06-27 00:00:00 +00001192 /* Get first IFD offset (offset to IFD0) */
1193 if (is_motorola) {
1194 if (GETJOCTET(data[4]) != 0) return;
1195 if (GETJOCTET(data[5]) != 0) return;
1196 firstoffset = GETJOCTET(data[6]);
1197 firstoffset <<= 8;
1198 firstoffset += GETJOCTET(data[7]);
1199 } else {
1200 if (GETJOCTET(data[7]) != 0) return;
1201 if (GETJOCTET(data[6]) != 0) return;
1202 firstoffset = GETJOCTET(data[5]);
1203 firstoffset <<= 8;
1204 firstoffset += GETJOCTET(data[4]);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001205 }
Guido Vollbeding5996a252009-06-27 00:00:00 +00001206 if (firstoffset > length - 2) return; /* check end of data segment */
1207
1208 /* Get the number of directory entries contained in this IFD */
1209 if (is_motorola) {
1210 number_of_tags = GETJOCTET(data[firstoffset]);
1211 number_of_tags <<= 8;
1212 number_of_tags += GETJOCTET(data[firstoffset+1]);
1213 } else {
1214 number_of_tags = GETJOCTET(data[firstoffset+1]);
1215 number_of_tags <<= 8;
1216 number_of_tags += GETJOCTET(data[firstoffset]);
1217 }
1218 if (number_of_tags == 0) return;
1219 firstoffset += 2;
1220
1221 /* Search for ExifSubIFD offset Tag in IFD0 */
1222 for (;;) {
1223 if (firstoffset > length - 12) return; /* check end of data segment */
1224 /* Get Tag number */
1225 if (is_motorola) {
1226 tagnum = GETJOCTET(data[firstoffset]);
1227 tagnum <<= 8;
1228 tagnum += GETJOCTET(data[firstoffset+1]);
1229 } else {
1230 tagnum = GETJOCTET(data[firstoffset+1]);
1231 tagnum <<= 8;
1232 tagnum += GETJOCTET(data[firstoffset]);
1233 }
1234 if (tagnum == 0x8769) break; /* found ExifSubIFD offset Tag */
1235 if (--number_of_tags == 0) return;
1236 firstoffset += 12;
1237 }
1238
1239 /* Get the ExifSubIFD offset */
1240 if (is_motorola) {
1241 if (GETJOCTET(data[firstoffset+8]) != 0) return;
1242 if (GETJOCTET(data[firstoffset+9]) != 0) return;
1243 offset = GETJOCTET(data[firstoffset+10]);
1244 offset <<= 8;
1245 offset += GETJOCTET(data[firstoffset+11]);
1246 } else {
1247 if (GETJOCTET(data[firstoffset+11]) != 0) return;
1248 if (GETJOCTET(data[firstoffset+10]) != 0) return;
1249 offset = GETJOCTET(data[firstoffset+9]);
1250 offset <<= 8;
1251 offset += GETJOCTET(data[firstoffset+8]);
1252 }
1253 if (offset > length - 2) return; /* check end of data segment */
1254
1255 /* Get the number of directory entries contained in this SubIFD */
1256 if (is_motorola) {
1257 number_of_tags = GETJOCTET(data[offset]);
1258 number_of_tags <<= 8;
1259 number_of_tags += GETJOCTET(data[offset+1]);
1260 } else {
1261 number_of_tags = GETJOCTET(data[offset+1]);
1262 number_of_tags <<= 8;
1263 number_of_tags += GETJOCTET(data[offset]);
1264 }
1265 if (number_of_tags < 2) return;
1266 offset += 2;
1267
1268 /* Search for ExifImageWidth and ExifImageHeight Tags in this SubIFD */
1269 do {
1270 if (offset > length - 12) return; /* check end of data segment */
1271 /* Get Tag number */
1272 if (is_motorola) {
1273 tagnum = GETJOCTET(data[offset]);
1274 tagnum <<= 8;
1275 tagnum += GETJOCTET(data[offset+1]);
1276 } else {
1277 tagnum = GETJOCTET(data[offset+1]);
1278 tagnum <<= 8;
1279 tagnum += GETJOCTET(data[offset]);
1280 }
1281 if (tagnum == 0xA002 || tagnum == 0xA003) {
1282 if (tagnum == 0xA002)
1283 new_value = new_width; /* ExifImageWidth Tag */
1284 else
1285 new_value = new_height; /* ExifImageHeight Tag */
1286 if (is_motorola) {
1287 data[offset+2] = 0; /* Format = unsigned long (4 octets) */
1288 data[offset+3] = 4;
1289 data[offset+4] = 0; /* Number Of Components = 1 */
1290 data[offset+5] = 0;
1291 data[offset+6] = 0;
1292 data[offset+7] = 1;
1293 data[offset+8] = 0;
1294 data[offset+9] = 0;
1295 data[offset+10] = (JOCTET)((new_value >> 8) & 0xFF);
1296 data[offset+11] = (JOCTET)(new_value & 0xFF);
1297 } else {
1298 data[offset+2] = 4; /* Format = unsigned long (4 octets) */
1299 data[offset+3] = 0;
1300 data[offset+4] = 1; /* Number Of Components = 1 */
1301 data[offset+5] = 0;
1302 data[offset+6] = 0;
1303 data[offset+7] = 0;
1304 data[offset+8] = (JOCTET)(new_value & 0xFF);
1305 data[offset+9] = (JOCTET)((new_value >> 8) & 0xFF);
1306 data[offset+10] = 0;
1307 data[offset+11] = 0;
1308 }
1309 }
1310 offset += 12;
1311 } while (--number_of_tags);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001312}
1313
1314
1315/* Adjust output image parameters as needed.
1316 *
1317 * This must be called after jpeg_copy_critical_parameters()
1318 * and before jpeg_write_coefficients().
1319 *
1320 * The return value is the set of virtual coefficient arrays to be written
1321 * (either the ones allocated by jtransform_request_workspace, or the
1322 * original source data arrays). The caller will need to pass this value
1323 * to jpeg_write_coefficients().
1324 */
1325
1326GLOBAL(jvirt_barray_ptr *)
1327jtransform_adjust_parameters (j_decompress_ptr srcinfo,
1328 j_compress_ptr dstinfo,
1329 jvirt_barray_ptr *src_coef_arrays,
1330 jpeg_transform_info *info)
1331{
1332 /* If force-to-grayscale is requested, adjust destination parameters */
1333 if (info->force_grayscale) {
Guido Vollbeding5996a252009-06-27 00:00:00 +00001334 /* First, ensure we have YCbCr or grayscale data, and that the source's
1335 * Y channel is full resolution. (No reasonable person would make Y
1336 * be less than full resolution, so actually coping with that case
1337 * isn't worth extra code space. But we check it to avoid crashing.)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001338 */
Guido Vollbeding5996a252009-06-27 00:00:00 +00001339 if (((dstinfo->jpeg_color_space == JCS_YCbCr &&
1340 dstinfo->num_components == 3) ||
1341 (dstinfo->jpeg_color_space == JCS_GRAYSCALE &&
1342 dstinfo->num_components == 1)) &&
1343 srcinfo->comp_info[0].h_samp_factor == srcinfo->max_h_samp_factor &&
1344 srcinfo->comp_info[0].v_samp_factor == srcinfo->max_v_samp_factor) {
1345 /* We use jpeg_set_colorspace to make sure subsidiary settings get fixed
1346 * properly. Among other things, it sets the target h_samp_factor &
1347 * v_samp_factor to 1, which typically won't match the source.
1348 * We have to preserve the source's quantization table number, however.
1349 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001350 int sv_quant_tbl_no = dstinfo->comp_info[0].quant_tbl_no;
1351 jpeg_set_colorspace(dstinfo, JCS_GRAYSCALE);
1352 dstinfo->comp_info[0].quant_tbl_no = sv_quant_tbl_no;
1353 } else {
1354 /* Sorry, can't do it */
1355 ERREXIT(dstinfo, JERR_CONVERSION_NOTIMPL);
1356 }
Guido Vollbeding5996a252009-06-27 00:00:00 +00001357 } else if (info->num_components == 1) {
1358 /* For a single-component source, we force the destination sampling factors
1359 * to 1x1, with or without force_grayscale. This is useful because some
1360 * decoders choke on grayscale images with other sampling factors.
1361 */
1362 dstinfo->comp_info[0].h_samp_factor = 1;
1363 dstinfo->comp_info[0].v_samp_factor = 1;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001364 }
1365
Guido Vollbeding5996a252009-06-27 00:00:00 +00001366 /* Correct the destination's image dimensions as necessary
Guido Vollbeding989630f2010-01-10 00:00:00 +00001367 * for rotate/flip, resize, and crop operations.
Guido Vollbeding5996a252009-06-27 00:00:00 +00001368 */
DRCc04bd3c2010-10-10 02:15:56 +00001369#if JPEG_LIB_VERSION >= 70
Guido Vollbeding989630f2010-01-10 00:00:00 +00001370 dstinfo->jpeg_width = info->output_width;
1371 dstinfo->jpeg_height = info->output_height;
DRCc04bd3c2010-10-10 02:15:56 +00001372#endif
Guido Vollbeding5996a252009-06-27 00:00:00 +00001373
1374 /* Transpose destination image parameters */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001375 switch (info->transform) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001376 case JXFORM_TRANSPOSE:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001377 case JXFORM_TRANSVERSE:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001378 case JXFORM_ROT_90:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001379 case JXFORM_ROT_270:
DRC9a648cc2010-10-10 02:48:21 +00001380#if JPEG_LIB_VERSION < 70
1381 dstinfo->image_width = info->output_height;
1382 dstinfo->image_height = info->output_width;
1383#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001384 transpose_critical_parameters(dstinfo);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001385 break;
Guido Vollbeding5996a252009-06-27 00:00:00 +00001386 default:
DRC9a648cc2010-10-10 02:48:21 +00001387#if JPEG_LIB_VERSION < 70
1388 dstinfo->image_width = info->output_width;
1389 dstinfo->image_height = info->output_height;
1390#endif
Guido Vollbeding5996a252009-06-27 00:00:00 +00001391 break;
1392 }
1393
1394 /* Adjust Exif properties */
1395 if (srcinfo->marker_list != NULL &&
1396 srcinfo->marker_list->marker == JPEG_APP0+1 &&
1397 srcinfo->marker_list->data_length >= 6 &&
1398 GETJOCTET(srcinfo->marker_list->data[0]) == 0x45 &&
1399 GETJOCTET(srcinfo->marker_list->data[1]) == 0x78 &&
1400 GETJOCTET(srcinfo->marker_list->data[2]) == 0x69 &&
1401 GETJOCTET(srcinfo->marker_list->data[3]) == 0x66 &&
1402 GETJOCTET(srcinfo->marker_list->data[4]) == 0 &&
1403 GETJOCTET(srcinfo->marker_list->data[5]) == 0) {
1404 /* Suppress output of JFIF marker */
1405 dstinfo->write_JFIF_header = FALSE;
DRCc04bd3c2010-10-10 02:15:56 +00001406#if JPEG_LIB_VERSION >= 70
Guido Vollbeding5996a252009-06-27 00:00:00 +00001407 /* Adjust Exif image parameters */
Guido Vollbeding989630f2010-01-10 00:00:00 +00001408 if (dstinfo->jpeg_width != srcinfo->image_width ||
1409 dstinfo->jpeg_height != srcinfo->image_height)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001410 /* Align data segment to start of TIFF structure for parsing */
1411 adjust_exif_parameters(srcinfo->marker_list->data + 6,
1412 srcinfo->marker_list->data_length - 6,
Guido Vollbeding989630f2010-01-10 00:00:00 +00001413 dstinfo->jpeg_width, dstinfo->jpeg_height);
DRCc04bd3c2010-10-10 02:15:56 +00001414#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001415 }
1416
1417 /* Return the appropriate output data set */
1418 if (info->workspace_coef_arrays != NULL)
1419 return info->workspace_coef_arrays;
1420 return src_coef_arrays;
1421}
1422
1423
1424/* Execute the actual transformation, if any.
1425 *
1426 * This must be called *after* jpeg_write_coefficients, because it depends
1427 * on jpeg_write_coefficients to have computed subsidiary values such as
1428 * the per-component width and height fields in the destination object.
1429 *
1430 * Note that some transformations will modify the source data arrays!
1431 */
1432
1433GLOBAL(void)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001434jtransform_execute_transform (j_decompress_ptr srcinfo,
1435 j_compress_ptr dstinfo,
1436 jvirt_barray_ptr *src_coef_arrays,
1437 jpeg_transform_info *info)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001438{
1439 jvirt_barray_ptr *dst_coef_arrays = info->workspace_coef_arrays;
1440
Guido Vollbeding5996a252009-06-27 00:00:00 +00001441 /* Note: conditions tested here should match those in switch statement
1442 * in jtransform_request_workspace()
1443 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001444 switch (info->transform) {
1445 case JXFORM_NONE:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001446 if (info->x_crop_offset != 0 || info->y_crop_offset != 0)
1447 do_crop(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1448 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001449 break;
1450 case JXFORM_FLIP_H:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001451 if (info->y_crop_offset != 0)
1452 do_flip_h(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1453 src_coef_arrays, dst_coef_arrays);
1454 else
1455 do_flip_h_no_crop(srcinfo, dstinfo, info->x_crop_offset,
1456 src_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001457 break;
1458 case JXFORM_FLIP_V:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001459 do_flip_v(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1460 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001461 break;
1462 case JXFORM_TRANSPOSE:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001463 do_transpose(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1464 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001465 break;
1466 case JXFORM_TRANSVERSE:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001467 do_transverse(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1468 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001469 break;
1470 case JXFORM_ROT_90:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001471 do_rot_90(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1472 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001473 break;
1474 case JXFORM_ROT_180:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001475 do_rot_180(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1476 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001477 break;
1478 case JXFORM_ROT_270:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001479 do_rot_270(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1480 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001481 break;
1482 }
1483}
1484
Guido Vollbeding5996a252009-06-27 00:00:00 +00001485/* jtransform_perfect_transform
1486 *
1487 * Determine whether lossless transformation is perfectly
1488 * possible for a specified image and transformation.
1489 *
1490 * Inputs:
1491 * image_width, image_height: source image dimensions.
1492 * MCU_width, MCU_height: pixel dimensions of MCU.
1493 * transform: transformation identifier.
1494 * Parameter sources from initialized jpeg_struct
1495 * (after reading source header):
1496 * image_width = cinfo.image_width
1497 * image_height = cinfo.image_height
Guido Vollbeding989630f2010-01-10 00:00:00 +00001498 * MCU_width = cinfo.max_h_samp_factor * cinfo.block_size
1499 * MCU_height = cinfo.max_v_samp_factor * cinfo.block_size
Guido Vollbeding5996a252009-06-27 00:00:00 +00001500 * Result:
1501 * TRUE = perfect transformation possible
1502 * FALSE = perfect transformation not possible
1503 * (may use custom action then)
1504 */
1505
1506GLOBAL(boolean)
1507jtransform_perfect_transform(JDIMENSION image_width, JDIMENSION image_height,
1508 int MCU_width, int MCU_height,
1509 JXFORM_CODE transform)
1510{
1511 boolean result = TRUE; /* initialize TRUE */
1512
1513 switch (transform) {
1514 case JXFORM_FLIP_H:
1515 case JXFORM_ROT_270:
1516 if (image_width % (JDIMENSION) MCU_width)
1517 result = FALSE;
1518 break;
1519 case JXFORM_FLIP_V:
1520 case JXFORM_ROT_90:
1521 if (image_height % (JDIMENSION) MCU_height)
1522 result = FALSE;
1523 break;
1524 case JXFORM_TRANSVERSE:
1525 case JXFORM_ROT_180:
1526 if (image_width % (JDIMENSION) MCU_width)
1527 result = FALSE;
1528 if (image_height % (JDIMENSION) MCU_height)
1529 result = FALSE;
1530 break;
1531 default:
1532 break;
1533 }
1534
1535 return result;
1536}
1537
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001538#endif /* TRANSFORMS_SUPPORTED */
1539
1540
1541/* Setup decompression object to save desired markers in memory.
1542 * This must be called before jpeg_read_header() to have the desired effect.
1543 */
1544
1545GLOBAL(void)
1546jcopy_markers_setup (j_decompress_ptr srcinfo, JCOPY_OPTION option)
1547{
1548#ifdef SAVE_MARKERS_SUPPORTED
1549 int m;
1550
1551 /* Save comments except under NONE option */
1552 if (option != JCOPYOPT_NONE) {
1553 jpeg_save_markers(srcinfo, JPEG_COM, 0xFFFF);
1554 }
1555 /* Save all types of APPn markers iff ALL option */
1556 if (option == JCOPYOPT_ALL) {
1557 for (m = 0; m < 16; m++)
1558 jpeg_save_markers(srcinfo, JPEG_APP0 + m, 0xFFFF);
1559 }
1560#endif /* SAVE_MARKERS_SUPPORTED */
1561}
1562
1563/* Copy markers saved in the given source object to the destination object.
1564 * This should be called just after jpeg_start_compress() or
1565 * jpeg_write_coefficients().
1566 * Note that those routines will have written the SOI, and also the
1567 * JFIF APP0 or Adobe APP14 markers if selected.
1568 */
1569
1570GLOBAL(void)
1571jcopy_markers_execute (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
1572 JCOPY_OPTION option)
1573{
1574 jpeg_saved_marker_ptr marker;
1575
1576 /* In the current implementation, we don't actually need to examine the
1577 * option flag here; we just copy everything that got saved.
1578 * But to avoid confusion, we do not output JFIF and Adobe APP14 markers
1579 * if the encoder library already wrote one.
1580 */
1581 for (marker = srcinfo->marker_list; marker != NULL; marker = marker->next) {
1582 if (dstinfo->write_JFIF_header &&
1583 marker->marker == JPEG_APP0 &&
1584 marker->data_length >= 5 &&
1585 GETJOCTET(marker->data[0]) == 0x4A &&
1586 GETJOCTET(marker->data[1]) == 0x46 &&
1587 GETJOCTET(marker->data[2]) == 0x49 &&
1588 GETJOCTET(marker->data[3]) == 0x46 &&
1589 GETJOCTET(marker->data[4]) == 0)
1590 continue; /* reject duplicate JFIF */
1591 if (dstinfo->write_Adobe_marker &&
1592 marker->marker == JPEG_APP0+14 &&
1593 marker->data_length >= 5 &&
1594 GETJOCTET(marker->data[0]) == 0x41 &&
1595 GETJOCTET(marker->data[1]) == 0x64 &&
1596 GETJOCTET(marker->data[2]) == 0x6F &&
1597 GETJOCTET(marker->data[3]) == 0x62 &&
1598 GETJOCTET(marker->data[4]) == 0x65)
1599 continue; /* reject duplicate Adobe */
1600#ifdef NEED_FAR_POINTERS
1601 /* We could use jpeg_write_marker if the data weren't FAR... */
1602 {
1603 unsigned int i;
1604 jpeg_write_m_header(dstinfo, marker->marker, marker->data_length);
1605 for (i = 0; i < marker->data_length; i++)
1606 jpeg_write_m_byte(dstinfo, marker->data[i]);
1607 }
1608#else
1609 jpeg_write_marker(dstinfo, marker->marker,
1610 marker->data, marker->data_length);
1611#endif
1612 }
1613}