Coverage Report

Created: 2025-07-01 06:26

/src/libjpeg-turbo.main/src/jccoefct.c
Line
Count
Source (jump to first uncovered line)
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
 * libjpeg-turbo Modifications:
7
 * Copyright (C) 2022, 2024, D. R. Commander.
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 lossy 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
#include "jsamplecomp.h"
20
21
22
/* We use a full-image coefficient buffer when doing Huffman optimization,
23
 * and also for writing multiple-scan JPEG files.  In all cases, the DCT
24
 * step is run during the first pass, and subsequent passes need only read
25
 * the buffered coefficients.
26
 */
27
#ifdef ENTROPY_OPT_SUPPORTED
28
#define FULL_COEF_BUFFER_SUPPORTED
29
#else
30
#ifdef C_MULTISCAN_FILES_SUPPORTED
31
#define FULL_COEF_BUFFER_SUPPORTED
32
#endif
33
#endif
34
35
36
/* Private buffer controller object */
37
38
typedef struct {
39
  struct jpeg_c_coef_controller pub; /* public fields */
40
41
  JDIMENSION iMCU_row_num;      /* iMCU row # within image */
42
  JDIMENSION mcu_ctr;           /* counts MCUs processed in current row */
43
  int MCU_vert_offset;          /* counts MCU rows within iMCU row */
44
  int MCU_rows_per_iMCU_row;    /* number of such rows needed */
45
46
  /* For single-pass compression, it's sufficient to buffer just one MCU
47
   * (although this may prove a bit slow in practice).  We allocate a
48
   * workspace of C_MAX_BLOCKS_IN_MCU coefficient blocks, and reuse it for each
49
   * MCU constructed and sent.  In multi-pass modes, this array points to the
50
   * current MCU's blocks within the virtual arrays.
51
   */
52
  JBLOCKROW MCU_buffer[C_MAX_BLOCKS_IN_MCU];
53
54
  /* In multi-pass modes, we need a virtual block array for each component. */
55
  jvirt_barray_ptr whole_image[MAX_COMPONENTS];
56
} my_coef_controller;
57
58
typedef my_coef_controller *my_coef_ptr;
59
60
61
/* Forward declarations */
62
METHODDEF(boolean) compress_data(j_compress_ptr cinfo, _JSAMPIMAGE input_buf);
63
#ifdef FULL_COEF_BUFFER_SUPPORTED
64
METHODDEF(boolean) compress_first_pass(j_compress_ptr cinfo,
65
                                       _JSAMPIMAGE input_buf);
66
METHODDEF(boolean) compress_output(j_compress_ptr cinfo,
67
                                   _JSAMPIMAGE input_buf);
68
#endif
69
70
71
LOCAL(void)
72
start_iMCU_row(j_compress_ptr cinfo)
73
/* Reset within-iMCU-row counters for a new row */
74
21.1M
{
75
21.1M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
76
77
  /* In an interleaved scan, an MCU row is the same as an iMCU row.
78
   * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
79
   * But at the bottom of the image, process only what's left.
80
   */
81
21.1M
  if (cinfo->comps_in_scan > 1) {
82
4.10M
    coef->MCU_rows_per_iMCU_row = 1;
83
17.0M
  } else {
84
17.0M
    if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1))
85
16.9M
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
86
99.1k
    else
87
99.1k
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
88
17.0M
  }
89
90
21.1M
  coef->mcu_ctr = 0;
91
21.1M
  coef->MCU_vert_offset = 0;
92
21.1M
}
jccoefct-8.c:start_iMCU_row
Line
Count
Source
74
21.1M
{
75
21.1M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
76
77
  /* In an interleaved scan, an MCU row is the same as an iMCU row.
78
   * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
79
   * But at the bottom of the image, process only what's left.
80
   */
81
21.1M
  if (cinfo->comps_in_scan > 1) {
82
4.10M
    coef->MCU_rows_per_iMCU_row = 1;
83
17.0M
  } else {
84
17.0M
    if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1))
85
16.9M
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
86
99.1k
    else
87
99.1k
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
88
17.0M
  }
89
90
21.1M
  coef->mcu_ctr = 0;
91
21.1M
  coef->MCU_vert_offset = 0;
92
21.1M
}
Unexecuted instantiation: jccoefct-12.c:start_iMCU_row
93
94
95
/*
96
 * Initialize for a processing pass.
97
 */
