Coverage Report

Created: 2026-07-30 07:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjpeg-turbo.3.1.x/src/jccoefct.c
Line
Count
Source
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
114M
{
75
114M
  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
114M
  if (cinfo->comps_in_scan > 1) {
82
28.1M
    coef->MCU_rows_per_iMCU_row = 1;
83
86.1M
  } else {
84
86.1M
    if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1))
85
85.3M
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
86
817k
    else
87
817k
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
88
86.1M
  }
89
90
114M
  coef->mcu_ctr = 0;
91
114M
  coef->MCU_vert_offset = 0;
92
114M
}
jccoefct-8.c:start_iMCU_row
Line
Count
Source
74
77.2M
{
75
77.2M
  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
77.2M
  if (cinfo->comps_in_scan > 1) {
82
17.6M
    coef->MCU_rows_per_iMCU_row = 1;
83
59.5M
  } else {
84
59.5M
    if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1))
85
59.0M
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
86
508k
    else
87
508k
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
88
59.5M
  }
89
90
77.2M
  coef->mcu_ctr = 0;
91
77.2M
  coef->MCU_vert_offset = 0;
92
77.2M
}
jccoefct-12.c:start_iMCU_row
Line
Count
Source
74
37.0M
{
75
37.0M
  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
37.0M
  if (cinfo->comps_in_scan > 1) {
82
10.4M
    coef->MCU_rows_per_iMCU_row = 1;
83
26.6M
  } else {
84
26.6M
    if (coef->iMCU_row_num < (cinfo->total_iMCU_rows - 1))
85
26.3M
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
86
309k
    else
87
309k
      coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
88
26.6M
  }
89
90
37.0M
  coef->mcu_ctr = 0;
91
37.0M
  coef->MCU_vert_offset = 0;
92
37.0M
}
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
542k
{
102
542k
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
103
104
542k
  coef->iMCU_row_num = 0;
105
542k
  start_iMCU_row(cinfo);
106
107
542k
  switch (pass_mode) {
108
49.3k
  case JBUF_PASS_THRU:
109
49.3k
    if (coef->whole_image[0] != NULL)
110
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
111
49.3k
    coef->pub._compress_data = compress_data;
112
49.3k
    break;
113
0
#ifdef FULL_COEF_BUFFER_SUPPORTED
114
61.8k
  case JBUF_SAVE_AND_PASS:
115
61.8k
    if (coef->whole_image[0] == NULL)
116
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
117
61.8k
    coef->pub._compress_data = compress_first_pass;
118
61.8k
    break;
119
431k
  case JBUF_CRANK_DEST:
120
431k
    if (coef->whole_image[0] == NULL)
121
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
122
431k
    coef->pub._compress_data = compress_output;
123
431k
    break;
124
0
#endif
125
0
  default:
126
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
127
0
    break;
128
542k
  }
129
542k
}
jccoefct-8.c:start_pass_coef
Line
Count
Source
101
341k
{
102
341k
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
103
104
341k
  coef->iMCU_row_num = 0;
105
341k
  start_iMCU_row(cinfo);
106
107
341k
  switch (pass_mode) {
108
44.2k
  case JBUF_PASS_THRU:
109
44.2k
    if (coef->whole_image[0] != NULL)
110
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
111
44.2k
    coef->pub._compress_data = compress_data;
112
44.2k
    break;
113
0
#ifdef FULL_COEF_BUFFER_SUPPORTED
114
30.4k
  case JBUF_SAVE_AND_PASS:
115
30.4k
    if (coef->whole_image[0] == NULL)
116
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
117
30.4k
    coef->pub._compress_data = compress_first_pass;
118
30.4k
    break;
119
267k
  case JBUF_CRANK_DEST:
120
267k
    if (coef->whole_image[0] == NULL)
121
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
122
267k
    coef->pub._compress_data = compress_output;
123
267k
    break;
124
0
#endif
125
0
  default:
126
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
127
0
    break;
128
341k
  }
129
341k
}
jccoefct-12.c:start_pass_coef
Line
Count
Source
101
200k
{
102
200k
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
103
104
200k
  coef->iMCU_row_num = 0;
105
200k
  start_iMCU_row(cinfo);
106
107
200k
  switch (pass_mode) {
108
5.08k
  case JBUF_PASS_THRU:
109
5.08k
    if (coef->whole_image[0] != NULL)
110
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
111
5.08k
    coef->pub._compress_data = compress_data;
112
5.08k
    break;
113
0
#ifdef FULL_COEF_BUFFER_SUPPORTED
114
31.3k
  case JBUF_SAVE_AND_PASS:
115
31.3k
    if (coef->whole_image[0] == NULL)
116
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
117
31.3k
    coef->pub._compress_data = compress_first_pass;
118
31.3k
    break;
119
164k
  case JBUF_CRANK_DEST:
120
164k
    if (coef->whole_image[0] == NULL)
121
0
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
122
164k
    coef->pub._compress_data = compress_output;
123
164k
    break;
124
0
#endif
125
0
  default:
126
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
127
0
    break;
128
200k
  }
129
200k
}
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
8.10M
{
145
8.10M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
146
8.10M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
147
8.10M
  JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
148
8.10M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
149
8.10M
  int blkn, bi, ci, yindex, yoffset, blockcnt;
150
8.10M
  JDIMENSION ypos, xpos;
151
8.10M
  jpeg_component_info *compptr;
152
153
  /* Loop to write as much as one whole iMCU row */
154
16.2M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
155
8.10M
       yoffset++) {
156
26.8M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;
157
18.7M
         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
18.7M
      blkn = 0;
168
58.5M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
169
39.8M
        compptr = cinfo->cur_comp_info[ci];
170
39.8M
        blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width :
171
39.8M
                                                  compptr->last_col_width;
172
39.8M
        xpos = MCU_col_num * compptr->MCU_sample_width;
173
39.8M
        ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
174
84.8M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
175
45.0M
          if (coef->iMCU_row_num < last_iMCU_row ||
176
43.3M
              yoffset + yindex < compptr->last_row_height) {
177
43.3M
            (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
178
43.3M
                                          input_buf[compptr->component_index],
179
43.3M
                                          coef->MCU_buffer[blkn],
180
43.3M
                                          ypos, xpos, (JDIMENSION)blockcnt);
181
43.3M
            if (blockcnt < compptr->MCU_width) {
182
              /* Create some dummy blocks at the right edge of the image. */
183
4.86M
              jzero_far((void *)coef->MCU_buffer[blkn + blockcnt],
184
4.86M
                        (compptr->MCU_width - blockcnt) * sizeof(JBLOCK));
185
10.1M
              for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
186
5.33M
                coef->MCU_buffer[blkn + bi][0][0] =
187
5.33M
                  coef->MCU_buffer[blkn + bi - 1][0][0];
188
5.33M
              }
189
4.86M
            }
190
43.3M
          } else {
191
            /* Create a row of dummy blocks at the bottom of the image. */
192
1.66M
            jzero_far((void *)coef->MCU_buffer[blkn],
193
1.66M
                      compptr->MCU_width * sizeof(JBLOCK));
194
4.92M
            for (bi = 0; bi < compptr->MCU_width; bi++) {
195
3.25M
              coef->MCU_buffer[blkn + bi][0][0] =
196
3.25M
                coef->MCU_buffer[blkn - 1][0][0];
197
3.25M
            }
198
1.66M
          }
