image_intensities 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/ext/image_intensities/Makefile +73 -4
  3. data/ext/image_intensities/turbojpeg/cderror.h +137 -0
  4. data/ext/image_intensities/turbojpeg/cdjpeg.h +157 -0
  5. data/ext/image_intensities/turbojpeg/cmyk.h +61 -0
  6. data/ext/image_intensities/turbojpeg/jaricom.c +157 -0
  7. data/ext/image_intensities/turbojpeg/jcapimin.c +295 -0
  8. data/ext/image_intensities/turbojpeg/jcapistd.c +162 -0
  9. data/ext/image_intensities/turbojpeg/jcarith.c +932 -0
  10. data/ext/image_intensities/turbojpeg/jccoefct.c +449 -0
  11. data/ext/image_intensities/turbojpeg/jccolext.c +144 -0
  12. data/ext/image_intensities/turbojpeg/jccolor.c +710 -0
  13. data/ext/image_intensities/turbojpeg/jcdctmgr.c +721 -0
  14. data/ext/image_intensities/turbojpeg/jchuff.c +1096 -0
  15. data/ext/image_intensities/turbojpeg/jchuff.h +42 -0
  16. data/ext/image_intensities/turbojpeg/jcicc.c +105 -0
  17. data/ext/image_intensities/turbojpeg/jcinit.c +77 -0
  18. data/ext/image_intensities/turbojpeg/jcmainct.c +162 -0
  19. data/ext/image_intensities/turbojpeg/jcmarker.c +664 -0
  20. data/ext/image_intensities/turbojpeg/jcmaster.c +640 -0
  21. data/ext/image_intensities/turbojpeg/jcomapi.c +109 -0
  22. data/ext/image_intensities/turbojpeg/jconfig.h +73 -0
  23. data/ext/image_intensities/turbojpeg/jconfigint.h +31 -0
  24. data/ext/image_intensities/turbojpeg/jcparam.c +541 -0
  25. data/ext/image_intensities/turbojpeg/jcphuff.c +1105 -0
  26. data/ext/image_intensities/turbojpeg/jcprepct.c +351 -0
  27. data/ext/image_intensities/turbojpeg/jcsample.c +539 -0
  28. data/ext/image_intensities/turbojpeg/jctrans.c +400 -0
  29. data/ext/image_intensities/turbojpeg/jdapimin.c +407 -0
  30. data/ext/image_intensities/turbojpeg/jdapistd.c +639 -0
  31. data/ext/image_intensities/turbojpeg/jdarith.c +773 -0
  32. data/ext/image_intensities/turbojpeg/jdatadst-tj.c +203 -0
  33. data/ext/image_intensities/turbojpeg/jdatadst.c +293 -0
  34. data/ext/image_intensities/turbojpeg/jdatasrc-tj.c +194 -0
  35. data/ext/image_intensities/turbojpeg/jdatasrc.c +295 -0
  36. data/ext/image_intensities/turbojpeg/jdcoefct.c +692 -0
  37. data/ext/image_intensities/turbojpeg/jdcoefct.h +82 -0
  38. data/ext/image_intensities/turbojpeg/jdcol565.c +384 -0
  39. data/ext/image_intensities/turbojpeg/jdcolext.c +143 -0
  40. data/ext/image_intensities/turbojpeg/jdcolor.c +883 -0
  41. data/ext/image_intensities/turbojpeg/jdct.h +208 -0
  42. data/ext/image_intensities/turbojpeg/jddctmgr.c +352 -0
  43. data/ext/image_intensities/turbojpeg/jdhuff.c +831 -0
  44. data/ext/image_intensities/turbojpeg/jdhuff.h +238 -0
  45. data/ext/image_intensities/turbojpeg/jdicc.c +171 -0
  46. data/ext/image_intensities/turbojpeg/jdinput.c +408 -0
  47. data/ext/image_intensities/turbojpeg/jdmainct.c +460 -0
  48. data/ext/image_intensities/turbojpeg/jdmainct.h +71 -0
  49. data/ext/image_intensities/turbojpeg/jdmarker.c +1377 -0
  50. data/ext/image_intensities/turbojpeg/jdmaster.c +737 -0
  51. data/ext/image_intensities/turbojpeg/jdmaster.h +28 -0
  52. data/ext/image_intensities/turbojpeg/jdmerge.c +617 -0
  53. data/ext/image_intensities/turbojpeg/jdmrg565.c +354 -0
  54. data/ext/image_intensities/turbojpeg/jdmrgext.c +184 -0
  55. data/ext/image_intensities/turbojpeg/jdphuff.c +687 -0
  56. data/ext/image_intensities/turbojpeg/jdpostct.c +294 -0
  57. data/ext/image_intensities/turbojpeg/jdsample.c +518 -0
  58. data/ext/image_intensities/turbojpeg/jdsample.h +50 -0
  59. data/ext/image_intensities/turbojpeg/jdtrans.c +155 -0
  60. data/ext/image_intensities/turbojpeg/jerror.c +251 -0
  61. data/ext/image_intensities/turbojpeg/jfdctflt.c +169 -0
  62. data/ext/image_intensities/turbojpeg/jfdctfst.c +227 -0
  63. data/ext/image_intensities/turbojpeg/jfdctint.c +288 -0
  64. data/ext/image_intensities/turbojpeg/jidctflt.c +240 -0
  65. data/ext/image_intensities/turbojpeg/jidctfst.c +371 -0
  66. data/ext/image_intensities/turbojpeg/jidctint.c +2627 -0
  67. data/ext/image_intensities/turbojpeg/jidctred.c +409 -0
  68. data/ext/image_intensities/turbojpeg/jinclude.h +88 -0
  69. data/ext/image_intensities/turbojpeg/jmemmgr.c +1179 -0
  70. data/ext/image_intensities/turbojpeg/jmemnobs.c +115 -0
  71. data/ext/image_intensities/turbojpeg/jmemsys.h +178 -0
  72. data/ext/image_intensities/turbojpeg/jpeg_nbits_table.h +4098 -0
  73. data/ext/image_intensities/turbojpeg/jpegcomp.h +31 -0
  74. data/ext/image_intensities/turbojpeg/jquant1.c +859 -0
  75. data/ext/image_intensities/turbojpeg/jquant2.c +1285 -0
  76. data/ext/image_intensities/turbojpeg/jsimd.h +117 -0
  77. data/ext/image_intensities/turbojpeg/jsimd_none.c +418 -0
  78. data/ext/image_intensities/turbojpeg/jsimddct.h +70 -0
  79. data/ext/image_intensities/turbojpeg/jstdhuff.c +143 -0
  80. data/ext/image_intensities/turbojpeg/jutils.c +133 -0
  81. data/ext/image_intensities/turbojpeg/jversion.h +52 -0
  82. data/ext/image_intensities/turbojpeg/libturbojpeg.a +0 -0
  83. data/ext/image_intensities/turbojpeg/rdbmp.c +689 -0
  84. data/ext/image_intensities/turbojpeg/rdppm.c +766 -0
  85. data/ext/image_intensities/turbojpeg/tjutil.h +47 -0
  86. data/ext/image_intensities/turbojpeg/transupp.c +1628 -0
  87. data/ext/image_intensities/turbojpeg/transupp.h +210 -0
  88. data/ext/image_intensities/turbojpeg/turbojpeg.c +2150 -0
  89. data/ext/image_intensities/turbojpeg/wrbmp.c +558 -0
  90. data/ext/image_intensities/turbojpeg/wrppm.c +365 -0
  91. data/image_intensities.gemspec +1 -1
  92. data/lib/image_intensities/version.rb +1 -1
  93. metadata +91 -3