98
99
METHODDEF(void)
100
start_pass_coef(j_compress_ptr cinfo, J_BUF_MODE pass_mode)
101
62.4k
{
102
62.4k
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
103
104
62.4k
  coef->iMCU_row_num = 0;
105
62.4k
  start_iMCU_row(cinfo);
106
107
62.4k
  switch (pass_mode) {
108
5.28k
  case JBUF_PASS_THRU:
109
5.28k
    if (coef->whole_image[0] != NULL)
110
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
111
5.28k
    coef->pub._compress_data = compress_data;
112
5.28k
    break;
113
0
#ifdef FULL_COEF_BUFFER_SUPPORTED
114
5.53k
  case JBUF_SAVE_AND_PASS:
115
5.53k
    if (coef->whole_image[0] == NULL)
116
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
117
5.53k
    coef->pub._compress_data = compress_first_pass;
118
5.53k
    break;
119
51.6k
  case JBUF_CRANK_DEST:
120
51.6k
    if (coef->whole_image[0] == NULL)
121
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
122
51.6k
    coef->pub._compress_data = compress_output;
123
51.6k
    break;
124
0
#endif
125
0
  default:
126
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
127
0
    break;
128
62.4k
  }
129
62.4k
}
jccoefct-8.c:start_pass_coef
Line
Count
Source
101
62.4k
{
102
62.4k
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
103
104
62.4k
  coef->iMCU_row_num = 0;
105
62.4k
  start_iMCU_row(cinfo);
106
107
62.4k
  switch (pass_mode) {
108
5.28k
  case JBUF_PASS_THRU:
109
5.28k
    if (coef->whole_image[0] != NULL)
110
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
111
5.28k
    coef->pub._compress_data = compress_data;
112
5.28k
    break;
113
0
#ifdef FULL_COEF_BUFFER_SUPPORTED
114
5.53k
  case JBUF_SAVE_AND_PASS:
115
5.53k
    if (coef->whole_image[0] == NULL)
116
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
117
5.53k
    coef->pub._compress_data = compress_first_pass;
118
5.53k
    break;
119
51.6k
  case JBUF_CRANK_DEST:
120
51.6k
    if (coef->whole_image[0] == NULL)
121
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
122
51.6k
    coef->pub._compress_data = compress_output;
123
51.6k
    break;
124
0
#endif
125
0
  default:
126
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
127
0
    break;
128
62.4k
  }
129
62.4k
}
Unexecuted instantiation: jccoefct-12.c:start_pass_coef
130
131
132
/*
133
 * Process some data in the single-pass case.
134
 * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
135
 * per call, ie, v_samp_factor block rows for each component in the image.
136
 * Returns TRUE if the iMCU row is completed, FALSE if suspended.
137
 *
138
 * NB: input_buf contains a plane for each component in image,
139
 * which we index according to the component's SOF position.
140
 */
141
142
METHODDEF(boolean)
143
compress_data(j_compress_ptr cinfo, _JSAMPIMAGE input_buf)
144
1.56M
{
145
1.56M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
146
1.56M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
147
1.56M
  JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
148
1.56M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
149
1.56M
  int blkn, bi, ci, yindex, yoffset, blockcnt;
150
1.56M
  JDIMENSION ypos, xpos;
151
1.56M
  jpeg_component_info *compptr;
152
153
  /* Loop to write as much as one whole iMCU row */
154
3.12M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
155
1.56M
       yoffset++) {
156
4.24M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;
157
2.68M
         MCU_col_num++) {
158
      /* Determine where data comes from in input_buf and do the DCT thing.
159
       * Each call on forward_DCT processes a horizontal row of DCT blocks
160
       * as wide as an MCU; we rely on having allocated the MCU_buffer[] blocks
161
       * sequentially.  Dummy blocks at the right or bottom edge are filled in
162
       * specially.  The data in them does not matter for image reconstruction,
163
       * so we fill them with values that will encode to the smallest amount of
164
       * data, viz: all zeroes in the AC entries, DC entries equal to previous
165
       * block's DC value.  (Thanks to Thomas Kinsman for this idea.)
166
       */
167
2.68M
      blkn = 0;
168
8.72M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
169
6.04M
        compptr = cinfo->cur_comp_info[ci];
170
6.04M
        blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width :
171
6.04M
                                                  compptr->last_col_width;
172
6.04M
        xpos = MCU_col_num * compptr->MCU_sample_width;
173
6.04M
        ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
174
12.6M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
175
6.57M
          if (coef->iMCU_row_num < last_iMCU_row ||
176
6.57M
              yoffset + yindex < compptr->last_row_height) {
177
6.40M
            (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
178
6.40M
                                          input_buf[compptr->component_index],
179
6.40M
                                          coef->MCU_buffer[blkn],
180
6.40M
                                          ypos, xpos, (JDIMENSION)blockcnt);
181
6.40M
            if (blockcnt < compptr->MCU_width) {
182
              /* Create some dummy blocks at the right edge of the image. */
183
629k
              jzero_far((void *)coef->MCU_buffer[blkn + blockcnt],
184
629k
                        (compptr->MCU_width - blockcnt) * sizeof(JBLOCK));
185
1.25M
              for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
186
629k
                coef->MCU_buffer[blkn + bi][0][0] =
187
629k
                  coef->MCU_buffer[blkn + bi - 1][0][0];
188
629k
              }
189
629k
            }
190
6.40M
          } else {
191
            /* Create a row of dummy blocks at the bottom of the image. */
192
174k
            jzero_far((void *)coef->MCU_buffer[blkn],
193
174k
                      compptr->MCU_width * sizeof(JBLOCK));
194
522k
            for (bi = 0; bi < compptr->MCU_width; bi++) {
195
348k
              coef->MCU_buffer[blkn + bi][0][0] =
196
348k
                coef->MCU_buffer[blkn - 1][0][0];
197
348k
            }
198
174k
          }