199
45.0M
          blkn += compptr->MCU_width;
200
45.0M
          ypos += DCTSIZE;
201
45.0M
        }
202
39.8M
      }
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
18.7M
      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
18.7M
    }
213
    /* Completed an MCU row, but perhaps not an iMCU row */
214
8.10M
    coef->mcu_ctr = 0;
215
8.10M
  }
216
  /* Completed the iMCU row, advance counters for next one */
217
8.10M
  coef->iMCU_row_num++;
218
8.10M
  start_iMCU_row(cinfo);
219
8.10M
  return TRUE;
220
8.10M
}
jccoefct-8.c:compress_data
Line
Count
Source
144
7.40M
{
145
7.40M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
146
7.40M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
147
7.40M
  JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
148
7.40M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
149
7.40M
  int blkn, bi, ci, yindex, yoffset, blockcnt;
150
7.40M
  JDIMENSION ypos, xpos;
151
7.40M
  jpeg_component_info *compptr;
152
153
  /* Loop to write as much as one whole iMCU row */
154
14.8M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
155
7.40M
       yoffset++) {
156
24.8M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;
157
17.4M
         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
17.4M
      blkn = 0;
168
53.2M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
169
35.8M
        compptr = cinfo->cur_comp_info[ci];
170
35.8M
        blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width :
171
35.8M
                                                  compptr->last_col_width;
172
35.8M
        xpos = MCU_col_num * compptr->MCU_sample_width;
173
35.8M
        ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
174
75.4M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
175
39.6M
          if (coef->iMCU_row_num < last_iMCU_row ||
176
38.4M
              yoffset + yindex < compptr->last_row_height) {
177
38.4M
            (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
178
38.4M
                                          input_buf[compptr->component_index],
179
38.4M
                                          coef->MCU_buffer[blkn],
180
38.4M
                                          ypos, xpos, (JDIMENSION)blockcnt);
181
38.4M
            if (blockcnt < compptr->MCU_width) {
182
              /* Create some dummy blocks at the right edge of the image. */
183
3.49M
              jzero_far((void *)coef->MCU_buffer[blkn + blockcnt],
184
3.49M
                        (compptr->MCU_width - blockcnt) * sizeof(JBLOCK));
185
7.45M
              for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
186
3.96M
                coef->MCU_buffer[blkn + bi][0][0] =
187
3.96M
                  coef->MCU_buffer[blkn + bi - 1][0][0];
188
3.96M
              }
189
3.49M
            }
190
38.4M
          } else {
191
            /* Create a row of dummy blocks at the bottom of the image. */
192
1.17M
            jzero_far((void *)coef->MCU_buffer[blkn],
193
1.17M
                      compptr->MCU_width * sizeof(JBLOCK));
194
3.44M
            for (bi = 0; bi < compptr->MCU_width; bi++) {
195
2.26M
              coef->MCU_buffer[blkn + bi][0][0] =
196
2.26M
                coef->MCU_buffer[blkn - 1][0][0];
197
2.26M
            }
198
1.17M
          }
