blob: 70e8c4985ff5e7999017507676edfe47a0828118 [file] [log] [blame]
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001/*
2 * transupp.c
3 *
DRCcf763c02013-01-01 09:51:37 +00004 * This file was part of the Independent JPEG Group's software:
Guido Vollbeding5829cb22012-01-15 00:00:00 +00005 * Copyright (C) 1997-2011, Thomas G. Lane, Guido Vollbeding.
DRCa6ef2822013-09-28 03:23:49 +00006 * libjpeg-turbo Modifications:
DRCc04bd3c2010-10-10 02:15:56 +00007 * Copyright (C) 2010, D. R. Commander.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file contains image transformation routines and other utility code
11 * used by the jpegtran sample application. These are NOT part of the core
12 * JPEG library. But we keep these routines separate from jpegtran.c to
13 * ease the task of maintaining jpegtran-like programs that have other user
14 * interfaces.
15 */
16
17/* Although this file really shouldn't have access to the library internals,
18 * it's helpful to let it call jround_up() and jcopy_block_row().
19 */
20#define JPEG_INTERNALS
21
22#include "jinclude.h"
23#include "jpeglib.h"
24#include "transupp.h" /* My own external interface */
DRCc04bd3c2010-10-10 02:15:56 +000025#include "jpegcomp.h"
Guido Vollbeding5996a252009-06-27 00:00:00 +000026#include <ctype.h> /* to declare isdigit() */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000027
28
DRCc04bd3c2010-10-10 02:15:56 +000029#if JPEG_LIB_VERSION >= 70
30#define dstinfo_min_DCT_h_scaled_size dstinfo->min_DCT_h_scaled_size
31#define dstinfo_min_DCT_v_scaled_size dstinfo->min_DCT_v_scaled_size
32#else
33#define dstinfo_min_DCT_h_scaled_size DCTSIZE
34#define dstinfo_min_DCT_v_scaled_size DCTSIZE
35#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000036
37
38#if TRANSFORMS_SUPPORTED
39
40/*
41 * Lossless image transformation routines. These routines work on DCT
42 * coefficient arrays and thus do not require any lossy decompression
43 * or recompression of the image.
Guido Vollbeding5996a252009-06-27 00:00:00 +000044 * Thanks to Guido Vollbeding for the initial design and code of this feature,
45 * and to Ben Jackson for introducing the cropping feature.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000046 *
47 * Horizontal flipping is done in-place, using a single top-to-bottom
48 * pass through the virtual source array. It will thus be much the
49 * fastest option for images larger than main memory.
50 *
51 * The other routines require a set of destination virtual arrays, so they
52 * need twice as much memory as jpegtran normally does. The destination
53 * arrays are always written in normal scan order (top to bottom) because
54 * the virtual array manager expects this. The source arrays will be scanned
55 * in the corresponding order, which means multiple passes through the source
56 * arrays for most of the transforms. That could result in much thrashing
57 * if the image is larger than main memory.
58 *
Guido Vollbeding5996a252009-06-27 00:00:00 +000059 * If cropping or trimming is involved, the destination arrays may be smaller
60 * than the source arrays. Note it is not possible to do horizontal flip
61 * in-place when a nonzero Y crop offset is specified, since we'd have to move
62 * data from one block row to another but the virtual array manager doesn't
63 * guarantee we can touch more than one row at a time. So in that case,
64 * we have to use a separate destination array.
65 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000066 * Some notes about the operating environment of the individual transform
67 * routines:
68 * 1. Both the source and destination virtual arrays are allocated from the
69 * source JPEG object, and therefore should be manipulated by calling the
70 * source's memory manager.
71 * 2. The destination's component count should be used. It may be smaller
72 * than the source's when forcing to grayscale.
73 * 3. Likewise the destination's sampling factors should be used. When
74 * forcing to grayscale the destination's sampling factors will be all 1,
75 * and we may as well take that as the effective iMCU size.
76 * 4. When "trim" is in effect, the destination's dimensions will be the
77 * trimmed values but the source's will be untrimmed.
Guido Vollbeding5996a252009-06-27 00:00:00 +000078 * 5. When "crop" is in effect, the destination's dimensions will be the
79 * cropped values but the source's will be uncropped. Each transform
80 * routine is responsible for picking up source data starting at the
81 * correct X and Y offset for the crop region. (The X and Y offsets
82 * passed to the transform routines are measured in iMCU blocks of the
83 * destination.)
84 * 6. All the routines assume that the source and destination buffers are
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000085 * padded out to a full iMCU boundary. This is true, although for the
86 * source buffer it is an undocumented property of jdcoefct.c.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000087 */
88
89
90LOCAL(void)
Guido Vollbeding5996a252009-06-27 00:00:00 +000091do_crop (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
92 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
93 jvirt_barray_ptr *src_coef_arrays,
94 jvirt_barray_ptr *dst_coef_arrays)
95/* Crop. This is only used when no rotate/flip is requested with the crop. */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000096{
Guido Vollbeding5996a252009-06-27 00:00:00 +000097 JDIMENSION dst_blk_y, x_crop_blocks, y_crop_blocks;
98 int ci, offset_y;
99 JBLOCKARRAY src_buffer, dst_buffer;
100 jpeg_component_info *compptr;
101
102 /* We simply have to copy the right amount of data (the destination's
103 * image size) starting at the given X and Y offsets in the source.
104 */
105 for (ci = 0; ci < dstinfo->num_components; ci++) {
106 compptr = dstinfo->comp_info + ci;
107 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
108 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
109 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
110 dst_blk_y += compptr->v_samp_factor) {
111 dst_buffer = (*srcinfo->mem->access_virt_barray)
112 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
113 (JDIMENSION) compptr->v_samp_factor, TRUE);
114 src_buffer = (*srcinfo->mem->access_virt_barray)
115 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
116 dst_blk_y + y_crop_blocks,
117 (JDIMENSION) compptr->v_samp_factor, FALSE);
118 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
119 jcopy_block_row(src_buffer[offset_y] + x_crop_blocks,
120 dst_buffer[offset_y],
121 compptr->width_in_blocks);
122 }
123 }
124 }
125}
126
127
128LOCAL(void)
129do_flip_h_no_crop (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
130 JDIMENSION x_crop_offset,
131 jvirt_barray_ptr *src_coef_arrays)
132/* Horizontal flip; done in-place, so no separate dest array is required.
133 * NB: this only works when y_crop_offset is zero.
134 */
135{
136 JDIMENSION MCU_cols, comp_width, blk_x, blk_y, x_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000137 int ci, k, offset_y;
138 JBLOCKARRAY buffer;
139 JCOEFPTR ptr1, ptr2;
140 JCOEF temp1, temp2;
141 jpeg_component_info *compptr;
142
143 /* Horizontal mirroring of DCT blocks is accomplished by swapping
144 * pairs of blocks in-place. Within a DCT block, we perform horizontal
145 * mirroring by changing the signs of odd-numbered columns.
146 * Partial iMCUs at the right edge are left untouched.
147 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000148 MCU_cols = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000149 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000150
151 for (ci = 0; ci < dstinfo->num_components; ci++) {
152 compptr = dstinfo->comp_info + ci;
153 comp_width = MCU_cols * compptr->h_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000154 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000155 for (blk_y = 0; blk_y < compptr->height_in_blocks;
156 blk_y += compptr->v_samp_factor) {
157 buffer = (*srcinfo->mem->access_virt_barray)
158 ((j_common_ptr) srcinfo, src_coef_arrays[ci], blk_y,
159 (JDIMENSION) compptr->v_samp_factor, TRUE);
160 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000161 /* Do the mirroring */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000162 for (blk_x = 0; blk_x * 2 < comp_width; blk_x++) {
163 ptr1 = buffer[offset_y][blk_x];
164 ptr2 = buffer[offset_y][comp_width - blk_x - 1];
165 /* this unrolled loop doesn't need to know which row it's on... */
166 for (k = 0; k < DCTSIZE2; k += 2) {
167 temp1 = *ptr1; /* swap even column */
168 temp2 = *ptr2;
169 *ptr1++ = temp2;
170 *ptr2++ = temp1;
171 temp1 = *ptr1; /* swap odd column with sign change */
172 temp2 = *ptr2;
173 *ptr1++ = -temp2;
174 *ptr2++ = -temp1;
175 }
176 }
Guido Vollbeding5996a252009-06-27 00:00:00 +0000177 if (x_crop_blocks > 0) {
178 /* Now left-justify the portion of the data to be kept.
179 * We can't use a single jcopy_block_row() call because that routine
180 * depends on memcpy(), whose behavior is unspecified for overlapping
181 * source and destination areas. Sigh.
182 */
183 for (blk_x = 0; blk_x < compptr->width_in_blocks; blk_x++) {
184 jcopy_block_row(buffer[offset_y] + blk_x + x_crop_blocks,
185 buffer[offset_y] + blk_x,
186 (JDIMENSION) 1);
187 }
188 }
189 }
190 }
191 }
192}
193
194
195LOCAL(void)
196do_flip_h (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
197 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
198 jvirt_barray_ptr *src_coef_arrays,
199 jvirt_barray_ptr *dst_coef_arrays)
200/* Horizontal flip in general cropping case */
201{
202 JDIMENSION MCU_cols, comp_width, dst_blk_x, dst_blk_y;
203 JDIMENSION x_crop_blocks, y_crop_blocks;
204 int ci, k, offset_y;
205 JBLOCKARRAY src_buffer, dst_buffer;
206 JBLOCKROW src_row_ptr, dst_row_ptr;
207 JCOEFPTR src_ptr, dst_ptr;
208 jpeg_component_info *compptr;
209
210 /* Here we must output into a separate array because we can't touch
211 * different rows of a single virtual array simultaneously. Otherwise,
212 * this is essentially the same as the routine above.
213 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000214 MCU_cols = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000215 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Guido Vollbeding5996a252009-06-27 00:00:00 +0000216
217 for (ci = 0; ci < dstinfo->num_components; ci++) {
218 compptr = dstinfo->comp_info + ci;
219 comp_width = MCU_cols * compptr->h_samp_factor;
220 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
221 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
222 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
223 dst_blk_y += compptr->v_samp_factor) {
224 dst_buffer = (*srcinfo->mem->access_virt_barray)
225 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
226 (JDIMENSION) compptr->v_samp_factor, TRUE);
227 src_buffer = (*srcinfo->mem->access_virt_barray)
228 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
229 dst_blk_y + y_crop_blocks,
230 (JDIMENSION) compptr->v_samp_factor, FALSE);
231 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
232 dst_row_ptr = dst_buffer[offset_y];
233 src_row_ptr = src_buffer[offset_y];
234 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks; dst_blk_x++) {
235 if (x_crop_blocks + dst_blk_x < comp_width) {
236 /* Do the mirrorable blocks */
237 dst_ptr = dst_row_ptr[dst_blk_x];
238 src_ptr = src_row_ptr[comp_width - x_crop_blocks - dst_blk_x - 1];
239 /* this unrolled loop doesn't need to know which row it's on... */
240 for (k = 0; k < DCTSIZE2; k += 2) {
241 *dst_ptr++ = *src_ptr++; /* copy even column */
242 *dst_ptr++ = - *src_ptr++; /* copy odd column with sign change */
243 }
244 } else {
245 /* Copy last partial block(s) verbatim */
246 jcopy_block_row(src_row_ptr + dst_blk_x + x_crop_blocks,
247 dst_row_ptr + dst_blk_x,
248 (JDIMENSION) 1);
249 }
250 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000251 }
252 }
253 }
254}
255
256
257LOCAL(void)
258do_flip_v (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000259 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000260 jvirt_barray_ptr *src_coef_arrays,
261 jvirt_barray_ptr *dst_coef_arrays)
262/* Vertical flip */
263{
264 JDIMENSION MCU_rows, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000265 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000266 int ci, i, j, offset_y;
267 JBLOCKARRAY src_buffer, dst_buffer;
268 JBLOCKROW src_row_ptr, dst_row_ptr;
269 JCOEFPTR src_ptr, dst_ptr;
270 jpeg_component_info *compptr;
271
272 /* We output into a separate array because we can't touch different
273 * rows of the source virtual array simultaneously. Otherwise, this
274 * is a pretty straightforward analog of horizontal flip.
275 * Within a DCT block, vertical mirroring is done by changing the signs
276 * of odd-numbered rows.
277 * Partial iMCUs at the bottom edge are copied verbatim.
278 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000279 MCU_rows = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000280 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000281
282 for (ci = 0; ci < dstinfo->num_components; ci++) {
283 compptr = dstinfo->comp_info + ci;
284 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000285 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
286 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000287 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
288 dst_blk_y += compptr->v_samp_factor) {
289 dst_buffer = (*srcinfo->mem->access_virt_barray)
290 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
291 (JDIMENSION) compptr->v_samp_factor, TRUE);
Guido Vollbeding5996a252009-06-27 00:00:00 +0000292 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000293 /* Row is within the mirrorable area. */
294 src_buffer = (*srcinfo->mem->access_virt_barray)
295 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
Guido Vollbeding5996a252009-06-27 00:00:00 +0000296 comp_height - y_crop_blocks - dst_blk_y -
297 (JDIMENSION) compptr->v_samp_factor,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000298 (JDIMENSION) compptr->v_samp_factor, FALSE);
299 } else {
300 /* Bottom-edge blocks will be copied verbatim. */
301 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000302 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
303 dst_blk_y + y_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000304 (JDIMENSION) compptr->v_samp_factor, FALSE);
305 }
306 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000307 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000308 /* Row is within the mirrorable area. */
309 dst_row_ptr = dst_buffer[offset_y];
310 src_row_ptr = src_buffer[compptr->v_samp_factor - offset_y - 1];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000311 src_row_ptr += x_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000312 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
313 dst_blk_x++) {
314 dst_ptr = dst_row_ptr[dst_blk_x];
315 src_ptr = src_row_ptr[dst_blk_x];
316 for (i = 0; i < DCTSIZE; i += 2) {
317 /* copy even row */
318 for (j = 0; j < DCTSIZE; j++)
319 *dst_ptr++ = *src_ptr++;
320 /* copy odd row with sign change */
321 for (j = 0; j < DCTSIZE; j++)
322 *dst_ptr++ = - *src_ptr++;
323 }
324 }
325 } else {
326 /* Just copy row verbatim. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000327 jcopy_block_row(src_buffer[offset_y] + x_crop_blocks,
328 dst_buffer[offset_y],
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000329 compptr->width_in_blocks);
330 }
331 }
332 }
333 }
334}
335
336
337LOCAL(void)
338do_transpose (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000339 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000340 jvirt_barray_ptr *src_coef_arrays,
341 jvirt_barray_ptr *dst_coef_arrays)
342/* Transpose source into destination */
343{
Guido Vollbeding5996a252009-06-27 00:00:00 +0000344 JDIMENSION dst_blk_x, dst_blk_y, x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000345 int ci, i, j, offset_x, offset_y;
346 JBLOCKARRAY src_buffer, dst_buffer;
347 JCOEFPTR src_ptr, dst_ptr;
348 jpeg_component_info *compptr;
349
350 /* Transposing pixels within a block just requires transposing the
351 * DCT coefficients.
352 * Partial iMCUs at the edges require no special treatment; we simply
353 * process all the available DCT blocks for every component.
354 */
355 for (ci = 0; ci < dstinfo->num_components; ci++) {
356 compptr = dstinfo->comp_info + ci;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000357 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
358 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000359 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
360 dst_blk_y += compptr->v_samp_factor) {
361 dst_buffer = (*srcinfo->mem->access_virt_barray)
362 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
363 (JDIMENSION) compptr->v_samp_factor, TRUE);
364 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
365 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
366 dst_blk_x += compptr->h_samp_factor) {
367 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000368 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
369 dst_blk_x + x_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000370 (JDIMENSION) compptr->h_samp_factor, FALSE);
371 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000372 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000373 src_ptr = src_buffer[offset_x][dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000374 for (i = 0; i < DCTSIZE; i++)
375 for (j = 0; j < DCTSIZE; j++)
376 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
377 }
378 }
379 }
380 }
381 }
382}
383
384
385LOCAL(void)
386do_rot_90 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000387 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000388 jvirt_barray_ptr *src_coef_arrays,
389 jvirt_barray_ptr *dst_coef_arrays)
390/* 90 degree rotation is equivalent to
391 * 1. Transposing the image;
392 * 2. Horizontal mirroring.
393 * These two steps are merged into a single processing routine.
394 */
395{
396 JDIMENSION MCU_cols, comp_width, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000397 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000398 int ci, i, j, offset_x, offset_y;
399 JBLOCKARRAY src_buffer, dst_buffer;
400 JCOEFPTR src_ptr, dst_ptr;
401 jpeg_component_info *compptr;
402
403 /* Because of the horizontal mirror step, we can't process partial iMCUs
404 * at the (output) right edge properly. They just get transposed and
405 * not mirrored.
406 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000407 MCU_cols = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000408 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000409
410 for (ci = 0; ci < dstinfo->num_components; ci++) {
411 compptr = dstinfo->comp_info + ci;
412 comp_width = MCU_cols * compptr->h_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000413 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
414 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000415 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
416 dst_blk_y += compptr->v_samp_factor) {
417 dst_buffer = (*srcinfo->mem->access_virt_barray)
418 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
419 (JDIMENSION) compptr->v_samp_factor, TRUE);
420 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
421 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
422 dst_blk_x += compptr->h_samp_factor) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000423 if (x_crop_blocks + dst_blk_x < comp_width) {
424 /* Block is within the mirrorable area. */
425 src_buffer = (*srcinfo->mem->access_virt_barray)
426 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
427 comp_width - x_crop_blocks - dst_blk_x -
428 (JDIMENSION) compptr->h_samp_factor,
429 (JDIMENSION) compptr->h_samp_factor, FALSE);
430 } else {
431 /* Edge blocks are transposed but not mirrored. */
432 src_buffer = (*srcinfo->mem->access_virt_barray)
433 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
434 dst_blk_x + x_crop_blocks,
435 (JDIMENSION) compptr->h_samp_factor, FALSE);
436 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000437 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000438 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
439 if (x_crop_blocks + dst_blk_x < comp_width) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000440 /* Block is within the mirrorable area. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000441 src_ptr = src_buffer[compptr->h_samp_factor - offset_x - 1]
442 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000443 for (i = 0; i < DCTSIZE; i++) {
444 for (j = 0; j < DCTSIZE; j++)
445 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
446 i++;
447 for (j = 0; j < DCTSIZE; j++)
448 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
449 }
450 } else {
451 /* Edge blocks are transposed but not mirrored. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000452 src_ptr = src_buffer[offset_x]
453 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000454 for (i = 0; i < DCTSIZE; i++)
455 for (j = 0; j < DCTSIZE; j++)
456 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
457 }
458 }
459 }
460 }
461 }
462 }
463}
464
465
466LOCAL(void)
467do_rot_270 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000468 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000469 jvirt_barray_ptr *src_coef_arrays,
470 jvirt_barray_ptr *dst_coef_arrays)
471/* 270 degree rotation is equivalent to
472 * 1. Horizontal mirroring;
473 * 2. Transposing the image.
474 * These two steps are merged into a single processing routine.
475 */
476{
477 JDIMENSION MCU_rows, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000478 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000479 int ci, i, j, offset_x, offset_y;
480 JBLOCKARRAY src_buffer, dst_buffer;
481 JCOEFPTR src_ptr, dst_ptr;
482 jpeg_component_info *compptr;
483
484 /* Because of the horizontal mirror step, we can't process partial iMCUs
485 * at the (output) bottom edge properly. They just get transposed and
486 * not mirrored.
487 */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000488 MCU_rows = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000489 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000490
491 for (ci = 0; ci < dstinfo->num_components; ci++) {
492 compptr = dstinfo->comp_info + ci;
493 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000494 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
495 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000496 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
497 dst_blk_y += compptr->v_samp_factor) {
498 dst_buffer = (*srcinfo->mem->access_virt_barray)
499 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
500 (JDIMENSION) compptr->v_samp_factor, TRUE);
501 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
502 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
503 dst_blk_x += compptr->h_samp_factor) {
504 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000505 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
506 dst_blk_x + x_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000507 (JDIMENSION) compptr->h_samp_factor, FALSE);
508 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
509 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000510 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000511 /* Block is within the mirrorable area. */
512 src_ptr = src_buffer[offset_x]
Guido Vollbeding5996a252009-06-27 00:00:00 +0000513 [comp_height - y_crop_blocks - dst_blk_y - offset_y - 1];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000514 for (i = 0; i < DCTSIZE; i++) {
515 for (j = 0; j < DCTSIZE; j++) {
516 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
517 j++;
518 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
519 }
520 }
521 } else {
522 /* Edge blocks are transposed but not mirrored. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000523 src_ptr = src_buffer[offset_x]
524 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000525 for (i = 0; i < DCTSIZE; i++)
526 for (j = 0; j < DCTSIZE; j++)
527 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
528 }
529 }
530 }
531 }
532 }
533 }
534}
535
536
537LOCAL(void)
538do_rot_180 (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000539 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000540 jvirt_barray_ptr *src_coef_arrays,
541 jvirt_barray_ptr *dst_coef_arrays)
542/* 180 degree rotation is equivalent to
543 * 1. Vertical mirroring;
544 * 2. Horizontal mirroring.
545 * These two steps are merged into a single processing routine.
546 */
547{
548 JDIMENSION MCU_cols, MCU_rows, comp_width, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000549 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000550 int ci, i, j, offset_y;
551 JBLOCKARRAY src_buffer, dst_buffer;
552 JBLOCKROW src_row_ptr, dst_row_ptr;
553 JCOEFPTR src_ptr, dst_ptr;
554 jpeg_component_info *compptr;
555
Guido Vollbeding989630f2010-01-10 00:00:00 +0000556 MCU_cols = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000557 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000558 MCU_rows = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000559 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000560
561 for (ci = 0; ci < dstinfo->num_components; ci++) {
562 compptr = dstinfo->comp_info + ci;
563 comp_width = MCU_cols * compptr->h_samp_factor;
564 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000565 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
566 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000567 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
568 dst_blk_y += compptr->v_samp_factor) {
569 dst_buffer = (*srcinfo->mem->access_virt_barray)
570 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
571 (JDIMENSION) compptr->v_samp_factor, TRUE);
Guido Vollbeding5996a252009-06-27 00:00:00 +0000572 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000573 /* Row is within the vertically mirrorable area. */
574 src_buffer = (*srcinfo->mem->access_virt_barray)
575 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
Guido Vollbeding5996a252009-06-27 00:00:00 +0000576 comp_height - y_crop_blocks - dst_blk_y -
577 (JDIMENSION) compptr->v_samp_factor,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000578 (JDIMENSION) compptr->v_samp_factor, FALSE);
579 } else {
580 /* Bottom-edge rows are only mirrored horizontally. */
581 src_buffer = (*srcinfo->mem->access_virt_barray)
Guido Vollbeding5996a252009-06-27 00:00:00 +0000582 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
583 dst_blk_y + y_crop_blocks,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000584 (JDIMENSION) compptr->v_samp_factor, FALSE);
585 }
586 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000587 dst_row_ptr = dst_buffer[offset_y];
588 if (y_crop_blocks + dst_blk_y < comp_height) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000589 /* Row is within the mirrorable area. */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000590 src_row_ptr = src_buffer[compptr->v_samp_factor - offset_y - 1];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000591 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks; dst_blk_x++) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000592 dst_ptr = dst_row_ptr[dst_blk_x];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000593 if (x_crop_blocks + dst_blk_x < comp_width) {
594 /* Process the blocks that can be mirrored both ways. */
595 src_ptr = src_row_ptr[comp_width - x_crop_blocks - dst_blk_x - 1];
596 for (i = 0; i < DCTSIZE; i += 2) {
597 /* For even row, negate every odd column. */
598 for (j = 0; j < DCTSIZE; j += 2) {
599 *dst_ptr++ = *src_ptr++;
600 *dst_ptr++ = - *src_ptr++;
601 }
602 /* For odd row, negate every even column. */
603 for (j = 0; j < DCTSIZE; j += 2) {
604 *dst_ptr++ = - *src_ptr++;
605 *dst_ptr++ = *src_ptr++;
606 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000607 }
Guido Vollbeding5996a252009-06-27 00:00:00 +0000608 } else {
609 /* Any remaining right-edge blocks are only mirrored vertically. */
610 src_ptr = src_row_ptr[x_crop_blocks + dst_blk_x];
611 for (i = 0; i < DCTSIZE; i += 2) {
612 for (j = 0; j < DCTSIZE; j++)
613 *dst_ptr++ = *src_ptr++;
614 for (j = 0; j < DCTSIZE; j++)
615 *dst_ptr++ = - *src_ptr++;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000616 }
617 }
618 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000619 } else {
620 /* Remaining rows are just mirrored horizontally. */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000621 src_row_ptr = src_buffer[offset_y];
Guido Vollbeding5996a252009-06-27 00:00:00 +0000622 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks; dst_blk_x++) {
623 if (x_crop_blocks + dst_blk_x < comp_width) {
624 /* Process the blocks that can be mirrored. */
625 dst_ptr = dst_row_ptr[dst_blk_x];
626 src_ptr = src_row_ptr[comp_width - x_crop_blocks - dst_blk_x - 1];
627 for (i = 0; i < DCTSIZE2; i += 2) {
628 *dst_ptr++ = *src_ptr++;
629 *dst_ptr++ = - *src_ptr++;
630 }
631 } else {
632 /* Any remaining right-edge blocks are only copied. */
633 jcopy_block_row(src_row_ptr + dst_blk_x + x_crop_blocks,
634 dst_row_ptr + dst_blk_x,
635 (JDIMENSION) 1);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000636 }
637 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000638 }
639 }
640 }
641 }
642}
643
644
645LOCAL(void)
646do_transverse (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
Guido Vollbeding5996a252009-06-27 00:00:00 +0000647 JDIMENSION x_crop_offset, JDIMENSION y_crop_offset,
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000648 jvirt_barray_ptr *src_coef_arrays,
649 jvirt_barray_ptr *dst_coef_arrays)
650/* Transverse transpose is equivalent to
651 * 1. 180 degree rotation;
652 * 2. Transposition;
653 * or
654 * 1. Horizontal mirroring;
655 * 2. Transposition;
656 * 3. Horizontal mirroring.
657 * These steps are merged into a single processing routine.
658 */
659{
660 JDIMENSION MCU_cols, MCU_rows, comp_width, comp_height, dst_blk_x, dst_blk_y;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000661 JDIMENSION x_crop_blocks, y_crop_blocks;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000662 int ci, i, j, offset_x, offset_y;
663 JBLOCKARRAY src_buffer, dst_buffer;
664 JCOEFPTR src_ptr, dst_ptr;
665 jpeg_component_info *compptr;
666
Guido Vollbeding989630f2010-01-10 00:00:00 +0000667 MCU_cols = srcinfo->output_height /
DRCc04bd3c2010-10-10 02:15:56 +0000668 (dstinfo->max_h_samp_factor * dstinfo_min_DCT_h_scaled_size);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000669 MCU_rows = srcinfo->output_width /
DRCc04bd3c2010-10-10 02:15:56 +0000670 (dstinfo->max_v_samp_factor * dstinfo_min_DCT_v_scaled_size);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000671
672 for (ci = 0; ci < dstinfo->num_components; ci++) {
673 compptr = dstinfo->comp_info + ci;
674 comp_width = MCU_cols * compptr->h_samp_factor;
675 comp_height = MCU_rows * compptr->v_samp_factor;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000676 x_crop_blocks = x_crop_offset * compptr->h_samp_factor;
677 y_crop_blocks = y_crop_offset * compptr->v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000678 for (dst_blk_y = 0; dst_blk_y < compptr->height_in_blocks;
679 dst_blk_y += compptr->v_samp_factor) {
680 dst_buffer = (*srcinfo->mem->access_virt_barray)
681 ((j_common_ptr) srcinfo, dst_coef_arrays[ci], dst_blk_y,
682 (JDIMENSION) compptr->v_samp_factor, TRUE);
683 for (offset_y = 0; offset_y < compptr->v_samp_factor; offset_y++) {
684 for (dst_blk_x = 0; dst_blk_x < compptr->width_in_blocks;
685 dst_blk_x += compptr->h_samp_factor) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000686 if (x_crop_blocks + dst_blk_x < comp_width) {
687 /* Block is within the mirrorable area. */
688 src_buffer = (*srcinfo->mem->access_virt_barray)
689 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
690 comp_width - x_crop_blocks - dst_blk_x -
691 (JDIMENSION) compptr->h_samp_factor,
692 (JDIMENSION) compptr->h_samp_factor, FALSE);
693 } else {
694 src_buffer = (*srcinfo->mem->access_virt_barray)
695 ((j_common_ptr) srcinfo, src_coef_arrays[ci],
696 dst_blk_x + x_crop_blocks,
697 (JDIMENSION) compptr->h_samp_factor, FALSE);
698 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000699 for (offset_x = 0; offset_x < compptr->h_samp_factor; offset_x++) {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000700 dst_ptr = dst_buffer[offset_y][dst_blk_x + offset_x];
701 if (y_crop_blocks + dst_blk_y < comp_height) {
702 if (x_crop_blocks + dst_blk_x < comp_width) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000703 /* Block is within the mirrorable area. */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000704 src_ptr = src_buffer[compptr->h_samp_factor - offset_x - 1]
705 [comp_height - y_crop_blocks - dst_blk_y - offset_y - 1];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000706 for (i = 0; i < DCTSIZE; i++) {
707 for (j = 0; j < DCTSIZE; j++) {
708 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
709 j++;
710 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
711 }
712 i++;
713 for (j = 0; j < DCTSIZE; j++) {
714 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
715 j++;
716 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
717 }
718 }
719 } else {
720 /* Right-edge blocks are mirrored in y only */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000721 src_ptr = src_buffer[offset_x]
722 [comp_height - y_crop_blocks - dst_blk_y - offset_y - 1];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000723 for (i = 0; i < DCTSIZE; i++) {
724 for (j = 0; j < DCTSIZE; j++) {
725 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
726 j++;
727 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
728 }
729 }
730 }
731 } else {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000732 if (x_crop_blocks + dst_blk_x < comp_width) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000733 /* Bottom-edge blocks are mirrored in x only */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000734 src_ptr = src_buffer[compptr->h_samp_factor - offset_x - 1]
735 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000736 for (i = 0; i < DCTSIZE; i++) {
737 for (j = 0; j < DCTSIZE; j++)
738 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
739 i++;
740 for (j = 0; j < DCTSIZE; j++)
741 dst_ptr[j*DCTSIZE+i] = -src_ptr[i*DCTSIZE+j];
742 }
743 } else {
744 /* At lower right corner, just transpose, no mirroring */
Guido Vollbeding5996a252009-06-27 00:00:00 +0000745 src_ptr = src_buffer[offset_x]
746 [dst_blk_y + offset_y + y_crop_blocks];
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000747 for (i = 0; i < DCTSIZE; i++)
748 for (j = 0; j < DCTSIZE; j++)
749 dst_ptr[j*DCTSIZE+i] = src_ptr[i*DCTSIZE+j];
750 }
751 }
752 }
753 }
754 }
755 }
756 }
757}
758
759
Guido Vollbeding5996a252009-06-27 00:00:00 +0000760/* Parse an unsigned integer: subroutine for jtransform_parse_crop_spec.
761 * Returns TRUE if valid integer found, FALSE if not.
762 * *strptr is advanced over the digit string, and *result is set to its value.
763 */
764
765LOCAL(boolean)
766jt_read_integer (const char ** strptr, JDIMENSION * result)
767{
768 const char * ptr = *strptr;
769 JDIMENSION val = 0;
770
771 for (; isdigit(*ptr); ptr++) {
772 val = val * 10 + (JDIMENSION) (*ptr - '0');
773 }
774 *result = val;
775 if (ptr == *strptr)
776 return FALSE; /* oops, no digits */
777 *strptr = ptr;
778 return TRUE;
779}
780
781
782/* Parse a crop specification (written in X11 geometry style).
783 * The routine returns TRUE if the spec string is valid, FALSE if not.
784 *
785 * The crop spec string should have the format
Guido Vollbeding5829cb22012-01-15 00:00:00 +0000786 * <width>[f]x<height>[f]{+-}<xoffset>{+-}<yoffset>
Guido Vollbeding5996a252009-06-27 00:00:00 +0000787 * where width, height, xoffset, and yoffset are unsigned integers.
788 * Each of the elements can be omitted to indicate a default value.
789 * (A weakness of this style is that it is not possible to omit xoffset
790 * while specifying yoffset, since they look alike.)
791 *
792 * This code is loosely based on XParseGeometry from the X11 distribution.
793 */
794
795GLOBAL(boolean)
796jtransform_parse_crop_spec (jpeg_transform_info *info, const char *spec)
797{
798 info->crop = FALSE;
799 info->crop_width_set = JCROP_UNSET;
800 info->crop_height_set = JCROP_UNSET;
801 info->crop_xoffset_set = JCROP_UNSET;
802 info->crop_yoffset_set = JCROP_UNSET;
803
804 if (isdigit(*spec)) {
805 /* fetch width */
806 if (! jt_read_integer(&spec, &info->crop_width))
807 return FALSE;
Guido Vollbeding5829cb22012-01-15 00:00:00 +0000808 if (*spec == 'f' || *spec == 'F') {
809 spec++;
810 info->crop_width_set = JCROP_FORCE;
811 } else
812 info->crop_width_set = JCROP_POS;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000813 }
Guido Vollbeding5829cb22012-01-15 00:00:00 +0000814 if (*spec == 'x' || *spec == 'X') {
Guido Vollbeding5996a252009-06-27 00:00:00 +0000815 /* fetch height */
816 spec++;
817 if (! jt_read_integer(&spec, &info->crop_height))
818 return FALSE;
Guido Vollbeding5829cb22012-01-15 00:00:00 +0000819 if (*spec == 'f' || *spec == 'F') {
820 spec++;
821 info->crop_height_set = JCROP_FORCE;
822 } else
823 info->crop_height_set = JCROP_POS;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000824 }
825 if (*spec == '+' || *spec == '-') {
826 /* fetch xoffset */
827 info->crop_xoffset_set = (*spec == '-') ? JCROP_NEG : JCROP_POS;
828 spec++;
829 if (! jt_read_integer(&spec, &info->crop_xoffset))
830 return FALSE;
831 }
832 if (*spec == '+' || *spec == '-') {
833 /* fetch yoffset */
834 info->crop_yoffset_set = (*spec == '-') ? JCROP_NEG : JCROP_POS;
835 spec++;
836 if (! jt_read_integer(&spec, &info->crop_yoffset))
837 return FALSE;
838 }
839 /* We had better have gotten to the end of the string. */
840 if (*spec != '\0')
841 return FALSE;
842 info->crop = TRUE;
843 return TRUE;
844}
845
846
847/* Trim off any partial iMCUs on the indicated destination edge */
848
849LOCAL(void)
850trim_right_edge (jpeg_transform_info *info, JDIMENSION full_width)
851{
852 JDIMENSION MCU_cols;
853
Guido Vollbeding989630f2010-01-10 00:00:00 +0000854 MCU_cols = info->output_width / info->iMCU_sample_width;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000855 if (MCU_cols > 0 && info->x_crop_offset + MCU_cols ==
Guido Vollbeding989630f2010-01-10 00:00:00 +0000856 full_width / info->iMCU_sample_width)
857 info->output_width = MCU_cols * info->iMCU_sample_width;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000858}
859
860LOCAL(void)
861trim_bottom_edge (jpeg_transform_info *info, JDIMENSION full_height)
862{
863 JDIMENSION MCU_rows;
864
Guido Vollbeding989630f2010-01-10 00:00:00 +0000865 MCU_rows = info->output_height / info->iMCU_sample_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000866 if (MCU_rows > 0 && info->y_crop_offset + MCU_rows ==
Guido Vollbeding989630f2010-01-10 00:00:00 +0000867 full_height / info->iMCU_sample_height)
868 info->output_height = MCU_rows * info->iMCU_sample_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000869}
870
871
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000872/* Request any required workspace.
873 *
Guido Vollbeding5996a252009-06-27 00:00:00 +0000874 * This routine figures out the size that the output image will be
875 * (which implies that all the transform parameters must be set before
876 * it is called).
877 *
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000878 * We allocate the workspace virtual arrays from the source decompression
879 * object, so that all the arrays (both the original data and the workspace)
880 * will be taken into account while making memory management decisions.
881 * Hence, this routine must be called after jpeg_read_header (which reads
882 * the image dimensions) and before jpeg_read_coefficients (which realizes
883 * the source's virtual arrays).
Guido Vollbeding989630f2010-01-10 00:00:00 +0000884 *
885 * This function returns FALSE right away if -perfect is given
886 * and transformation is not perfect. Otherwise returns TRUE.
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000887 */
888
Guido Vollbeding989630f2010-01-10 00:00:00 +0000889GLOBAL(boolean)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000890jtransform_request_workspace (j_decompress_ptr srcinfo,
891 jpeg_transform_info *info)
892{
Guido Vollbeding989630f2010-01-10 00:00:00 +0000893 jvirt_barray_ptr *coef_arrays;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000894 boolean need_workspace, transpose_it;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000895 jpeg_component_info *compptr;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000896 JDIMENSION xoffset, yoffset;
897 JDIMENSION width_in_iMCUs, height_in_iMCUs;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000898 JDIMENSION width_in_blocks, height_in_blocks;
899 int ci, h_samp_factor, v_samp_factor;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000900
Guido Vollbeding5996a252009-06-27 00:00:00 +0000901 /* Determine number of components in output image */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000902 if (info->force_grayscale &&
903 srcinfo->jpeg_color_space == JCS_YCbCr &&
Guido Vollbeding989630f2010-01-10 00:00:00 +0000904 srcinfo->num_components == 3)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000905 /* We'll only process the first component */
906 info->num_components = 1;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000907 else
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000908 /* Process all the components */
909 info->num_components = srcinfo->num_components;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000910
911 /* Compute output image dimensions and related values. */
DRCc04bd3c2010-10-10 02:15:56 +0000912#if JPEG_LIB_VERSION >= 80
Guido Vollbeding989630f2010-01-10 00:00:00 +0000913 jpeg_core_output_dimensions(srcinfo);
DRCc04bd3c2010-10-10 02:15:56 +0000914#else
915 srcinfo->output_width = srcinfo->image_width;
916 srcinfo->output_height = srcinfo->image_height;
917#endif
Guido Vollbeding989630f2010-01-10 00:00:00 +0000918
919 /* Return right away if -perfect is given and transformation is not perfect.
920 */
921 if (info->perfect) {
922 if (info->num_components == 1) {
923 if (!jtransform_perfect_transform(srcinfo->output_width,
924 srcinfo->output_height,
DRCc04bd3c2010-10-10 02:15:56 +0000925 srcinfo->_min_DCT_h_scaled_size,
926 srcinfo->_min_DCT_v_scaled_size,
Guido Vollbeding989630f2010-01-10 00:00:00 +0000927 info->transform))
928 return FALSE;
929 } else {
930 if (!jtransform_perfect_transform(srcinfo->output_width,
931 srcinfo->output_height,
DRCc04bd3c2010-10-10 02:15:56 +0000932 srcinfo->max_h_samp_factor * srcinfo->_min_DCT_h_scaled_size,
933 srcinfo->max_v_samp_factor * srcinfo->_min_DCT_v_scaled_size,
Guido Vollbeding989630f2010-01-10 00:00:00 +0000934 info->transform))
935 return FALSE;
936 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000937 }
938
Guido Vollbeding5996a252009-06-27 00:00:00 +0000939 /* If there is only one output component, force the iMCU size to be 1;
940 * else use the source iMCU size. (This allows us to do the right thing
941 * when reducing color to grayscale, and also provides a handy way of
942 * cleaning up "funny" grayscale images whose sampling factors are not 1x1.)
943 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000944 switch (info->transform) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000945 case JXFORM_TRANSPOSE:
946 case JXFORM_TRANSVERSE:
947 case JXFORM_ROT_90:
948 case JXFORM_ROT_270:
Guido Vollbeding989630f2010-01-10 00:00:00 +0000949 info->output_width = srcinfo->output_height;
950 info->output_height = srcinfo->output_width;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000951 if (info->num_components == 1) {
DRCc04bd3c2010-10-10 02:15:56 +0000952 info->iMCU_sample_width = srcinfo->_min_DCT_v_scaled_size;
953 info->iMCU_sample_height = srcinfo->_min_DCT_h_scaled_size;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000954 } else {
Guido Vollbeding989630f2010-01-10 00:00:00 +0000955 info->iMCU_sample_width =
DRCc04bd3c2010-10-10 02:15:56 +0000956 srcinfo->max_v_samp_factor * srcinfo->_min_DCT_v_scaled_size;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000957 info->iMCU_sample_height =
DRCc04bd3c2010-10-10 02:15:56 +0000958 srcinfo->max_h_samp_factor * srcinfo->_min_DCT_h_scaled_size;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000959 }
960 break;
961 default:
Guido Vollbeding989630f2010-01-10 00:00:00 +0000962 info->output_width = srcinfo->output_width;
963 info->output_height = srcinfo->output_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000964 if (info->num_components == 1) {
DRCc04bd3c2010-10-10 02:15:56 +0000965 info->iMCU_sample_width = srcinfo->_min_DCT_h_scaled_size;
966 info->iMCU_sample_height = srcinfo->_min_DCT_v_scaled_size;
Guido Vollbeding5996a252009-06-27 00:00:00 +0000967 } else {
Guido Vollbeding989630f2010-01-10 00:00:00 +0000968 info->iMCU_sample_width =
DRCc04bd3c2010-10-10 02:15:56 +0000969 srcinfo->max_h_samp_factor * srcinfo->_min_DCT_h_scaled_size;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000970 info->iMCU_sample_height =
DRCc04bd3c2010-10-10 02:15:56 +0000971 srcinfo->max_v_samp_factor * srcinfo->_min_DCT_v_scaled_size;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000972 }
973 break;
974 }
Guido Vollbeding5996a252009-06-27 00:00:00 +0000975
976 /* If cropping has been requested, compute the crop area's position and
977 * dimensions, ensuring that its upper left corner falls at an iMCU boundary.
978 */
979 if (info->crop) {
980 /* Insert default values for unset crop parameters */
981 if (info->crop_xoffset_set == JCROP_UNSET)
982 info->crop_xoffset = 0; /* default to +0 */
983 if (info->crop_yoffset_set == JCROP_UNSET)
984 info->crop_yoffset = 0; /* default to +0 */
985 if (info->crop_xoffset >= info->output_width ||
986 info->crop_yoffset >= info->output_height)
987 ERREXIT(srcinfo, JERR_BAD_CROP_SPEC);
988 if (info->crop_width_set == JCROP_UNSET)
989 info->crop_width = info->output_width - info->crop_xoffset;
990 if (info->crop_height_set == JCROP_UNSET)
991 info->crop_height = info->output_height - info->crop_yoffset;
992 /* Ensure parameters are valid */
993 if (info->crop_width <= 0 || info->crop_width > info->output_width ||
994 info->crop_height <= 0 || info->crop_height > info->output_height ||
995 info->crop_xoffset > info->output_width - info->crop_width ||
996 info->crop_yoffset > info->output_height - info->crop_height)
997 ERREXIT(srcinfo, JERR_BAD_CROP_SPEC);
998 /* Convert negative crop offsets into regular offsets */
999 if (info->crop_xoffset_set == JCROP_NEG)
1000 xoffset = info->output_width - info->crop_width - info->crop_xoffset;
1001 else
1002 xoffset = info->crop_xoffset;
1003 if (info->crop_yoffset_set == JCROP_NEG)
1004 yoffset = info->output_height - info->crop_height - info->crop_yoffset;
1005 else
1006 yoffset = info->crop_yoffset;
1007 /* Now adjust so that upper left corner falls at an iMCU boundary */
Guido Vollbeding5829cb22012-01-15 00:00:00 +00001008 if (info->crop_width_set == JCROP_FORCE)
1009 info->output_width = info->crop_width;
1010 else
1011 info->output_width =
1012 info->crop_width + (xoffset % info->iMCU_sample_width);
1013 if (info->crop_height_set == JCROP_FORCE)
1014 info->output_height = info->crop_height;
1015 else
1016 info->output_height =
1017 info->crop_height + (yoffset % info->iMCU_sample_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001018 /* Save x/y offsets measured in iMCUs */
Guido Vollbeding989630f2010-01-10 00:00:00 +00001019 info->x_crop_offset = xoffset / info->iMCU_sample_width;
1020 info->y_crop_offset = yoffset / info->iMCU_sample_height;
Guido Vollbeding5996a252009-06-27 00:00:00 +00001021 } else {
1022 info->x_crop_offset = 0;
1023 info->y_crop_offset = 0;
1024 }
1025
1026 /* Figure out whether we need workspace arrays,
1027 * and if so whether they are transposed relative to the source.
1028 */
1029 need_workspace = FALSE;
1030 transpose_it = FALSE;
1031 switch (info->transform) {
1032 case JXFORM_NONE:
1033 if (info->x_crop_offset != 0 || info->y_crop_offset != 0)
1034 need_workspace = TRUE;
1035 /* No workspace needed if neither cropping nor transforming */
1036 break;
1037 case JXFORM_FLIP_H:
1038 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001039 trim_right_edge(info, srcinfo->output_width);
DRCba5ea512011-03-04 03:20:34 +00001040 if (info->y_crop_offset != 0 || info->slow_hflip)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001041 need_workspace = TRUE;
1042 /* do_flip_h_no_crop doesn't need a workspace array */
1043 break;
1044 case JXFORM_FLIP_V:
1045 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001046 trim_bottom_edge(info, srcinfo->output_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001047 /* Need workspace arrays having same dimensions as source image. */
1048 need_workspace = TRUE;
1049 break;
1050 case JXFORM_TRANSPOSE:
1051 /* transpose does NOT have to trim anything */
1052 /* Need workspace arrays having transposed dimensions. */
1053 need_workspace = TRUE;
1054 transpose_it = TRUE;
1055 break;
1056 case JXFORM_TRANSVERSE:
1057 if (info->trim) {
Guido Vollbeding989630f2010-01-10 00:00:00 +00001058 trim_right_edge(info, srcinfo->output_height);
1059 trim_bottom_edge(info, srcinfo->output_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001060 }
1061 /* Need workspace arrays having transposed dimensions. */
1062 need_workspace = TRUE;
1063 transpose_it = TRUE;
1064 break;
1065 case JXFORM_ROT_90:
1066 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001067 trim_right_edge(info, srcinfo->output_height);
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 case JXFORM_ROT_180:
1073 if (info->trim) {
Guido Vollbeding989630f2010-01-10 00:00:00 +00001074 trim_right_edge(info, srcinfo->output_width);
1075 trim_bottom_edge(info, srcinfo->output_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001076 }
1077 /* Need workspace arrays having same dimensions as source image. */
1078 need_workspace = TRUE;
1079 break;
1080 case JXFORM_ROT_270:
1081 if (info->trim)
Guido Vollbeding989630f2010-01-10 00:00:00 +00001082 trim_bottom_edge(info, srcinfo->output_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001083 /* Need workspace arrays having transposed dimensions. */
1084 need_workspace = TRUE;
1085 transpose_it = TRUE;
1086 break;
1087 }
1088
1089 /* Allocate workspace if needed.
1090 * Note that we allocate arrays padded out to the next iMCU boundary,
1091 * so that transform routines need not worry about missing edge blocks.
1092 */
1093 if (need_workspace) {
1094 coef_arrays = (jvirt_barray_ptr *)
1095 (*srcinfo->mem->alloc_small) ((j_common_ptr) srcinfo, JPOOL_IMAGE,
1096 SIZEOF(jvirt_barray_ptr) * info->num_components);
1097 width_in_iMCUs = (JDIMENSION)
1098 jdiv_round_up((long) info->output_width,
Guido Vollbeding989630f2010-01-10 00:00:00 +00001099 (long) info->iMCU_sample_width);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001100 height_in_iMCUs = (JDIMENSION)
1101 jdiv_round_up((long) info->output_height,
Guido Vollbeding989630f2010-01-10 00:00:00 +00001102 (long) info->iMCU_sample_height);
Guido Vollbeding5996a252009-06-27 00:00:00 +00001103 for (ci = 0; ci < info->num_components; ci++) {
1104 compptr = srcinfo->comp_info + ci;
1105 if (info->num_components == 1) {
1106 /* we're going to force samp factors to 1x1 in this case */
1107 h_samp_factor = v_samp_factor = 1;
1108 } else if (transpose_it) {
1109 h_samp_factor = compptr->v_samp_factor;
1110 v_samp_factor = compptr->h_samp_factor;
1111 } else {
1112 h_samp_factor = compptr->h_samp_factor;
1113 v_samp_factor = compptr->v_samp_factor;
1114 }
1115 width_in_blocks = width_in_iMCUs * h_samp_factor;
1116 height_in_blocks = height_in_iMCUs * v_samp_factor;
1117 coef_arrays[ci] = (*srcinfo->mem->request_virt_barray)
1118 ((j_common_ptr) srcinfo, JPOOL_IMAGE, FALSE,
1119 width_in_blocks, height_in_blocks, (JDIMENSION) v_samp_factor);
1120 }
Guido Vollbeding989630f2010-01-10 00:00:00 +00001121 info->workspace_coef_arrays = coef_arrays;
1122 } else
1123 info->workspace_coef_arrays = NULL;
Guido Vollbeding5996a252009-06-27 00:00:00 +00001124
Guido Vollbeding989630f2010-01-10 00:00:00 +00001125 return TRUE;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001126}
1127
1128
1129/* Transpose destination image parameters */
1130
1131LOCAL(void)
1132transpose_critical_parameters (j_compress_ptr dstinfo)
1133{
1134 int tblno, i, j, ci, itemp;
1135 jpeg_component_info *compptr;
1136 JQUANT_TBL *qtblptr;
Guido Vollbeding989630f2010-01-10 00:00:00 +00001137 JDIMENSION jtemp;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001138 UINT16 qtemp;
1139
Guido Vollbeding989630f2010-01-10 00:00:00 +00001140 /* Transpose image dimensions */
1141 jtemp = dstinfo->image_width;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001142 dstinfo->image_width = dstinfo->image_height;
Guido Vollbeding989630f2010-01-10 00:00:00 +00001143 dstinfo->image_height = jtemp;
DRC36a6eec2010-10-08 08:05:44 +00001144#if JPEG_LIB_VERSION >= 70
Guido Vollbeding989630f2010-01-10 00:00:00 +00001145 itemp = dstinfo->min_DCT_h_scaled_size;
1146 dstinfo->min_DCT_h_scaled_size = dstinfo->min_DCT_v_scaled_size;
1147 dstinfo->min_DCT_v_scaled_size = itemp;
DRC36a6eec2010-10-08 08:05:44 +00001148#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001149
1150 /* Transpose sampling factors */
1151 for (ci = 0; ci < dstinfo->num_components; ci++) {
1152 compptr = dstinfo->comp_info + ci;
1153 itemp = compptr->h_samp_factor;
1154 compptr->h_samp_factor = compptr->v_samp_factor;
1155 compptr->v_samp_factor = itemp;
1156 }
1157
1158 /* Transpose quantization tables */
1159 for (tblno = 0; tblno < NUM_QUANT_TBLS; tblno++) {
1160 qtblptr = dstinfo->quant_tbl_ptrs[tblno];
1161 if (qtblptr != NULL) {
1162 for (i = 0; i < DCTSIZE; i++) {
1163 for (j = 0; j < i; j++) {
1164 qtemp = qtblptr->quantval[i*DCTSIZE+j];
1165 qtblptr->quantval[i*DCTSIZE+j] = qtblptr->quantval[j*DCTSIZE+i];
1166 qtblptr->quantval[j*DCTSIZE+i] = qtemp;
1167 }
1168 }
1169 }
1170 }
1171}
1172
1173
Guido Vollbeding5996a252009-06-27 00:00:00 +00001174/* Adjust Exif image parameters.
1175 *
1176 * We try to adjust the Tags ExifImageWidth and ExifImageHeight if possible.
1177 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001178
1179LOCAL(void)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001180adjust_exif_parameters (JOCTET FAR * data, unsigned int length,
1181 JDIMENSION new_width, JDIMENSION new_height)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001182{
Guido Vollbeding5996a252009-06-27 00:00:00 +00001183 boolean is_motorola; /* Flag for byte order */
1184 unsigned int number_of_tags, tagnum;
1185 unsigned int firstoffset, offset;
1186 JDIMENSION new_value;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001187
Guido Vollbeding5996a252009-06-27 00:00:00 +00001188 if (length < 12) return; /* Length of an IFD entry */
1189
1190 /* Discover byte order */
1191 if (GETJOCTET(data[0]) == 0x49 && GETJOCTET(data[1]) == 0x49)
1192 is_motorola = FALSE;
1193 else if (GETJOCTET(data[0]) == 0x4D && GETJOCTET(data[1]) == 0x4D)
1194 is_motorola = TRUE;
1195 else
1196 return;
1197
1198 /* Check Tag Mark */
1199 if (is_motorola) {
1200 if (GETJOCTET(data[2]) != 0) return;
1201 if (GETJOCTET(data[3]) != 0x2A) return;
1202 } else {
1203 if (GETJOCTET(data[3]) != 0) return;
1204 if (GETJOCTET(data[2]) != 0x2A) return;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001205 }
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001206
Guido Vollbeding5996a252009-06-27 00:00:00 +00001207 /* Get first IFD offset (offset to IFD0) */
1208 if (is_motorola) {
1209 if (GETJOCTET(data[4]) != 0) return;
1210 if (GETJOCTET(data[5]) != 0) return;
1211 firstoffset = GETJOCTET(data[6]);
1212 firstoffset <<= 8;
1213 firstoffset += GETJOCTET(data[7]);
1214 } else {
1215 if (GETJOCTET(data[7]) != 0) return;
1216 if (GETJOCTET(data[6]) != 0) return;
1217 firstoffset = GETJOCTET(data[5]);
1218 firstoffset <<= 8;
1219 firstoffset += GETJOCTET(data[4]);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001220 }
Guido Vollbeding5996a252009-06-27 00:00:00 +00001221 if (firstoffset > length - 2) return; /* check end of data segment */
1222
1223 /* Get the number of directory entries contained in this IFD */
1224 if (is_motorola) {
1225 number_of_tags = GETJOCTET(data[firstoffset]);
1226 number_of_tags <<= 8;
1227 number_of_tags += GETJOCTET(data[firstoffset+1]);
1228 } else {
1229 number_of_tags = GETJOCTET(data[firstoffset+1]);
1230 number_of_tags <<= 8;
1231 number_of_tags += GETJOCTET(data[firstoffset]);
1232 }
1233 if (number_of_tags == 0) return;
1234 firstoffset += 2;
1235
1236 /* Search for ExifSubIFD offset Tag in IFD0 */
1237 for (;;) {
1238 if (firstoffset > length - 12) return; /* check end of data segment */
1239 /* Get Tag number */
1240 if (is_motorola) {
1241 tagnum = GETJOCTET(data[firstoffset]);
1242 tagnum <<= 8;
1243 tagnum += GETJOCTET(data[firstoffset+1]);
1244 } else {
1245 tagnum = GETJOCTET(data[firstoffset+1]);
1246 tagnum <<= 8;
1247 tagnum += GETJOCTET(data[firstoffset]);
1248 }
1249 if (tagnum == 0x8769) break; /* found ExifSubIFD offset Tag */
1250 if (--number_of_tags == 0) return;
1251 firstoffset += 12;
1252 }
1253
1254 /* Get the ExifSubIFD offset */
1255 if (is_motorola) {
1256 if (GETJOCTET(data[firstoffset+8]) != 0) return;
1257 if (GETJOCTET(data[firstoffset+9]) != 0) return;
1258 offset = GETJOCTET(data[firstoffset+10]);
1259 offset <<= 8;
1260 offset += GETJOCTET(data[firstoffset+11]);
1261 } else {
1262 if (GETJOCTET(data[firstoffset+11]) != 0) return;
1263 if (GETJOCTET(data[firstoffset+10]) != 0) return;
1264 offset = GETJOCTET(data[firstoffset+9]);
1265 offset <<= 8;
1266 offset += GETJOCTET(data[firstoffset+8]);
1267 }
1268 if (offset > length - 2) return; /* check end of data segment */
1269
1270 /* Get the number of directory entries contained in this SubIFD */
1271 if (is_motorola) {
1272 number_of_tags = GETJOCTET(data[offset]);
1273 number_of_tags <<= 8;
1274 number_of_tags += GETJOCTET(data[offset+1]);
1275 } else {
1276 number_of_tags = GETJOCTET(data[offset+1]);
1277 number_of_tags <<= 8;
1278 number_of_tags += GETJOCTET(data[offset]);
1279 }
1280 if (number_of_tags < 2) return;
1281 offset += 2;
1282
1283 /* Search for ExifImageWidth and ExifImageHeight Tags in this SubIFD */
1284 do {
1285 if (offset > length - 12) return; /* check end of data segment */
1286 /* Get Tag number */
1287 if (is_motorola) {
1288 tagnum = GETJOCTET(data[offset]);
1289 tagnum <<= 8;
1290 tagnum += GETJOCTET(data[offset+1]);
1291 } else {
1292 tagnum = GETJOCTET(data[offset+1]);
1293 tagnum <<= 8;
1294 tagnum += GETJOCTET(data[offset]);
1295 }
1296 if (tagnum == 0xA002 || tagnum == 0xA003) {
1297 if (tagnum == 0xA002)
1298 new_value = new_width; /* ExifImageWidth Tag */
1299 else
1300 new_value = new_height; /* ExifImageHeight Tag */
1301 if (is_motorola) {
1302 data[offset+2] = 0; /* Format = unsigned long (4 octets) */
1303 data[offset+3] = 4;
1304 data[offset+4] = 0; /* Number Of Components = 1 */
1305 data[offset+5] = 0;
1306 data[offset+6] = 0;
1307 data[offset+7] = 1;
1308 data[offset+8] = 0;
1309 data[offset+9] = 0;
1310 data[offset+10] = (JOCTET)((new_value >> 8) & 0xFF);
1311 data[offset+11] = (JOCTET)(new_value & 0xFF);
1312 } else {
1313 data[offset+2] = 4; /* Format = unsigned long (4 octets) */
1314 data[offset+3] = 0;
1315 data[offset+4] = 1; /* Number Of Components = 1 */
1316 data[offset+5] = 0;
1317 data[offset+6] = 0;
1318 data[offset+7] = 0;
1319 data[offset+8] = (JOCTET)(new_value & 0xFF);
1320 data[offset+9] = (JOCTET)((new_value >> 8) & 0xFF);
1321 data[offset+10] = 0;
1322 data[offset+11] = 0;
1323 }
1324 }
1325 offset += 12;
1326 } while (--number_of_tags);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001327}
1328
1329
1330/* Adjust output image parameters as needed.
1331 *
1332 * This must be called after jpeg_copy_critical_parameters()
1333 * and before jpeg_write_coefficients().
1334 *
1335 * The return value is the set of virtual coefficient arrays to be written
1336 * (either the ones allocated by jtransform_request_workspace, or the
1337 * original source data arrays). The caller will need to pass this value
1338 * to jpeg_write_coefficients().
1339 */
1340
1341GLOBAL(jvirt_barray_ptr *)
1342jtransform_adjust_parameters (j_decompress_ptr srcinfo,
1343 j_compress_ptr dstinfo,
1344 jvirt_barray_ptr *src_coef_arrays,
1345 jpeg_transform_info *info)
1346{
1347 /* If force-to-grayscale is requested, adjust destination parameters */
1348 if (info->force_grayscale) {
Guido Vollbeding5996a252009-06-27 00:00:00 +00001349 /* First, ensure we have YCbCr or grayscale data, and that the source's
1350 * Y channel is full resolution. (No reasonable person would make Y
1351 * be less than full resolution, so actually coping with that case
1352 * isn't worth extra code space. But we check it to avoid crashing.)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001353 */
Guido Vollbeding5996a252009-06-27 00:00:00 +00001354 if (((dstinfo->jpeg_color_space == JCS_YCbCr &&
1355 dstinfo->num_components == 3) ||
1356 (dstinfo->jpeg_color_space == JCS_GRAYSCALE &&
1357 dstinfo->num_components == 1)) &&
1358 srcinfo->comp_info[0].h_samp_factor == srcinfo->max_h_samp_factor &&
1359 srcinfo->comp_info[0].v_samp_factor == srcinfo->max_v_samp_factor) {
1360 /* We use jpeg_set_colorspace to make sure subsidiary settings get fixed
1361 * properly. Among other things, it sets the target h_samp_factor &
1362 * v_samp_factor to 1, which typically won't match the source.
1363 * We have to preserve the source's quantization table number, however.
1364 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001365 int sv_quant_tbl_no = dstinfo->comp_info[0].quant_tbl_no;
1366 jpeg_set_colorspace(dstinfo, JCS_GRAYSCALE);
1367 dstinfo->comp_info[0].quant_tbl_no = sv_quant_tbl_no;
1368 } else {
1369 /* Sorry, can't do it */
1370 ERREXIT(dstinfo, JERR_CONVERSION_NOTIMPL);
1371 }
Guido Vollbeding5996a252009-06-27 00:00:00 +00001372 } else if (info->num_components == 1) {
1373 /* For a single-component source, we force the destination sampling factors
1374 * to 1x1, with or without force_grayscale. This is useful because some
1375 * decoders choke on grayscale images with other sampling factors.
1376 */
1377 dstinfo->comp_info[0].h_samp_factor = 1;
1378 dstinfo->comp_info[0].v_samp_factor = 1;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001379 }
1380
Guido Vollbeding5996a252009-06-27 00:00:00 +00001381 /* Correct the destination's image dimensions as necessary
Guido Vollbeding989630f2010-01-10 00:00:00 +00001382 * for rotate/flip, resize, and crop operations.
Guido Vollbeding5996a252009-06-27 00:00:00 +00001383 */
DRCc04bd3c2010-10-10 02:15:56 +00001384#if JPEG_LIB_VERSION >= 70
Guido Vollbeding989630f2010-01-10 00:00:00 +00001385 dstinfo->jpeg_width = info->output_width;
1386 dstinfo->jpeg_height = info->output_height;
DRCc04bd3c2010-10-10 02:15:56 +00001387#endif
Guido Vollbeding5996a252009-06-27 00:00:00 +00001388
1389 /* Transpose destination image parameters */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001390 switch (info->transform) {
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001391 case JXFORM_TRANSPOSE:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001392 case JXFORM_TRANSVERSE:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001393 case JXFORM_ROT_90:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001394 case JXFORM_ROT_270:
DRC9a648cc2010-10-10 02:48:21 +00001395#if JPEG_LIB_VERSION < 70
1396 dstinfo->image_width = info->output_height;
1397 dstinfo->image_height = info->output_width;
1398#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001399 transpose_critical_parameters(dstinfo);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001400 break;
Guido Vollbeding5996a252009-06-27 00:00:00 +00001401 default:
DRC9a648cc2010-10-10 02:48:21 +00001402#if JPEG_LIB_VERSION < 70
1403 dstinfo->image_width = info->output_width;
1404 dstinfo->image_height = info->output_height;
1405#endif
Guido Vollbeding5996a252009-06-27 00:00:00 +00001406 break;
1407 }
1408
1409 /* Adjust Exif properties */
1410 if (srcinfo->marker_list != NULL &&
1411 srcinfo->marker_list->marker == JPEG_APP0+1 &&
1412 srcinfo->marker_list->data_length >= 6 &&
1413 GETJOCTET(srcinfo->marker_list->data[0]) == 0x45 &&
1414 GETJOCTET(srcinfo->marker_list->data[1]) == 0x78 &&
1415 GETJOCTET(srcinfo->marker_list->data[2]) == 0x69 &&
1416 GETJOCTET(srcinfo->marker_list->data[3]) == 0x66 &&
1417 GETJOCTET(srcinfo->marker_list->data[4]) == 0 &&
1418 GETJOCTET(srcinfo->marker_list->data[5]) == 0) {
1419 /* Suppress output of JFIF marker */
1420 dstinfo->write_JFIF_header = FALSE;
DRCc04bd3c2010-10-10 02:15:56 +00001421#if JPEG_LIB_VERSION >= 70
Guido Vollbeding5996a252009-06-27 00:00:00 +00001422 /* Adjust Exif image parameters */
Guido Vollbeding989630f2010-01-10 00:00:00 +00001423 if (dstinfo->jpeg_width != srcinfo->image_width ||
1424 dstinfo->jpeg_height != srcinfo->image_height)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001425 /* Align data segment to start of TIFF structure for parsing */
1426 adjust_exif_parameters(srcinfo->marker_list->data + 6,
1427 srcinfo->marker_list->data_length - 6,
Guido Vollbeding989630f2010-01-10 00:00:00 +00001428 dstinfo->jpeg_width, dstinfo->jpeg_height);
DRCc04bd3c2010-10-10 02:15:56 +00001429#endif
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001430 }
1431
1432 /* Return the appropriate output data set */
1433 if (info->workspace_coef_arrays != NULL)
1434 return info->workspace_coef_arrays;
1435 return src_coef_arrays;
1436}
1437
1438
1439/* Execute the actual transformation, if any.
1440 *
1441 * This must be called *after* jpeg_write_coefficients, because it depends
1442 * on jpeg_write_coefficients to have computed subsidiary values such as
1443 * the per-component width and height fields in the destination object.
1444 *
1445 * Note that some transformations will modify the source data arrays!
1446 */
1447
1448GLOBAL(void)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001449jtransform_execute_transform (j_decompress_ptr srcinfo,
1450 j_compress_ptr dstinfo,
1451 jvirt_barray_ptr *src_coef_arrays,
1452 jpeg_transform_info *info)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001453{
1454 jvirt_barray_ptr *dst_coef_arrays = info->workspace_coef_arrays;
1455
Guido Vollbeding5996a252009-06-27 00:00:00 +00001456 /* Note: conditions tested here should match those in switch statement
1457 * in jtransform_request_workspace()
1458 */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001459 switch (info->transform) {
1460 case JXFORM_NONE:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001461 if (info->x_crop_offset != 0 || info->y_crop_offset != 0)
1462 do_crop(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1463 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001464 break;
1465 case JXFORM_FLIP_H:
DRCba5ea512011-03-04 03:20:34 +00001466 if (info->y_crop_offset != 0 || info->slow_hflip)
Guido Vollbeding5996a252009-06-27 00:00:00 +00001467 do_flip_h(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1468 src_coef_arrays, dst_coef_arrays);
1469 else
1470 do_flip_h_no_crop(srcinfo, dstinfo, info->x_crop_offset,
1471 src_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001472 break;
1473 case JXFORM_FLIP_V:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001474 do_flip_v(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1475 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001476 break;
1477 case JXFORM_TRANSPOSE:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001478 do_transpose(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1479 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001480 break;
1481 case JXFORM_TRANSVERSE:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001482 do_transverse(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1483 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001484 break;
1485 case JXFORM_ROT_90:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001486 do_rot_90(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1487 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001488 break;
1489 case JXFORM_ROT_180:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001490 do_rot_180(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1491 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001492 break;
1493 case JXFORM_ROT_270:
Guido Vollbeding5996a252009-06-27 00:00:00 +00001494 do_rot_270(srcinfo, dstinfo, info->x_crop_offset, info->y_crop_offset,
1495 src_coef_arrays, dst_coef_arrays);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001496 break;
1497 }
1498}
1499
Guido Vollbeding5996a252009-06-27 00:00:00 +00001500/* jtransform_perfect_transform
1501 *
1502 * Determine whether lossless transformation is perfectly
1503 * possible for a specified image and transformation.
1504 *
1505 * Inputs:
1506 * image_width, image_height: source image dimensions.
1507 * MCU_width, MCU_height: pixel dimensions of MCU.
1508 * transform: transformation identifier.
1509 * Parameter sources from initialized jpeg_struct
1510 * (after reading source header):
1511 * image_width = cinfo.image_width
1512 * image_height = cinfo.image_height
Guido Vollbeding989630f2010-01-10 00:00:00 +00001513 * MCU_width = cinfo.max_h_samp_factor * cinfo.block_size
1514 * MCU_height = cinfo.max_v_samp_factor * cinfo.block_size
Guido Vollbeding5996a252009-06-27 00:00:00 +00001515 * Result:
1516 * TRUE = perfect transformation possible
1517 * FALSE = perfect transformation not possible
1518 * (may use custom action then)
1519 */
1520
1521GLOBAL(boolean)
1522jtransform_perfect_transform(JDIMENSION image_width, JDIMENSION image_height,
1523 int MCU_width, int MCU_height,
1524 JXFORM_CODE transform)
1525{
1526 boolean result = TRUE; /* initialize TRUE */
1527
1528 switch (transform) {
1529 case JXFORM_FLIP_H:
1530 case JXFORM_ROT_270:
1531 if (image_width % (JDIMENSION) MCU_width)
1532 result = FALSE;
1533 break;
1534 case JXFORM_FLIP_V:
1535 case JXFORM_ROT_90:
1536 if (image_height % (JDIMENSION) MCU_height)
1537 result = FALSE;
1538 break;
1539 case JXFORM_TRANSVERSE:
1540 case JXFORM_ROT_180:
1541 if (image_width % (JDIMENSION) MCU_width)
1542 result = FALSE;
1543 if (image_height % (JDIMENSION) MCU_height)
1544 result = FALSE;
1545 break;
1546 default:
1547 break;
1548 }
1549
1550 return result;
1551}
1552
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001553#endif /* TRANSFORMS_SUPPORTED */
1554
1555
1556/* Setup decompression object to save desired markers in memory.
1557 * This must be called before jpeg_read_header() to have the desired effect.
1558 */
1559
1560GLOBAL(void)
1561jcopy_markers_setup (j_decompress_ptr srcinfo, JCOPY_OPTION option)
1562{
1563#ifdef SAVE_MARKERS_SUPPORTED
1564 int m;
1565
1566 /* Save comments except under NONE option */
1567 if (option != JCOPYOPT_NONE) {
1568 jpeg_save_markers(srcinfo, JPEG_COM, 0xFFFF);
1569 }
1570 /* Save all types of APPn markers iff ALL option */
1571 if (option == JCOPYOPT_ALL) {
1572 for (m = 0; m < 16; m++)
1573 jpeg_save_markers(srcinfo, JPEG_APP0 + m, 0xFFFF);
1574 }
1575#endif /* SAVE_MARKERS_SUPPORTED */
1576}
1577
1578/* Copy markers saved in the given source object to the destination object.
1579 * This should be called just after jpeg_start_compress() or
1580 * jpeg_write_coefficients().
1581 * Note that those routines will have written the SOI, and also the
1582 * JFIF APP0 or Adobe APP14 markers if selected.
1583 */
1584
1585GLOBAL(void)
1586jcopy_markers_execute (j_decompress_ptr srcinfo, j_compress_ptr dstinfo,
1587 JCOPY_OPTION option)
1588{
1589 jpeg_saved_marker_ptr marker;
1590
1591 /* In the current implementation, we don't actually need to examine the
1592 * option flag here; we just copy everything that got saved.
1593 * But to avoid confusion, we do not output JFIF and Adobe APP14 markers
1594 * if the encoder library already wrote one.
1595 */
1596 for (marker = srcinfo->marker_list; marker != NULL; marker = marker->next) {
1597 if (dstinfo->write_JFIF_header &&
1598 marker->marker == JPEG_APP0 &&
1599 marker->data_length >= 5 &&
1600 GETJOCTET(marker->data[0]) == 0x4A &&
1601 GETJOCTET(marker->data[1]) == 0x46 &&
1602 GETJOCTET(marker->data[2]) == 0x49 &&
1603 GETJOCTET(marker->data[3]) == 0x46 &&
1604 GETJOCTET(marker->data[4]) == 0)
1605 continue; /* reject duplicate JFIF */
1606 if (dstinfo->write_Adobe_marker &&
1607 marker->marker == JPEG_APP0+14 &&
1608 marker->data_length >= 5 &&
1609 GETJOCTET(marker->data[0]) == 0x41 &&
1610 GETJOCTET(marker->data[1]) == 0x64 &&
1611 GETJOCTET(marker->data[2]) == 0x6F &&
1612 GETJOCTET(marker->data[3]) == 0x62 &&
1613 GETJOCTET(marker->data[4]) == 0x65)
1614 continue; /* reject duplicate Adobe */
1615#ifdef NEED_FAR_POINTERS
1616 /* We could use jpeg_write_marker if the data weren't FAR... */
1617 {
1618 unsigned int i;
1619 jpeg_write_m_header(dstinfo, marker->marker, marker->data_length);
1620 for (i = 0; i < marker->data_length; i++)
1621 jpeg_write_m_byte(dstinfo, marker->data[i]);
1622 }
1623#else
1624 jpeg_write_marker(dstinfo, marker->marker,
1625 marker->data, marker->data_length);
1626#endif
1627 }
1628}