199
6.57M
          blkn += compptr->MCU_width;
200
6.57M
          ypos += DCTSIZE;
201
6.57M
        }
202
6.04M
      }
203
      /* Try to write the MCU.  In event of a suspension failure, we will
204
       * re-DCT the MCU on restart (a bit inefficient, could be fixed...)
205
       */
206
2.68M
      if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
207
        /* Suspension forced; update state counters and exit */
208
0
        coef->MCU_vert_offset = yoffset;
209
0
        coef->mcu_ctr = MCU_col_num;
210
0
        return FALSE;
211
0
      }
212
2.68M
    }
213
    /* Completed an MCU row, but perhaps not an iMCU row */
214
1.56M
    coef->mcu_ctr = 0;
215
1.56M
  }
216
  /* Completed the iMCU row, advance counters for next one */
217
1.56M
  coef->iMCU_row_num++;
218
1.56M
  start_iMCU_row(cinfo);
219
1.56M
  return TRUE;
220
1.56M
}
jccoefct-8.c:compress_data
Line
Count
Source
144
1.56M
{
145
1.56M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
146
1.56M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
147
1.56M
  JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
148
1.56M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
149
1.56M
  int blkn, bi, ci, yindex, yoffset, blockcnt;
150
1.56M
  JDIMENSION ypos, xpos;
151
1.56M
  jpeg_component_info *compptr;
152
153
  /* Loop to write as much as one whole iMCU row */
154
3.12M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
155
1.56M
       yoffset++) {
156
4.24M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;
157
2.68M
         MCU_col_num++) {
158
      /* Determine where data comes from in input_buf and do the DCT thing.
159
       * Each call on forward_DCT processes a horizontal row of DCT blocks
160
       * as wide as an MCU; we rely on having allocated the MCU_buffer[] blocks
161
       * sequentially.  Dummy blocks at the right or bottom edge are filled in
162
       * specially.  The data in them does not matter for image reconstruction,
163
       * so we fill them with values that will encode to the smallest amount of
164
       * data, viz: all zeroes in the AC entries, DC entries equal to previous
165
       * block's DC value.  (Thanks to Thomas Kinsman for this idea.)
166
       */
167
2.68M
      blkn = 0;
168
8.72M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
169
6.04M
        compptr = cinfo->cur_comp_info[ci];
170
6.04M
        blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width :
171
6.04M
                                                  compptr->last_col_width;
172
6.04M
        xpos = MCU_col_num * compptr->MCU_sample_width;
173
6.04M
        ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
174
12.6M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
175
6.57M
          if (coef->iMCU_row_num < last_iMCU_row ||
176
6.57M
              yoffset + yindex < compptr->last_row_height) {
177
6.40M
            (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
178
6.40M
                                          input_buf[compptr->component_index],
179
6.40M
                                          coef->MCU_buffer[blkn],
180
6.40M
                                          ypos, xpos, (JDIMENSION)blockcnt);
181
6.40M
            if (blockcnt < compptr->MCU_width) {
182
              /* Create some dummy blocks at the right edge of the image. */
183
629k
              jzero_far((void *)coef->MCU_buffer[blkn + blockcnt],
184
629k
                        (compptr->MCU_width - blockcnt) * sizeof(JBLOCK));
185
1.25M
              for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
186
629k
                coef->MCU_buffer[blkn + bi][0][0] =
187
629k
                  coef->MCU_buffer[blkn + bi - 1][0][0];
188
629k
              }
189
629k
            }
190
6.40M
          } else {
191
            /* Create a row of dummy blocks at the bottom of the image. */
192
174k
            jzero_far((void *)coef->MCU_buffer[blkn],
193
174k
                      compptr->MCU_width * sizeof(JBLOCK));
194
522k
            for (bi = 0; bi < compptr->MCU_width; bi++) {
195
348k
              coef->MCU_buffer[blkn + bi][0][0] =
196
348k
                coef->MCU_buffer[blkn - 1][0][0];
197
348k
            }
198
174k
          }