199
39.6M
          blkn += compptr->MCU_width;
200
39.6M
          ypos += DCTSIZE;
201
39.6M
        }
202
35.8M
      }
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
17.4M
      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
17.4M
    }
213
    /* Completed an MCU row, but perhaps not an iMCU row */
214
7.40M
    coef->mcu_ctr = 0;
215
7.40M
  }
216
  /* Completed the iMCU row, advance counters for next one */
217
7.40M
  coef->iMCU_row_num++;
218
7.40M
  start_iMCU_row(cinfo);
219
7.40M
  return TRUE;
220
7.40M
}
jccoefct-12.c:compress_data
Line
Count
Source
144
692k
{
145
692k
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
146
692k
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
147
692k
  JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
148
692k
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
149
692k
  int blkn, bi, ci, yindex, yoffset, blockcnt;
150
692k
  JDIMENSION ypos, xpos;
151
692k
  jpeg_component_info *compptr;
152
153
  /* Loop to write as much as one whole iMCU row */
154
1.38M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
155
692k
       yoffset++) {
156
2.03M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;
157
1.33M
         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
1.33M
      blkn = 0;
168
5.35M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
169
4.01M
        compptr = cinfo->cur_comp_info[ci];
170
4.01M
        blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width :
171
4.01M
                                                  compptr->last_col_width;
172
4.01M
        xpos = MCU_col_num * compptr->MCU_sample_width;
173
4.01M
        ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */
174
9.37M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
175
5.35M
          if (coef->iMCU_row_num < last_iMCU_row ||
176
4.86M
              yoffset + yindex < compptr->last_row_height) {
177
4.86M
            (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
178
4.86M
                                          input_buf[compptr->component_index],
179
4.86M
                                          coef->MCU_buffer[blkn],
180
4.86M
                                          ypos, xpos, (JDIMENSION)blockcnt);
181
4.86M
            if (blockcnt < compptr->MCU_width) {
182
              /* Create some dummy blocks at the right edge of the image. */
183
1.36M
              jzero_far((void *)coef->MCU_buffer[blkn + blockcnt],
184
1.36M
                        (compptr->MCU_width - blockcnt) * sizeof(JBLOCK));
185
2.73M
              for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
186
1.36M
                coef->MCU_buffer[blkn + bi][0][0] =
187
1.36M
                  coef->MCU_buffer[blkn + bi - 1][0][0];
188
1.36M
              }
189
1.36M
            }
190
4.86M
          } else {
191
            /* Create a row of dummy blocks at the bottom of the image. */
192
493k
            jzero_far((void *)coef->MCU_buffer[blkn],
193
493k
                      compptr->MCU_width * sizeof(JBLOCK));
194
1.48M
            for (bi = 0; bi < compptr->MCU_width; bi++) {
195
986k
              coef->MCU_buffer[blkn + bi][0][0] =
196
986k
                coef->MCU_buffer[blkn - 1][0][0];
197
986k
            }
198
493k
          }
199
5.35M
          blkn += compptr->MCU_width;
200
5.35M
          ypos += DCTSIZE;
201
5.35M
        }
202
4.01M
      }
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
1.33M
      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
1.33M
    }
213
    /* Completed an MCU row, but perhaps not an iMCU row */
214
692k
    coef->mcu_ctr = 0;
215
692k
  }
216
  /* Completed the iMCU row, advance counters for next one */
217
692k
  coef->iMCU_row_num++;