@@ -0,0 +1,449 @@
1
+ /*
2
+ * jccoefct.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software:
5
+ * Copyright (C) 1994-1997, Thomas G. Lane.
6
+ * It was modified by The libjpeg-turbo Project to include only code and
7
+ * information relevant to libjpeg-turbo.
8
+ * For conditions of distribution and use, see the accompanying README.ijg
9
+ * file.
10
+ *
11
+ * This file contains the coefficient buffer controller for compression.
12
+ * This controller is the top level of the JPEG compressor proper.
13
+ * The coefficient buffer lies between forward-DCT and entropy encoding steps.
14
+ */
15
+
16
+ #define JPEG_INTERNALS
17
+ #include "jinclude.h"
18
+ #include "jpeglib.h"
19
+
20
+
21
+ /* We use a full-image coefficient buffer when doing Huffman optimization,
22
+ * and also for writing multiple-scan JPEG files. In all cases, the DCT
23
+ * step is run during the first pass, and subsequent passes need only read
24
+ * the buffered coefficients.
25
+ */
26
+ #ifdef ENTROPY_OPT_SUPPORTED
27
+ #define FULL_COEF_BUFFER_SUPPORTED
28
+ #else
29
+ #ifdef C_MULTISCAN_FILES_SUPPORTED
30
+ #define FULL_COEF_BUFFER_SUPPORTED
31
+ #endif
32
+ #endif
33
+
34
+
35
+ /* Private buffer controller object */
36
+
37
+ typedef struct {
38
+ struct jpeg_c_coef_controller pub; /* public fields */
39
+
40
+ JDIMENSION iMCU_row_num; /* iMCU row # within image */
41
+ JDIMENSION mcu_ctr; /* counts MCUs processed in current row */
42
+ int MCU_vert_offset; /* counts MCU rows within iMCU row */
43
+ int MCU_rows_per_iMCU_row; /* number of such rows needed */
44
+
45
+ /* For single-pass compression, it's sufficient to buffer just one MCU
46
+ * (although this may prove a bit slow in practice). We allocate a
47
+ * workspace of C_MAX_BLOCKS_IN_MCU coefficient blocks, and reuse it for each
48
+ * MCU constructed and sent. In multi-pass modes, this array points to the
49
+ * current MCU's blocks within the virtual arrays.
50
+ */
51
+ JBLOCKROW MCU_buffer[C_MAX_BLOCKS_IN_MCU];
52
+
53
+ /* In multi-pass modes, we need a virtual block array for each component. */
54
+ jvirt_barray_ptr whole_image[MAX_COMPONENTS];
55
+ } my_coef_controller;
56
+
57
+ typedef my_coef_controller *my_coef_ptr;
58
+
59
+
60
+ /* Forward declarations */
61
+ METHODDEF(boolean) compress_data(j_compress_ptr cinfo, JSAMPIMAGE input_buf);
62
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
63
+ METHODDEF(boolean) compress_first_pass(j_compress_ptr cinfo,
64
+ JSAMPIMAGE input_buf);
65
+ METHODDEF(boolean) compress_output(j_compress_ptr cinfo, JSAMPIMAGE input_buf);
66
+ #endif
67
+
68
+
69
+ LOCAL(void)
70
+ start_iMCU_row(j_compress_ptr cinfo)
71
+ /* Reset within-iMCU-row counters for a new row */
72
+ {
73
+ my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
74
+
75
+ /* In an interleaved scan, an MCU row is the same as an iMCU row.
76
+ * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
77
+ * But at the bottom of the image, process only what's left.
78
+ */
79
+ if (cinfo->comps_in_scan > 1) {
80
+ coef->MCU_rows_per_iMCU_row = 1;
81
+ } else {
82
+ if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1))
83
+ coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
84
+ else
85
+ coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
86
+ }
87
+
88
+ coef->mcu_ctr = 0;
89
+ coef->MCU_vert_offset = 0;
90
+ }
91
+
92
+
93
+ /*
94
+ * Initialize for a processing pass.
95
+ */
96
+
97
+ METHODDEF(void)
98
+ start_pass_coef(j_compress_ptr cinfo, J_BUF_MODE pass_mode)
99
+ {
100
+ my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
101
+
102
+ coef->iMCU_row_num = 0;
103
+ start_iMCU_row(cinfo);
104
+
105
+ switch (pass_mode) {
106
+ case JBUF_PASS_THRU:
107
+ if (coef->whole_image[0] != NULL)
108
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
109
+ coef->pub.compress_data = compress_data;
110
+ break;
111
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
112
+ case JBUF_SAVE_AND_PASS:
113
+ if (coef->whole_image[0] == NULL)
114
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
115
+ coef->pub.compress_data = compress_first_pass;
116
+ break;
117
+ case JBUF_CRANK_DEST:
118
+ if (coef->whole_image[0] == NULL)
119
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
120
+ coef->pub.compress_data = compress_output;
121
+ break;
122
+ #endif
123
+ default:
124
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
125
+ break;
126
+ }
127
+ }
128
+
129
+
130
+ /*
131
+ * Process some data in the single-pass case.
132
+ * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
133
+ * per call, ie, v_samp_factor block rows for each component in the image.
134
+ * Returns TRUE if the iMCU row is completed, FALSE if suspended.
135
+ *
136
+ * NB: input_buf contains a plane for each component in image,
137
+ * which we index according to the component's SOF position.
138
+ */
139
+
140
+ METHODDEF(boolean)
141
+ compress_data(j_compress_ptr cinfo, JSAMPIMAGE input_buf)
142
+ {
143
+ my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
144
+ JDIMENSION MCU_col_num; /* index of current MCU within row */
145
+ JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
146
+ JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
147
+ int blkn, bi, ci, yindex, yoffset, blockcnt;
148
+ JDIMENSION ypos, xpos;
149
+ jpeg_component_info *compptr;
150
+
151
+ /* Loop to write as much as one whole iMCU row */
152
+ for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
153
+ yoffset++) {
154
+ for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;
155
+ MCU_col_num++) {
156
+ /* Determine where data comes from in input_buf and do the DCT thing.
157
+ * Each call on forward_DCT processes a horizontal row of DCT blocks
158
+ * as wide as an MCU; we rely on having allocated the MCU_buffer[] blocks
159
+ * sequentially. Dummy blocks at the right or bottom edge are filled in
160
+ * specially. The data in them does not matter for image reconstruction,
161
+ * so we fill them with values that will encode to the smallest amount of
162
+ * data, viz: all zeroes in the AC entries, DC entries equal to previous
163
+ * block's DC value. (Thanks to Thomas Kinsman for this idea.)
164
+ */
165
+ blkn = 0;
166
+ for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
167
+ compptr = cinfo->cur_comp_info[ci];
168
+ blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width :
169
+ compptr->last_col_width;
170
+ xpos = MCU_col_num * compptr->MCU_sample_width;
171
+ ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
172
+ for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
173
+ if (coef->iMCU_row_num < last_iMCU_row ||
174
+ yoffset + yindex < compptr->last_row_height) {
175
+ (*cinfo->fdct->forward_DCT) (cinfo, compptr,
176
+ input_buf[compptr->component_index],
177
+ coef->MCU_buffer[blkn],
178
+ ypos, xpos, (JDIMENSION)blockcnt);
179
+ if (blockcnt < compptr->MCU_width) {
180
+ /* Create some dummy blocks at the right edge of the image. */
181
+ jzero_far((void *)coef->MCU_buffer[blkn + blockcnt],
182
+ (compptr->MCU_width - blockcnt) * sizeof(JBLOCK));
183
+ for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
184
+ coef->MCU_buffer[blkn + bi][0][0] =
185
+ coef->MCU_buffer[blkn + bi - 1][0][0];
186
+ }
187
+ }
188
+ } else {
189
+ /* Create a row of dummy blocks at the bottom of the image. */
190
+ jzero_far((void *)coef->MCU_buffer[blkn],
191
+ compptr->MCU_width * sizeof(JBLOCK));
192
+ for (bi = 0; bi < compptr->MCU_width; bi++) {
193
+ coef->MCU_buffer[blkn + bi][0][0] =
194
+ coef->MCU_buffer[blkn - 1][0][0];
195
+ }
196
+ }
197
+ blkn += compptr->MCU_width;
198
+ ypos += DCTSIZE;
199
+ }
200
+ }
201
+ /* Try to write the MCU. In event of a suspension failure, we will
202
+ * re-DCT the MCU on restart (a bit inefficient, could be fixed...)
203
+ */
204
+ if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
205
+ /* Suspension forced; update state counters and exit */
206
+ coef->MCU_vert_offset = yoffset;
207
+ coef->mcu_ctr = MCU_col_num;
208
+ return FALSE;
209
+ }
210
+ }
211
+ /* Completed an MCU row, but perhaps not an iMCU row */
212
+ coef->mcu_ctr = 0;
213
+ }
214
+ /* Completed the iMCU row, advance counters for next one */
215
+ coef->iMCU_row_num++;
216
+ start_iMCU_row(cinfo);
217
+ return TRUE;
218
+ }
219
+
220
+
221
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
222
+
223
+ /*
224
+ * Process some data in the first pass of a multi-pass case.
225
+ * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
226
+ * per call, ie, v_samp_factor block rows for each component in the image.
227
+ * This amount of data is read from the source buffer, DCT'd and quantized,
228
+ * and saved into the virtual arrays. We also generate suitable dummy blocks
229
+ * as needed at the right and lower edges. (The dummy blocks are constructed
230
+ * in the virtual arrays, which have been padded appropriately.) This makes
231
+ * it possible for subsequent passes not to worry about real vs. dummy blocks.
232
+ *
233
+ * We must also emit the data to the entropy encoder. This is conveniently
234
+ * done by calling compress_output() after we've loaded the current strip
235
+ * of the virtual arrays.
236
+ *
237
+ * NB: input_buf contains a plane for each component in image. All
238
+ * components are DCT'd and loaded into the virtual arrays in this pass.
239
+ * However, it may be that only a subset of the components are emitted to
240
+ * the entropy encoder during this first pass; be careful about looking
241
+ * at the scan-dependent variables (MCU dimensions, etc).
242
+ */
243
+
244
+ METHODDEF(boolean)
245
+ compress_first_pass(j_compress_ptr cinfo, JSAMPIMAGE input_buf)
246
+ {
247
+ my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
248
+ JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
249
+ JDIMENSION blocks_across, MCUs_across, MCUindex;
250
+ int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
251
+ JCOEF lastDC;
252
+ jpeg_component_info *compptr;
253
+ JBLOCKARRAY buffer;
254
+ JBLOCKROW thisblockrow, lastblockrow;
255
+
256
+ for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
257
+ ci++, compptr++) {
258
+ /* Align the virtual buffer for this component. */
259
+ buffer = (*cinfo->mem->access_virt_barray)
260
+ ((j_common_ptr)cinfo, coef->whole_image[ci],
261
+ coef->iMCU_row_num * compptr->v_samp_factor,
262
+ (JDIMENSION)compptr->v_samp_factor, TRUE);
263
+ /* Count non-dummy DCT block rows in this iMCU row. */
264
+ if (coef->iMCU_row_num < last_iMCU_row)
265
+ block_rows = compptr->v_samp_factor;
266
+ else {
267
+ /* NB: can't use last_row_height here, since may not be set! */
268
+ block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
269
+ if (block_rows == 0) block_rows = compptr->v_samp_factor;
270
+ }
271
+ blocks_across = compptr->width_in_blocks;
272
+ h_samp_factor = compptr->h_samp_factor;
273
+ /* Count number of dummy blocks to be added at the right margin. */
274
+ ndummy = (int)(blocks_across % h_samp_factor);
275
+ if (ndummy > 0)
276
+ ndummy = h_samp_factor - ndummy;
277
+ /* Perform DCT for all non-dummy blocks in this iMCU row. Each call
278
+ * on forward_DCT processes a complete horizontal row of DCT blocks.
279
+ */
280
+ for (block_row = 0; block_row < block_rows; block_row++) {
281
+ thisblockrow = buffer[block_row];
282
+ (*cinfo->fdct->forward_DCT) (cinfo, compptr,
283
+ input_buf[ci], thisblockrow,
284
+ (JDIMENSION)(block_row * DCTSIZE),
285
+ (JDIMENSION)0, blocks_across);
286
+ if (ndummy > 0) {
287
+ /* Create dummy blocks at the right edge of the image. */
288
+ thisblockrow += blocks_across; /* => first dummy block */
289
+ jzero_far((void *)thisblockrow, ndummy * sizeof(JBLOCK));
290
+ lastDC = thisblockrow[-1][0];
291
+ for (bi = 0; bi < ndummy; bi++) {
292
+ thisblockrow[bi][0] = lastDC;
293
+ }
294
+ }
295
+ }
296
+ /* If at end of image, create dummy block rows as needed.
297
+ * The tricky part here is that within each MCU, we want the DC values
298
+ * of the dummy blocks to match the last real block's DC value.
299
+ * This squeezes a few more bytes out of the resulting file...
300
+ */
301
+ if (coef->iMCU_row_num == last_iMCU_row) {
302
+ blocks_across += ndummy; /* include lower right corner */
303
+ MCUs_across = blocks_across / h_samp_factor;
304
+ for (block_row = block_rows; block_row < compptr->v_samp_factor;
305
+ block_row++) {
306
+ thisblockrow = buffer[block_row];
307
+ lastblockrow = buffer[block_row - 1];
308
+ jzero_far((void *)thisblockrow,
309
+ (size_t)(blocks_across * sizeof(JBLOCK)));
310
+ for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
311
+ lastDC = lastblockrow[h_samp_factor - 1][0];
312
+ for (bi = 0; bi < h_samp_factor; bi++) {
313
+ thisblockrow[bi][0] = lastDC;
314
+ }
315
+ thisblockrow += h_samp_factor; /* advance to next MCU in row */
316
+ lastblockrow += h_samp_factor;
317
+ }
318
+ }
319
+ }
320
+ }
321
+ /* NB: compress_output will increment iMCU_row_num if successful.
322
+ * A suspension return will result in redoing all the work above next time.
323
+ */
324
+
325
+ /* Emit data to the entropy encoder, sharing code with subsequent passes */
326
+ return compress_output(cinfo, input_buf);
327
+ }
328
+
329
+
330
+ /*
331
+ * Process some data in subsequent passes of a multi-pass case.
332
+ * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
333
+ * per call, ie, v_samp_factor block rows for each component in the scan.
334
+ * The data is obtained from the virtual arrays and fed to the entropy coder.
335
+ * Returns TRUE if the iMCU row is completed, FALSE if suspended.
336
+ *
337
+ * NB: input_buf is ignored; it is likely to be a NULL pointer.
338
+ */
339
+
340
+ METHODDEF(boolean)
341
+ compress_output(j_compress_ptr cinfo, JSAMPIMAGE input_buf)
342
+ {
343
+ my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
344
+ JDIMENSION MCU_col_num; /* index of current MCU within row */
345
+ int blkn, ci, xindex, yindex, yoffset;
346
+ JDIMENSION start_col;
347
+ JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
348
+ JBLOCKROW buffer_ptr;
349
+ jpeg_component_info *compptr;
350
+
351
+ /* Align the virtual buffers for the components used in this scan.
352
+ * NB: during first pass, this is safe only because the buffers will
353
+ * already be aligned properly, so jmemmgr.c won't need to do any I/O.
354
+ */
355
+ for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
356
+ compptr = cinfo->cur_comp_info[ci];
357
+ buffer[ci] = (*cinfo->mem->access_virt_barray)
358
+ ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],
359
+ coef->iMCU_row_num * compptr->v_samp_factor,
360
+ (JDIMENSION)compptr->v_samp_factor, FALSE);
361
+ }
362
+
363
+ /* Loop to process one whole iMCU row */
364
+ for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
365
+ yoffset++) {
366
+ for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
367
+ MCU_col_num++) {
368
+ /* Construct list of pointers to DCT blocks belonging to this MCU */
369
+ blkn = 0; /* index of current DCT block within MCU */
370
+ for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
371
+ compptr = cinfo->cur_comp_info[ci];
372
+ start_col = MCU_col_num * compptr->MCU_width;
373
+ for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
374
+ buffer_ptr = buffer[ci][yindex + yoffset] + start_col;
375
+ for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
376
+ coef->MCU_buffer[blkn++] = buffer_ptr++;
377
+ }
378
+ }
379
+ }
380
+ /* Try to write the MCU. */
381
+ if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
382
+ /* Suspension forced; update state counters and exit */
383
+ coef->MCU_vert_offset = yoffset;
384
+ coef->mcu_ctr = MCU_col_num;
385
+ return FALSE;
386
+ }
387
+ }
388
+ /* Completed an MCU row, but perhaps not an iMCU row */
389
+ coef->mcu_ctr = 0;
390
+ }
391
+ /* Completed the iMCU row, advance counters for next one */
392
+ coef->iMCU_row_num++;
393
+ start_iMCU_row(cinfo);
394
+ return TRUE;
395
+ }
396
+
397
+ #endif /* FULL_COEF_BUFFER_SUPPORTED */
398
+
399
+
400
+ /*
401
+ * Initialize coefficient buffer controller.
402
+ */
403
+
404
+ GLOBAL(void)
405
+ jinit_c_coef_controller(j_compress_ptr cinfo, boolean need_full_buffer)
406
+ {
407
+ my_coef_ptr coef;
408
+
409
+ coef = (my_coef_ptr)
410
+ (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
411
+ sizeof(my_coef_controller));
412
+ cinfo->coef = (struct jpeg_c_coef_controller *)coef;
413
+ coef->pub.start_pass = start_pass_coef;
414
+
415
+ /* Create the coefficient buffer. */
416
+ if (need_full_buffer) {
417
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
418
+ /* Allocate a full-image virtual array for each component, */
419
+ /* padded to a multiple of samp_factor DCT blocks in each direction. */
420
+ int ci;
421
+ jpeg_component_info *compptr;
422
+
423
+ for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
424
+ ci++, compptr++) {
425
+ coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
426
+ ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
427
+ (JDIMENSION)jround_up((long)compptr->width_in_blocks,
428
+ (long)compptr->h_samp_factor),
429
+ (JDIMENSION)jround_up((long)compptr->height_in_blocks,
430
+ (long)compptr->v_samp_factor),
431
+ (JDIMENSION)compptr->v_samp_factor);
432
+ }
433
+ #else
434
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
435
+ #endif
436
+ } else {
437
+ /* We only need a single-MCU buffer. */
438
+ JBLOCKROW buffer;
439
+ int i;
440
+
441
+ buffer = (JBLOCKROW)
442
+ (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,
443
+ C_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));
444
+ for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
445
+ coef->MCU_buffer[i] = buffer + i;
446
+ }
447
+ coef->whole_image[0] = NULL; /* flag for no virtual arrays */
448
+ }
449
+ }
@@ -0,0 +1,144 @@
1
+ /*
2
+ * jccolext.c
3
+ *
4
+ * This file was part of the Independent JPEG Group's software:
5
+ * Copyright (C) 1991-1996, Thomas G. Lane.
6
+ * libjpeg-turbo Modifications:
7
+ * Copyright (C) 2009-2012, 2015, D. R. Commander.
8
+ * For conditions of distribution and use, see the accompanying README.ijg
9
+ * file.
10
+ *
11
+ * This file contains input colorspace conversion routines.
12
+ */
13
+
14
+
15
+ /* This file is included by jccolor.c */
16
+
17
+
18
+ /*
19
+ * Convert some rows of samples to the JPEG colorspace.
20
+ *
21
+ * Note that we change from the application's interleaved-pixel format
22
+ * to our internal noninterleaved, one-plane-per-component format.
23
+ * The input buffer is therefore three times as wide as the output buffer.
24
+ *
25
+ * A starting row offset is provided only for the output buffer. The caller
26
+ * can easily adjust the passed input_buf value to accommodate any row
27
+ * offset required on that side.
28
+ */
29
+
30
+ INLINE
31
+ LOCAL(void)
32
+ rgb_ycc_convert_internal(j_compress_ptr cinfo, JSAMPARRAY input_buf,
33
+ JSAMPIMAGE output_buf, JDIMENSION output_row,
34
+ int num_rows)
35
+ {
36
+ my_cconvert_ptr cconvert = (my_cconvert_ptr)cinfo->cconvert;
37
+ register int r, g, b;
38
+ register JLONG *ctab = cconvert->rgb_ycc_tab;
39
+ register JSAMPROW inptr;
40
+ register JSAMPROW outptr0, outptr1, outptr2;
41
+ register JDIMENSION col;
42
+ JDIMENSION num_cols = cinfo->image_width;
43
+
44
+ while (--num_rows >= 0) {
45
+ inptr = *input_buf++;
46
+ outptr0 = output_buf[0][output_row];
47
+ outptr1 = output_buf[1][output_row];
48
+ outptr2 = output_buf[2][output_row];
49
+ output_row++;
50
+ for (col = 0; col < num_cols; col++) {
51
+ r = GETJSAMPLE(inptr[RGB_RED]);
52
+ g = GETJSAMPLE(inptr[RGB_GREEN]);
53
+ b = GETJSAMPLE(inptr[RGB_BLUE]);
54
+ inptr += RGB_PIXELSIZE;
55
+ /* If the inputs are 0..MAXJSAMPLE, the outputs of these equations
56
+ * must be too; we do not need an explicit range-limiting operation.
57
+ * Hence the value being shifted is never negative, and we don't
58
+ * need the general RIGHT_SHIFT macro.
59
+ */
60
+ /* Y */
61
+ outptr0[col] = (JSAMPLE)((ctab[r + R_Y_OFF] + ctab[g + G_Y_OFF] +
62
+ ctab[b + B_Y_OFF]) >> SCALEBITS);
63
+ /* Cb */
64
+ outptr1[col] = (JSAMPLE)((ctab[r + R_CB_OFF] + ctab[g + G_CB_OFF] +
65
+ ctab[b + B_CB_OFF]) >> SCALEBITS);
66
+ /* Cr */
67
+ outptr2[col] = (JSAMPLE)((ctab[r + R_CR_OFF] + ctab[g + G_CR_OFF] +
68
+ ctab[b + B_CR_OFF]) >> SCALEBITS);
69
+ }
70
+ }
71
+ }
72
+
73
+
74
+ /**************** Cases other than RGB -> YCbCr **************/
75
+
76
+
77
+ /*
78
+ * Convert some rows of samples to the JPEG colorspace.
79
+ * This version handles RGB->grayscale conversion, which is the same
80
+ * as the RGB->Y portion of RGB->YCbCr.
81
+ * We assume rgb_ycc_start has been called (we only use the Y tables).
82
+ */
83
+
84
+ INLINE
85
+ LOCAL(void)
86
+ rgb_gray_convert_internal(j_compress_ptr cinfo, JSAMPARRAY input_buf,
87
+ JSAMPIMAGE output_buf, JDIMENSION output_row,
88
+ int num_rows)
89
+ {
90
+ my_cconvert_ptr cconvert = (my_cconvert_ptr)cinfo->cconvert;
91
+ register int r, g, b;
92
+ register JLONG *ctab = cconvert->rgb_ycc_tab;
93
+ register JSAMPROW inptr;
94
+ register JSAMPROW outptr;
95
+ register JDIMENSION col;
96
+ JDIMENSION num_cols = cinfo->image_width;
97
+
98
+ while (--num_rows >= 0) {
99
+ inptr = *input_buf++;
100
+ outptr = output_buf[0][output_row];
101
+ output_row++;
102
+ for (col = 0; col < num_cols; col++) {
103
+ r = GETJSAMPLE(inptr[RGB_RED]);
104
+ g = GETJSAMPLE(inptr[RGB_GREEN]);
105
+ b = GETJSAMPLE(inptr[RGB_BLUE]);
106
+ inptr += RGB_PIXELSIZE;
107
+ /* Y */
108
+ outptr[col] = (JSAMPLE)((ctab[r + R_Y_OFF] + ctab[g + G_Y_OFF] +
109
+ ctab[b + B_Y_OFF]) >> SCALEBITS);
110
+ }
111
+ }
112
+ }
113
+
114
+
115
+ /*
116
+ * Convert some rows of samples to the JPEG colorspace.
117
+ * This version handles extended RGB->plain RGB conversion
118
+ */
119
+
120
+ INLINE
121
+ LOCAL(void)
122
+ rgb_rgb_convert_internal(j_compress_ptr cinfo, JSAMPARRAY input_buf,
123
+ JSAMPIMAGE output_buf, JDIMENSION output_row,
124
+ int num_rows)
125
+ {
126
+ register JSAMPROW inptr;
127
+ register JSAMPROW outptr0, outptr1, outptr2;
128
+ register JDIMENSION col;
129
+ JDIMENSION num_cols = cinfo->image_width;
130
+
131
+ while (--num_rows >= 0) {
132
+ inptr = *input_buf++;
133
+ outptr0 = output_buf[0][output_row];
134
+ outptr1 = output_buf[1][output_row];
135
+ outptr2 = output_buf[2][output_row];
136
+ output_row++;
137
+ for (col = 0; col < num_cols; col++) {
138
+ outptr0[col] = GETJSAMPLE(inptr[RGB_RED]);
139
+ outptr1[col] = GETJSAMPLE(inptr[RGB_GREEN]);
140
+ outptr2[col] = GETJSAMPLE(inptr[RGB_BLUE]);
141
+ inptr += RGB_PIXELSIZE;
142
+ }
143
+ }
144
+ }