199
6.57M
          blkn += compptr->MCU_width;
200
6.57M
          ypos += DCTSIZE;
201
6.57M
        }
202
6.04M
      }
203
      /* Try to write the MCU.  In event of a suspension failure, we will
204
       * re-DCT the MCU on restart (a bit inefficient, could be fixed...)
205
       */
206
2.68M
      if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
207
        /* Suspension forced; update state counters and exit */
208
0
        coef->MCU_vert_offset = yoffset;
209
0
        coef->mcu_ctr = MCU_col_num;
210
0
        return FALSE;
211
0
      }
212
2.68M
    }
213
    /* Completed an MCU row, but perhaps not an iMCU row */
214
1.56M
    coef->mcu_ctr = 0;
215
1.56M
  }
216
  /* Completed the iMCU row, advance counters for next one */
217
1.56M
  coef->iMCU_row_num++;
218
1.56M
  start_iMCU_row(cinfo);
219
1.56M
  return TRUE;
220
1.56M
}
Unexecuted instantiation: jccoefct-12.c:compress_data
221
222
223
#ifdef FULL_COEF_BUFFER_SUPPORTED
224
225
/*
226
 * Process some data in the first pass of a multi-pass case.
227
 * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
228
 * per call, ie, v_samp_factor block rows for each component in the image.
229
 * This amount of data is read from the source buffer, DCT'd and quantized,
230
 * and saved into the virtual arrays.  We also generate suitable dummy blocks
231
 * as needed at the right and lower edges.  (The dummy blocks are constructed
232
 * in the virtual arrays, which have been padded appropriately.)  This makes
233
 * it possible for subsequent passes not to worry about real vs. dummy blocks.
234
 *
235
 * We must also emit the data to the entropy encoder.  This is conveniently
236
 * done by calling compress_output() after we've loaded the current strip
237
 * of the virtual arrays.
238
 *
239
 * NB: input_buf contains a plane for each component in image.  All
240
 * components are DCT'd and loaded into the virtual arrays in this pass.
241
 * However, it may be that only a subset of the components are emitted to
242
 * the entropy encoder during this first pass; be careful about looking
243
 * at the scan-dependent variables (MCU dimensions, etc).
244
 */