218
692k
  start_iMCU_row(cinfo);
219
692k
  return TRUE;
220
692k
}
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
14.1M
{
249
14.1M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
250
14.1M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
251
14.1M
  JDIMENSION blocks_across, MCUs_across, MCUindex;
252
14.1M
  int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
253
14.1M
  JCOEF lastDC;
254
14.1M
  jpeg_component_info *compptr;
255
14.1M
  JBLOCKARRAY buffer;
256
14.1M
  JBLOCKROW thisblockrow, lastblockrow;
257
258
50.1M
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
259
36.0M
       ci++, compptr++) {
260
    /* Align the virtual buffer for this component. */
261
36.0M
    buffer = (*cinfo->mem->access_virt_barray)
262
36.0M
      ((j_common_ptr)cinfo, coef->whole_image[ci],
263
36.0M
       coef->iMCU_row_num * compptr->v_samp_factor,
264
36.0M
       (JDIMENSION)compptr->v_samp_factor, TRUE);
265
    /* Count non-dummy DCT block rows in this iMCU row. */
266
36.0M
    if (coef->iMCU_row_num < last_iMCU_row)
267
35.8M
      block_rows = compptr->v_samp_factor;
268
165k
    else {
269
      /* NB: can't use last_row_height here, since may not be set! */
270
165k
      block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
271
165k
      if (block_rows == 0) block_rows = compptr->v_samp_factor;
272
165k
    }
273
36.0M
    blocks_across = compptr->width_in_blocks;
274
36.0M
    h_samp_factor = compptr->h_samp_factor;
275
    /* Count number of dummy blocks to be added at the right margin. */
276
36.0M
    ndummy = (int)(blocks_across % h_samp_factor);
277
36.0M
    if (ndummy > 0)
278
7.52M
      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
74.5M
    for (block_row = 0; block_row < block_rows; block_row++) {
283
38.4M
      thisblockrow = buffer[block_row];
284
38.4M
      (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
285
38.4M
                                    input_buf[ci], thisblockrow,
286
38.4M
                                    (JDIMENSION)(block_row * DCTSIZE),
287
38.4M
                                    (JDIMENSION)0, blocks_across);
288
38.4M
      if (ndummy > 0) {
289
        /* Create dummy blocks at the right edge of the image. */
290
7.52M
        thisblockrow += blocks_across; /* => first dummy block */
291
7.52M
        jzero_far((void *)thisblockrow, ndummy * sizeof(JBLOCK));
292
7.52M
        lastDC = thisblockrow[-1][0];
293
22.5M
        for (bi = 0; bi < ndummy; bi++) {
294
15.0M
          thisblockrow[bi][0] = lastDC;
295
15.0M
        }
296
7.52M
      }
297
38.4M
    }
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
36.0M
    if (coef->iMCU_row_num == last_iMCU_row) {
304
165k
      blocks_across += ndummy;  /* include lower right corner */
305
165k
      MCUs_across = blocks_across / h_samp_factor;
306
183k
      for (block_row = block_rows; block_row < compptr->v_samp_factor;
307
165k
           block_row++) {
308
17.6k
        thisblockrow = buffer[block_row];
309
17.6k
        lastblockrow = buffer[block_row - 1];
310
17.6k
        jzero_far((void *)thisblockrow,
311
17.6k
                  (size_t)(blocks_across * sizeof(JBLOCK)));
312
4.48M
        for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
313
4.47M
          lastDC = lastblockrow[h_samp_factor - 1][0];
314
8.94M
          for (bi = 0; bi < h_samp_factor; bi++) {
315
4.47M
            thisblockrow[bi][0] = lastDC;
316
4.47M
          }
317
4.47M
          thisblockrow += h_samp_factor; /* advance to next MCU in row */
318
4.47M
          lastblockrow += h_samp_factor;
319
4.47M
        }
320
17.6k
      }
321
165k
    }
322
36.0M
  }
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
14.1M
  return compress_output(cinfo, input_buf);