245
246
METHODDEF(boolean)
247
compress_first_pass(j_compress_ptr cinfo, _JSAMPIMAGE input_buf)
248
1.88M
{
249
1.88M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
250
1.88M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
251
1.88M
  JDIMENSION blocks_across, MCUs_across, MCUindex;
252
1.88M
  int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
253
1.88M
  JCOEF lastDC;
254
1.88M
  jpeg_component_info *compptr;
255
1.88M
  JBLOCKARRAY buffer;
256
1.88M
  JBLOCKROW thisblockrow, lastblockrow;
257
258
6.29M
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
259
4.40M
       ci++, compptr++) {
260
    /* Align the virtual buffer for this component. */
261
4.40M
    buffer = (*cinfo->mem->access_virt_barray)
262
4.40M
      ((j_common_ptr)cinfo, coef->whole_image[ci],
263
4.40M
       coef->iMCU_row_num * compptr->v_samp_factor,
264
4.40M
       (JDIMENSION)compptr->v_samp_factor, TRUE);
265
    /* Count non-dummy DCT block rows in this iMCU row. */
266
4.40M
    if (coef->iMCU_row_num < last_iMCU_row)
267
4.39M
      block_rows = compptr->v_samp_factor;
268
12.9k
    else {
269
      /* NB: can't use last_row_height here, since may not be set! */
270
12.9k
      block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
271
12.9k
      if (block_rows == 0) block_rows = compptr->v_samp_factor;
272
12.9k
    }
273
4.40M
    blocks_across = compptr->width_in_blocks;
274
4.40M
    h_samp_factor = compptr->h_samp_factor;
275
    /* Count number of dummy blocks to be added at the right margin. */
276
4.40M
    ndummy = (int)(blocks_across % h_samp_factor);
277
4.40M
    if (ndummy > 0)
278
1.25M
      ndummy = h_samp_factor - ndummy;
279
    /* Perform DCT for all non-dummy blocks in this iMCU row.  Each call
280
     * on forward_DCT processes a complete horizontal row of DCT blocks.
281
     */
282
8.81M
    for (block_row = 0; block_row < block_rows; block_row++) {
283
4.40M
      thisblockrow = buffer[block_row];
284
4.40M
      (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
285
4.40M
                                    input_buf[ci], thisblockrow,
286
4.40M
                                    (JDIMENSION)(block_row * DCTSIZE),
287
4.40M
                                    (JDIMENSION)0, blocks_across);
288
4.40M
      if (ndummy > 0) {
289
        /* Create dummy blocks at the right edge of the image. */
290
1.25M
        thisblockrow += blocks_across; /* => first dummy block */
291
1.25M
        jzero_far((void *)thisblockrow, ndummy * sizeof(JBLOCK));
292
1.25M
        lastDC = thisblockrow[-1][0];
293
3.77M
        for (bi = 0; bi < ndummy; bi++) {
294
2.51M
          thisblockrow[bi][0] = lastDC;
295
2.51M
        }
296
1.25M
      }
297
4.40M
    }
298
    /* If at end of image, create dummy block rows as needed.
299
     * The tricky part here is that within each MCU, we want the DC values
300
     * of the dummy blocks to match the last real block's DC value.
301
     * This squeezes a few more bytes out of the resulting file...
302
     */
303
4.40M
    if (coef->iMCU_row_num == last_iMCU_row) {
304
12.9k
      blocks_across += ndummy;  /* include lower right corner */
305
12.9k
      MCUs_across = blocks_across / h_samp_factor;
306
12.9k
      for (block_row = block_rows; block_row < compptr->v_samp_factor;
307
12.9k
           block_row++) {
308
0
        thisblockrow = buffer[block_row];
309
0
        lastblockrow = buffer[block_row - 1];
310
0
        jzero_far((void *)thisblockrow,
311
0
                  (size_t)(blocks_across * sizeof(JBLOCK)));
312
0
        for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
313
0
          lastDC = lastblockrow[h_samp_factor - 1][0];
314
0
          for (bi = 0; bi < h_samp_factor; bi++) {
315
0
            thisblockrow[bi][0] = lastDC;
316
0
          }
317
0
          thisblockrow += h_samp_factor; /* advance to next MCU in row */
318
0
          lastblockrow += h_samp_factor;
319
0
        }
320
0
      }
321
12.9k
    }
322
4.40M
  }
323
  /* NB: compress_output will increment iMCU_row_num if successful.
324
   * A suspension return will result in redoing all the work above next time.
325
   */
326
327
  /* Emit data to the entropy encoder, sharing code with subsequent passes */
328
1.88M
  return compress_output(cinfo, input_buf);
329
1.88M
}
jccoefct-8.c:compress_first_pass
Line
Count
Source
248
1.88M
{
249
1.88M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
250
1.88M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
251
1.88M
  JDIMENSION blocks_across, MCUs_across, MCUindex;
252
1.88M
  int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
253
1.88M
  JCOEF lastDC;
254
1.88M
  jpeg_component_info *compptr;
255
1.88M
  JBLOCKARRAY buffer;
256
1.88M
  JBLOCKROW thisblockrow, lastblockrow;
257
258
6.29M
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
259
4.40M
       ci++, compptr++) {
260
    /* Align the virtual buffer for this component. */
261
4.40M
    buffer = (*cinfo->mem->access_virt_barray)
262
4.40M
      ((j_common_ptr)cinfo, coef->whole_image[ci],
263
4.40M
       coef->iMCU_row_num * compptr->v_samp_factor,
264
4.40M
       (JDIMENSION)compptr->v_samp_factor, TRUE);
265
    /* Count non-dummy DCT block rows in this iMCU row. */
266
4.40M
    if (coef->iMCU_row_num < last_iMCU_row)
267
4.39M
      block_rows = compptr->v_samp_factor;
268
12.9k
    else {
269
      /* NB: can't use last_row_height here, since may not be set! */
270
12.9k
      block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
271
12.9k
      if (block_rows == 0) block_rows = compptr->v_samp_factor;
272
12.9k
    }
273
4.40M
    blocks_across = compptr->width_in_blocks;
274
4.40M
    h_samp_factor = compptr->h_samp_factor;
275
    /* Count number of dummy blocks to be added at the right margin. */
276
4.40M
    ndummy = (int)(blocks_across % h_samp_factor);
277
4.40M
    if (ndummy > 0)
278
1.25M
      ndummy = h_samp_factor - ndummy;
279
    /* Perform DCT for all non-dummy blocks in this iMCU row.  Each call
280
     * on forward_DCT processes a complete horizontal row of DCT blocks.
281
     */
282
8.81M
    for (block_row = 0; block_row < block_rows; block_row++) {
283
4.40M
      thisblockrow = buffer[block_row];
284
4.40M
      (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
285
4.40M
                                    input_buf[ci], thisblockrow,
286
4.40M
                                    (JDIMENSION)(block_row * DCTSIZE),
287
4.40M
                                    (JDIMENSION)0, blocks_across);
288
4.40M
      if (ndummy > 0) {
289
        /* Create dummy blocks at the right edge of the image. */
290
1.25M
        thisblockrow += blocks_across; /* => first dummy block */
291
1.25M
        jzero_far((void *)thisblockrow, ndummy * sizeof(JBLOCK));
292
1.25M
        lastDC = thisblockrow[-1][0];
293
3.77M
        for (bi = 0; bi < ndummy; bi++) {
294
2.51M
          thisblockrow[bi][0] = lastDC;
295
2.51M
        }
296
1.25M
      }
297
4.40M
    }
298
    /* If at end of image, create dummy block rows as needed.
299
     * The tricky part here is that within each MCU, we want the DC values
300
     * of the dummy blocks to match the last real block's DC value.
301
     * This squeezes a few more bytes out of the resulting file...
302
     */
303
4.40M
    if (coef->iMCU_row_num == last_iMCU_row) {
304
12.9k
      blocks_across += ndummy;  /* include lower right corner */
305
12.9k
      MCUs_across = blocks_across / h_samp_factor;
306
12.9k
      for (block_row = block_rows; block_row < compptr->v_samp_factor;
307
12.9k
           block_row++) {
308
0
        thisblockrow = buffer[block_row];
309
0
        lastblockrow = buffer[block_row - 1];
310
0
        jzero_far((void *)thisblockrow,
311
0
                  (size_t)(blocks_across * sizeof(JBLOCK)));
312
0
        for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
313
0
          lastDC = lastblockrow[h_samp_factor - 1][0];
314
0
          for (bi = 0; bi < h_samp_factor; bi++) {
315
0
            thisblockrow[bi][0] = lastDC;
316
0
          }
317
0
          thisblockrow += h_samp_factor; /* advance to next MCU in row */
318
0
          lastblockrow += h_samp_factor;
319
0
        }
320
0
      }
321
12.9k
    }
322
4.40M
  }
323
  /* NB: compress_output will increment iMCU_row_num if successful.
324
   * A suspension return will result in redoing all the work above next time.
325
   */
326
327
  /* Emit data to the entropy encoder, sharing code with subsequent passes */
328
1.88M
  return compress_output(cinfo, input_buf);
329
1.88M
}
Unexecuted instantiation: jccoefct-12.c:compress_first_pass
330
331
332
/*
333
 * Process some data in subsequent passes of a multi-pass case.
334
 * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
335
 * per call, ie, v_samp_factor block rows for each component in the scan.
336
 * The data is obtained from the virtual arrays and fed to the entropy coder.
337
 * Returns TRUE if the iMCU row is completed, FALSE if suspended.
338
 *
339
 * NB: input_buf is ignored; it is likely to be a NULL pointer.
340
 */
341
342
METHODDEF(boolean)
343
compress_output(j_compress_ptr cinfo, _JSAMPIMAGE input_buf)
344
19.5M
{
345
19.5M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
346
19.5M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
347
19.5M
  int blkn, ci, xindex, yindex, yoffset;
348
19.5M
  JDIMENSION start_col;
349
19.5M
  JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
350
19.5M
  JBLOCKROW buffer_ptr;
351
19.5M
  jpeg_component_info *compptr;
352
353
  /* Align the virtual buffers for the components used in this scan.
354
   * NB: during first pass, this is safe only because the buffers will
355
   * already be aligned properly, so jmemmgr.c won't need to do any I/O.
356
   */
357
45.3M
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
358
25.8M
    compptr = cinfo->cur_comp_info[ci];
359
25.8M
    buffer[ci] = (*cinfo->mem->access_virt_barray)
360
25.8M
      ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],