329
14.1M
}
jccoefct-8.c:compress_first_pass
Line
Count
Source
248
6.78M
{
249
6.78M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
250
6.78M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
251
6.78M
  JDIMENSION blocks_across, MCUs_across, MCUindex;
252
6.78M
  int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
253
6.78M
  JCOEF lastDC;
254
6.78M
  jpeg_component_info *compptr;
255
6.78M
  JBLOCKARRAY buffer;
256
6.78M
  JBLOCKROW thisblockrow, lastblockrow;
257
258
25.0M
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
259
18.2M
       ci++, compptr++) {
260
    /* Align the virtual buffer for this component. */
261
18.2M
    buffer = (*cinfo->mem->access_virt_barray)
262
18.2M
      ((j_common_ptr)cinfo, coef->whole_image[ci],
263
18.2M
       coef->iMCU_row_num * compptr->v_samp_factor,
264
18.2M
       (JDIMENSION)compptr->v_samp_factor, TRUE);
265
    /* Count non-dummy DCT block rows in this iMCU row. */
266
18.2M
    if (coef->iMCU_row_num < last_iMCU_row)
267
18.2M
      block_rows = compptr->v_samp_factor;
268
88.0k
    else {
269
      /* NB: can't use last_row_height here, since may not be set! */
270
88.0k
      block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
271
88.0k
      if (block_rows == 0) block_rows = compptr->v_samp_factor;
272
88.0k
    }
273
18.2M
    blocks_across = compptr->width_in_blocks;
274
18.2M
    h_samp_factor = compptr->h_samp_factor;
275
    /* Count number of dummy blocks to be added at the right margin. */
276
18.2M
    ndummy = (int)(blocks_across % h_samp_factor);
277
18.2M
    if (ndummy > 0)
278
4.77M
      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
37.6M
    for (block_row = 0; block_row < block_rows; block_row++) {
283
19.3M
      thisblockrow = buffer[block_row];
284
19.3M
      (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
285
19.3M
                                    input_buf[ci], thisblockrow,
286
19.3M
                                    (JDIMENSION)(block_row * DCTSIZE),
287
19.3M
                                    (JDIMENSION)0, blocks_across);
288
19.3M
      if (ndummy > 0) {
289
        /* Create dummy blocks at the right edge of the image. */
290
4.77M
        thisblockrow += blocks_across; /* => first dummy block */
291
4.77M
        jzero_far((void *)thisblockrow, ndummy * sizeof(JBLOCK));
292
4.77M
        lastDC = thisblockrow[-1][0];
293
14.3M
        for (bi = 0; bi < ndummy; bi++) {
294
9.53M
          thisblockrow[bi][0] = lastDC;
295
9.53M
        }
296
4.77M
      }
297
19.3M
    }
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
18.2M
    if (coef->iMCU_row_num == last_iMCU_row) {
304
88.0k
      blocks_across += ndummy;  /* include lower right corner */
305
88.0k
      MCUs_across = blocks_across / h_samp_factor;
306
97.5k
      for (block_row = block_rows; block_row < compptr->v_samp_factor;
307
88.0k
           block_row++) {
308
9.49k
        thisblockrow = buffer[block_row];
309
9.49k
        lastblockrow = buffer[block_row - 1];
310
9.49k
        jzero_far((void *)thisblockrow,
311
9.49k
                  (size_t)(blocks_across * sizeof(JBLOCK)));
312
2.51M
        for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
313
2.50M
          lastDC = lastblockrow[h_samp_factor - 1][0];
314
5.00M
          for (bi = 0; bi < h_samp_factor; bi++) {
315
2.50M
            thisblockrow[bi][0] = lastDC;
316
2.50M
          }
317
2.50M
          thisblockrow += h_samp_factor; /* advance to next MCU in row */
318
2.50M
          lastblockrow += h_samp_factor;
319
2.50M
        }
320
9.49k
      }
321
88.0k
    }
322
18.2M
  }
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
6.78M
  return compress_output(cinfo, input_buf);