361
25.8M
       coef->iMCU_row_num * compptr->v_samp_factor,
362
25.8M
       (JDIMENSION)compptr->v_samp_factor, FALSE);
363
25.8M
  }
364
365
  /* Loop to process one whole iMCU row */
366
39.0M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
367
19.5M
       yoffset++) {
368
49.9M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
369
30.3M
         MCU_col_num++) {
370
      /* Construct list of pointers to DCT blocks belonging to this MCU */
371
30.3M
      blkn = 0;                 /* index of current DCT block within MCU */
372
69.1M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
373
38.7M
        compptr = cinfo->cur_comp_info[ci];
374
38.7M
        start_col = MCU_col_num * compptr->MCU_width;
375
77.5M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
376
38.7M
          buffer_ptr = buffer[ci][yindex + yoffset] + start_col;
377
84.7M
          for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
378
45.9M
            coef->MCU_buffer[blkn++] = buffer_ptr++;
379
45.9M
          }
380
38.7M
        }
381
38.7M
      }
382
      /* Try to write the MCU. */
383
30.3M
      if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
384
        /* Suspension forced; update state counters and exit */
385
0
        coef->MCU_vert_offset = yoffset;
386
0
        coef->mcu_ctr = MCU_col_num;
387
0
        return FALSE;
388
0
      }
389
30.3M
    }
390
    /* Completed an MCU row, but perhaps not an iMCU row */
391
19.5M
    coef->mcu_ctr = 0;
392
19.5M
  }
393
  /* Completed the iMCU row, advance counters for next one */
394
19.5M
  coef->iMCU_row_num++;
395
19.5M
  start_iMCU_row(cinfo);
396
19.5M
  return TRUE;
397
19.5M
}
jccoefct-8.c:compress_output
Line
Count
Source
344
19.5M
{
345
19.5M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
346
19.5M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
347
19.5M
  int blkn, ci, xindex, yindex, yoffset;
348
19.5M
  JDIMENSION start_col;
349
19.5M
  JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
350
19.5M
  JBLOCKROW buffer_ptr;
351
19.5M
  jpeg_component_info *compptr;
352
353
  /* Align the virtual buffers for the components used in this scan.
354
   * NB: during first pass, this is safe only because the buffers will
355
   * already be aligned properly, so jmemmgr.c won't need to do any I/O.
356
   */
357
45.3M
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
358
25.8M
    compptr = cinfo->cur_comp_info[ci];
359
25.8M
    buffer[ci] = (*cinfo->mem->access_virt_barray)
360
25.8M
      ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],
361
25.8M
       coef->iMCU_row_num * compptr->v_samp_factor,
362
25.8M
       (JDIMENSION)compptr->v_samp_factor, FALSE);
363
25.8M
  }
364
365
  /* Loop to process one whole iMCU row */
366
39.0M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
367
19.5M
       yoffset++) {
368
49.9M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
369
30.3M
         MCU_col_num++) {
370
      /* Construct list of pointers to DCT blocks belonging to this MCU */
371
30.3M
      blkn = 0;                 /* index of current DCT block within MCU */
372
69.1M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
373
38.7M
        compptr = cinfo->cur_comp_info[ci];
374
38.7M
        start_col = MCU_col_num * compptr->MCU_width;
375
77.5M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
376
38.7M
          buffer_ptr = buffer[ci][yindex + yoffset] + start_col;
377
84.7M
          for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
378
45.9M
            coef->MCU_buffer[blkn++] = buffer_ptr++;
379
45.9M
          }
380
38.7M
        }
381
38.7M
      }
382
      /* Try to write the MCU. */
383
30.3M
      if (!(*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
384
        /* Suspension forced; update state counters and exit */
385
0
        coef->MCU_vert_offset = yoffset;
386
0
        coef->mcu_ctr = MCU_col_num;
387
0
        return FALSE;
388
0
      }
389
30.3M
    }
390
    /* Completed an MCU row, but perhaps not an iMCU row */
391
19.5M
    coef->mcu_ctr = 0;
392
19.5M
  }
393
  /* Completed the iMCU row, advance counters for next one */
394
19.5M
  coef->iMCU_row_num++;
395
19.5M
  start_iMCU_row(cinfo);
396
19.5M
  return TRUE;
397
19.5M
}
Unexecuted instantiation: jccoefct-12.c:compress_output
398
399
#endif /* FULL_COEF_BUFFER_SUPPORTED */
400
401
402
/*
403
 * Initialize coefficient buffer controller.
404
 */
405
406
GLOBAL(void)
407
_jinit_c_coef_controller(j_compress_ptr cinfo, boolean need_full_buffer)
408
10.8k
{
409
10.8k
  my_coef_ptr coef;
410
411
10.8k
  if (cinfo->data_precision != BITS_IN_JSAMPLE)
412
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
413
414
10.8k
  coef = (my_coef_ptr)
415
10.8k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
416
10.8k
                                sizeof(my_coef_controller));
417
10.8k
  memset(coef, 0, sizeof(my_coef_controller));
418
10.8k
  cinfo->coef = (struct jpeg_c_coef_controller *)coef;
419
10.8k
  coef->pub.start_pass = start_pass_coef;
420
421
  /* Create the coefficient buffer. */
422
10.8k
  if (need_full_buffer) {
423
5.53k
#ifdef FULL_COEF_BUFFER_SUPPORTED
424
    /* Allocate a full-image virtual array for each component, */
425
    /* padded to a multiple of samp_factor DCT blocks in each direction. */
426
5.53k
    int ci;
427
5.53k
    jpeg_component_info *compptr;
428
429
18.4k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
430
12.9k
         ci++, compptr++) {
431
12.9k
      coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
432
12.9k
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
433
12.9k
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
434
12.9k
                               (long)compptr->h_samp_factor),
435
12.9k
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
436
12.9k
                               (long)compptr->v_samp_factor),
437
12.9k
         (JDIMENSION)compptr->v_samp_factor);
438
12.9k
    }
439
#else
440
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
441
#endif
442
5.53k
  } else {
443
    /* We only need a single-MCU buffer. */
444
5.28k
    JBLOCKROW buffer;
445
5.28k
    int i;
446
447
5.28k
    buffer = (JBLOCKROW)
448
5.28k
      (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,
449
5.28k
                                  C_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));
450
58.1k
    for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
451
52.8k
      coef->MCU_buffer[i] = buffer + i;
452
52.8k
    }
453
5.28k
    coef->whole_image[0] = NULL; /* flag for no virtual arrays */
454
5.28k
  }
455
10.8k
}
jinit_c_coef_controller
Line
Count
Source
408
10.8k
{
409
10.8k
  my_coef_ptr coef;
410
411
10.8k
  if (cinfo->data_precision != BITS_IN_JSAMPLE)
412
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
413
414
10.8k
  coef = (my_coef_ptr)
415
10.8k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
416
10.8k
                                sizeof(my_coef_controller));
417
10.8k
  memset(coef, 0, sizeof(my_coef_controller));
418
10.8k
  cinfo->coef = (struct jpeg_c_coef_controller *)coef;
419
10.8k
  coef->pub.start_pass = start_pass_coef;
420
421
  /* Create the coefficient buffer. */
422
10.8k
  if (need_full_buffer) {
423
5.53k
#ifdef FULL_COEF_BUFFER_SUPPORTED
424
    /* Allocate a full-image virtual array for each component, */
425
    /* padded to a multiple of samp_factor DCT blocks in each direction. */
426
5.53k
    int ci;
427
5.53k
    jpeg_component_info *compptr;
428
429
18.4k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
430
12.9k
         ci++, compptr++) {
431
12.9k
      coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
432
12.9k
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
433
12.9k
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
434
12.9k
                               (long)compptr->h_samp_factor),
435
12.9k
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
436
12.9k
                               (long)compptr->v_samp_factor),
437
12.9k
         (JDIMENSION)compptr->v_samp_factor);
438
12.9k
    }
439
#else
440
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
441
#endif
442
5.53k
  } else {
443
    /* We only need a single-MCU buffer. */
444
5.28k
    JBLOCKROW buffer;
445
5.28k
    int i;
446
447
5.28k
    buffer = (JBLOCKROW)
448
5.28k
      (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,
449
5.28k
                                  C_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));
450
58.1k
    for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
451
52.8k
      coef->MCU_buffer[i] = buffer + i;
452
52.8k
    }
453
5.28k
    coef->whole_image[0] = NULL; /* flag for no virtual arrays */
454
5.28k
  }
455
10.8k
}
Unexecuted instantiation: j12init_c_coef_controller