329
6.78M
}
jccoefct-12.c:compress_first_pass
Line
Count
Source
248
7.36M
{
249
7.36M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
250
7.36M
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
251
7.36M
  JDIMENSION blocks_across, MCUs_across, MCUindex;
252
7.36M
  int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
253
7.36M
  JCOEF lastDC;
254
7.36M
  jpeg_component_info *compptr;
255
7.36M
  JBLOCKARRAY buffer;
256
7.36M
  JBLOCKROW thisblockrow, lastblockrow;
257
258
25.0M
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
259
17.7M
       ci++, compptr++) {
260
    /* Align the virtual buffer for this component. */
261
17.7M
    buffer = (*cinfo->mem->access_virt_barray)
262
17.7M
      ((j_common_ptr)cinfo, coef->whole_image[ci],
263
17.7M
       coef->iMCU_row_num * compptr->v_samp_factor,
264
17.7M
       (JDIMENSION)compptr->v_samp_factor, TRUE);
265
    /* Count non-dummy DCT block rows in this iMCU row. */
266
17.7M
    if (coef->iMCU_row_num < last_iMCU_row)
267
17.6M
      block_rows = compptr->v_samp_factor;
268
77.5k
    else {
269
      /* NB: can't use last_row_height here, since may not be set! */
270
77.5k
      block_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
271
77.5k
      if (block_rows == 0) block_rows = compptr->v_samp_factor;
272
77.5k
    }
273
17.7M
    blocks_across = compptr->width_in_blocks;
274
17.7M
    h_samp_factor = compptr->h_samp_factor;
275
    /* Count number of dummy blocks to be added at the right margin. */
276
17.7M
    ndummy = (int)(blocks_across % h_samp_factor);
277
17.7M
    if (ndummy > 0)
278
2.74M
      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
36.8M
    for (block_row = 0; block_row < block_rows; block_row++) {
283
19.0M
      thisblockrow = buffer[block_row];
284
19.0M
      (*cinfo->fdct->_forward_DCT) (cinfo, compptr,
285
19.0M
                                    input_buf[ci], thisblockrow,
286
19.0M
                                    (JDIMENSION)(block_row * DCTSIZE),
287
19.0M
                                    (JDIMENSION)0, blocks_across);
288
19.0M
      if (ndummy > 0) {
289
        /* Create dummy blocks at the right edge of the image. */
290
2.74M
        thisblockrow += blocks_across; /* => first dummy block */
291
2.74M
        jzero_far((void *)thisblockrow, ndummy * sizeof(JBLOCK));
292
2.74M
        lastDC = thisblockrow[-1][0];
293
8.22M
        for (bi = 0; bi < ndummy; bi++) {
294
5.48M
          thisblockrow[bi][0] = lastDC;
295
5.48M
        }
296
2.74M
      }
297
19.0M
    }
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
17.7M
    if (coef->iMCU_row_num == last_iMCU_row) {
304
77.5k
      blocks_across += ndummy;  /* include lower right corner */
305
77.5k
      MCUs_across = blocks_across / h_samp_factor;
306
85.7k
      for (block_row = block_rows; block_row < compptr->v_samp_factor;
307
77.5k
           block_row++) {
308
8.14k
        thisblockrow = buffer[block_row];
309
8.14k
        lastblockrow = buffer[block_row - 1];
310
8.14k
        jzero_far((void *)thisblockrow,
311
8.14k
                  (size_t)(blocks_across * sizeof(JBLOCK)));
312
1.97M
        for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
313
1.96M
          lastDC = lastblockrow[h_samp_factor - 1][0];
314
3.93M
          for (bi = 0; bi < h_samp_factor; bi++) {
315
1.96M
            thisblockrow[bi][0] = lastDC;
316
1.96M
          }
317
1.96M
          thisblockrow += h_samp_factor; /* advance to next MCU in row */
318
1.96M
          lastblockrow += h_samp_factor;
319
1.96M
        }
320
8.14k
      }
321
77.5k
    }
322
17.7M
  }
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
7.36M
  return compress_output(cinfo, input_buf);
329
7.36M
}
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
105M
{
345
105M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
346
105M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
347
105M
  int blkn, ci, xindex, yindex, yoffset;
348
105M
  JDIMENSION start_col;
349
105M
  JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
350
105M
  JBLOCKROW buffer_ptr;
351
105M
  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
259M
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
358
154M
    compptr = cinfo->cur_comp_info[ci];
359
154M
    buffer[ci] = (*cinfo->mem->access_virt_barray)
360
154M
      ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],
361
154M
       coef->iMCU_row_num * compptr->v_samp_factor,
362
154M
       (JDIMENSION)compptr->v_samp_factor, FALSE);
363
154M
  }
364
365
  /* Loop to process one whole iMCU row */
366
216M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
367
111M
       yoffset++) {
368
334M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
369
223M
         MCU_col_num++) {
370
      /* Construct list of pointers to DCT blocks belonging to this MCU */
371
223M
      blkn = 0;                 /* index of current DCT block within MCU */
372
535M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
373
312M
        compptr = cinfo->cur_comp_info[ci];
374
312M
        start_col = MCU_col_num * compptr->MCU_width;
375
642M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
376
329M
          buffer_ptr = buffer[ci][yindex + yoffset] + start_col;
377
705M
          for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
378
375M
            coef->MCU_buffer[blkn++] = buffer_ptr++;
379
375M
          }
380
329M
        }
381
312M
      }
382
      /* Try to write the MCU. */
383
223M
      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
223M
    }
390
    /* Completed an MCU row, but perhaps not an iMCU row */
391
111M
    coef->mcu_ctr = 0;
392
111M
  }
393
  /* Completed the iMCU row, advance counters for next one */
394
105M
  coef->iMCU_row_num++;
395
105M
  start_iMCU_row(cinfo);
396
105M
  return TRUE;
397
105M
}
jccoefct-8.c:compress_output
Line
Count
Source
344
69.4M
{
345
69.4M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
346
69.4M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
347
69.4M
  int blkn, ci, xindex, yindex, yoffset;
348
69.4M
  JDIMENSION start_col;
349
69.4M
  JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
350
69.4M
  JBLOCKROW buffer_ptr;
351
69.4M
  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
166M
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
358
97.4M
    compptr = cinfo->cur_comp_info[ci];
359
97.4M
    buffer[ci] = (*cinfo->mem->access_virt_barray)
360
97.4M
      ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],
361
97.4M
       coef->iMCU_row_num * compptr->v_samp_factor,
362
97.4M
       (JDIMENSION)compptr->v_samp_factor, FALSE);
363
97.4M
  }
364
365
  /* Loop to process one whole iMCU row */
366
138M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
367
69.4M
       yoffset++) {
368
201M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
369
131M
         MCU_col_num++) {
370
      /* Construct list of pointers to DCT blocks belonging to this MCU */
371
131M
      blkn = 0;                 /* index of current DCT block within MCU */
372
313M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
373
181M
        compptr = cinfo->cur_comp_info[ci];
374
181M
        start_col = MCU_col_num * compptr->MCU_width;
375
371M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
376
190M
          buffer_ptr = buffer[ci][yindex + yoffset] + start_col;
377
411M
          for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
378
221M
            coef->MCU_buffer[blkn++] = buffer_ptr++;
379
221M
          }
380
190M
        }
381
181M
      }
382
      /* Try to write the MCU. */
383
131M
      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
131M
    }
390
    /* Completed an MCU row, but perhaps not an iMCU row */
391
69.4M
    coef->mcu_ctr = 0;
392
69.4M
  }
393
  /* Completed the iMCU row, advance counters for next one */
394
69.4M
  coef->iMCU_row_num++;
395
69.4M
  start_iMCU_row(cinfo);
396
69.4M
  return TRUE;
397
69.4M
}
jccoefct-12.c:compress_output
Line
Count
Source
344
36.1M
{
345
36.1M
  my_coef_ptr coef = (my_coef_ptr)cinfo->coef;
346
36.1M
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
347
36.1M
  int blkn, ci, xindex, yindex, yoffset;
348
36.1M
  JDIMENSION start_col;
349
36.1M
  JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
350
36.1M
  JBLOCKROW buffer_ptr;
351
36.1M
  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
93.0M
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
358
56.8M
    compptr = cinfo->cur_comp_info[ci];
359
56.8M
    buffer[ci] = (*cinfo->mem->access_virt_barray)
360
56.8M
      ((j_common_ptr)cinfo, coef->whole_image[compptr->component_index],
361
56.8M
       coef->iMCU_row_num * compptr->v_samp_factor,
362
56.8M
       (JDIMENSION)compptr->v_samp_factor, FALSE);
363
56.8M
  }
364
365
  /* Loop to process one whole iMCU row */
366
77.8M
  for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
367
41.6M
       yoffset++) {
368
133M
    for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
369
91.3M
         MCU_col_num++) {
370
      /* Construct list of pointers to DCT blocks belonging to this MCU */
371
91.3M
      blkn = 0;                 /* index of current DCT block within MCU */
372
222M
      for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
373
131M
        compptr = cinfo->cur_comp_info[ci];
374
131M
        start_col = MCU_col_num * compptr->MCU_width;
375
270M
        for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
376
139M
          buffer_ptr = buffer[ci][yindex + yoffset] + start_col;
377
293M
          for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
378
154M
            coef->MCU_buffer[blkn++] = buffer_ptr++;
379
154M
          }
380
139M
        }
381
131M
      }
382
      /* Try to write the MCU. */
383
91.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
91.3M
    }
390
    /* Completed an MCU row, but perhaps not an iMCU row */
391
41.6M
    coef->mcu_ctr = 0;
392
41.6M
  }
393
  /* Completed the iMCU row, advance counters for next one */
394
36.1M
  coef->iMCU_row_num++;
395
36.1M
  start_iMCU_row(cinfo);
396
36.1M
  return TRUE;
397
36.1M
}
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
156k
{
409
156k
  my_coef_ptr coef;
410
411
156k
  if (cinfo->data_precision != BITS_IN_JSAMPLE)
412
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
413
414
156k
  coef = (my_coef_ptr)
415
156k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
416
156k
                                sizeof(my_coef_controller));
417
156k
  memset(coef, 0, sizeof(my_coef_controller));
418
156k
  cinfo->coef = (struct jpeg_c_coef_controller *)coef;
419
156k
  coef->pub.start_pass = start_pass_coef;
420
421
  /* Create the coefficient buffer. */
422
156k
  if (need_full_buffer) {
423
88.9k
#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
88.9k
    int ci;
427
88.9k
    jpeg_component_info *compptr;
428
429
327k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
430
238k
         ci++, compptr++) {
431
238k
      coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
432
238k
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
433
238k
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
434
238k
                               (long)compptr->h_samp_factor),
435
238k
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
436
238k
                               (long)compptr->v_samp_factor),
437
238k
         (JDIMENSION)compptr->v_samp_factor);
438
238k
    }
439
#else
440
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
441
#endif
442
88.9k
  } else {
443
    /* We only need a single-MCU buffer. */
444
67.0k
    JBLOCKROW buffer;
445
67.0k
    int i;
446
447
67.0k
    buffer = (JBLOCKROW)
448
67.0k
      (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,
449
67.0k
                                  C_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));
450
737k
    for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
451
670k
      coef->MCU_buffer[i] = buffer + i;
452
670k
    }
453
    coef->whole_image[0] = NULL; /* flag for no virtual arrays */
454
67.0k
  }
455
156k
}
jinit_c_coef_controller
Line
Count
Source
408
105k
{
409
105k
  my_coef_ptr coef;
410
411
105k
  if (cinfo->data_precision != BITS_IN_JSAMPLE)
412
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
413
414
105k
  coef = (my_coef_ptr)
415
105k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
416
105k
                                sizeof(my_coef_controller));
417
105k
  memset(coef, 0, sizeof(my_coef_controller));
418
105k
  cinfo->coef = (struct jpeg_c_coef_controller *)coef;
419
105k
  coef->pub.start_pass = start_pass_coef;
420
421
  /* Create the coefficient buffer. */
422
105k
  if (need_full_buffer) {
423
45.3k
#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
45.3k
    int ci;
427
45.3k
    jpeg_component_info *compptr;
428
429
174k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
430
129k
         ci++, compptr++) {
431
129k
      coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
432
129k
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
433
129k
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
434
129k
                               (long)compptr->h_samp_factor),
435
129k
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
436
129k
                               (long)compptr->v_samp_factor),
437
129k
         (JDIMENSION)compptr->v_samp_factor);
438
129k
    }
439
#else
440
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
441
#endif
442
59.9k
  } else {
443
    /* We only need a single-MCU buffer. */
444
59.9k
    JBLOCKROW buffer;
445
59.9k
    int i;
446
447
59.9k
    buffer = (JBLOCKROW)
448
59.9k
      (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,
449
59.9k
                                  C_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));
450
659k
    for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
451
599k
      coef->MCU_buffer[i] = buffer + i;
452
599k
    }
453
    coef->whole_image[0] = NULL; /* flag for no virtual arrays */
454
59.9k
  }
455
105k
}
j12init_c_coef_controller
Line
Count
Source
408
50.7k
{
409
50.7k
  my_coef_ptr coef;
410
411
50.7k
  if (cinfo->data_precision != BITS_IN_JSAMPLE)
412
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
413
414
50.7k
  coef = (my_coef_ptr)
415
50.7k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
416
50.7k
                                sizeof(my_coef_controller));
417
50.7k
  memset(coef, 0, sizeof(my_coef_controller));
418
50.7k
  cinfo->coef = (struct jpeg_c_coef_controller *)coef;
419
50.7k
  coef->pub.start_pass = start_pass_coef;
420
421
  /* Create the coefficient buffer. */
422
50.7k
  if (need_full_buffer) {
423
43.5k
#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
43.5k
    int ci;
427
43.5k
    jpeg_component_info *compptr;
428
429
152k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
430
108k
         ci++, compptr++) {
431
108k
      coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
432
108k
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
433
108k
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
434
108k
                               (long)compptr->h_samp_factor),
435
108k
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
436
108k
                               (long)compptr->v_samp_factor),
437
108k
         (JDIMENSION)compptr->v_samp_factor);
438
108k
    }
439
#else
440
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
441
#endif
442
43.5k
  } else {
443
    /* We only need a single-MCU buffer. */
444
7.17k
    JBLOCKROW buffer;
445
7.17k
    int i;
446
447
7.17k
    buffer = (JBLOCKROW)
448
7.17k
      (*cinfo->mem->alloc_large) ((j_common_ptr)cinfo, JPOOL_IMAGE,
449
7.17k
                                  C_MAX_BLOCKS_IN_MCU * sizeof(JBLOCK));
450
78.8k
    for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
451
71.7k
      coef->MCU_buffer[i] = buffer + i;
452
71.7k
    }
453
    coef->whole_image[0] = NULL; /* flag for no virtual arrays */
454
7.17k
  }
455
50.7k
}