Coverage Report

Created: 2025-06-16 07:00

/src/libjpeg-turbo/src/jdmainct.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * jdmainct.c
3
 *
4
 * This file was part of the Independent JPEG Group's software:
5
 * Copyright (C) 1994-1996, Thomas G. Lane.
6
 * libjpeg-turbo Modifications:
7
 * Copyright (C) 2010, 2016, 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 main buffer controller for decompression.
12
 * The main buffer lies between the JPEG decompressor proper and the
13
 * post-processor; it holds downsampled data in the JPEG colorspace.
14
 *
15
 * Note that this code is bypassed in raw-data mode, since the application
16
 * supplies the equivalent of the main buffer in that case.
17
 */
18
19
#include "jinclude.h"
20
#include "jdmainct.h"
21
22
23
#if BITS_IN_JSAMPLE != 16 || defined(D_LOSSLESS_SUPPORTED)
24
25
/*
26
 * In the current system design, the main buffer need never be a full-image
27
 * buffer; any full-height buffers will be found inside the coefficient,
28
 * difference, or postprocessing controllers.  Nonetheless, the main controller
29
 * is not trivial.  Its responsibility is to provide context rows for
30
 * upsampling/rescaling, and doing this in an efficient fashion is a bit
31
 * tricky.
32
 *
33
 * Postprocessor input data is counted in "row groups".  A row group
34
 * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size)
35
 * sample rows of each component.  (We require DCT_scaled_size values to be
36
 * chosen such that these numbers are integers.  In practice DCT_scaled_size
37
 * values will likely be powers of two, so we actually have the stronger
38
 * condition that DCT_scaled_size / min_DCT_scaled_size is an integer.)
39
 * Upsampling will typically produce max_v_samp_factor pixel rows from each
40
 * row group (times any additional scale factor that the upsampler is
41
 * applying).
42
 *
43
 * The coefficient or difference controller will deliver data to us one iMCU
44
 * row at a time; each iMCU row contains v_samp_factor * DCT_scaled_size sample
45
 * rows, or exactly min_DCT_scaled_size row groups.  (This amount of data
46
 * corresponds to one row of MCUs when the image is fully interleaved.)  Note
47
 * that the number of sample rows varies across components, but the number of
48
 * row groups does not.  Some garbage sample rows may be included in the last
49
 * iMCU row at the bottom of the image.
50
 *
51
 * Depending on the vertical scaling algorithm used, the upsampler may need
52
 * access to the sample row(s) above and below its current input row group.
53
 * The upsampler is required to set need_context_rows TRUE at global selection
54
 * time if so.  When need_context_rows is FALSE, this controller can simply
55
 * obtain one iMCU row at a time from the coefficient or difference controller
56
 * and dole it out as row groups to the postprocessor.
57
 *
58
 * When need_context_rows is TRUE, this controller guarantees that the buffer
59
 * passed to postprocessing contains at least one row group's worth of samples
60
 * above and below the row group(s) being processed.  Note that the context
61
 * rows "above" the first passed row group appear at negative row offsets in
62
 * the passed buffer.  At the top and bottom of the image, the required
63
 * context rows are manufactured by duplicating the first or last real sample
64
 * row; this avoids having special cases in the upsampling inner loops.
65
 *
66
 * The amount of context is fixed at one row group just because that's a
67
 * convenient number for this controller to work with.  The existing
68
 * upsamplers really only need one sample row of context.  An upsampler
69
 * supporting arbitrary output rescaling might wish for more than one row
70
 * group of context when shrinking the image; tough, we don't handle that.
71
 * (This is justified by the assumption that downsizing will be handled mostly
72
 * by adjusting the DCT_scaled_size values, so that the actual scale factor at
73
 * the upsample step needn't be much less than one.)
74
 *
75
 * To provide the desired context, we have to retain the last two row groups
76
 * of one iMCU row while reading in the next iMCU row.  (The last row group
77
 * can't be processed until we have another row group for its below-context,
78
 * and so we have to save the next-to-last group too for its above-context.)
79
 * We could do this most simply by copying data around in our buffer, but
80
 * that'd be very slow.  We can avoid copying any data by creating a rather
81
 * strange pointer structure.  Here's how it works.  We allocate a workspace
82
 * consisting of M+2 row groups (where M = min_DCT_scaled_size is the number
83
 * of row groups per iMCU row).  We create two sets of redundant pointers to
84
 * the workspace.  Labeling the physical row groups 0 to M+1, the synthesized
85
 * pointer lists look like this:
86
 *                   M+1                          M-1
87
 * master pointer --> 0         master pointer --> 0
88
 *                    1                            1
89
 *                   ...                          ...
90
 *                   M-3                          M-3
91
 *                   M-2                           M
92
 *                   M-1                          M+1
93
 *                    M                           M-2
94
 *                   M+1                          M-1
95
 *                    0                            0
96
 * We read alternate iMCU rows using each master pointer; thus the last two
97
 * row groups of the previous iMCU row remain un-overwritten in the workspace.
98
 * The pointer lists are set up so that the required context rows appear to
99
 * be adjacent to the proper places when we pass the pointer lists to the
100
 * upsampler.
101
 *
102
 * The above pictures describe the normal state of the pointer lists.
103
 * At top and bottom of the image, we diddle the pointer lists to duplicate
104
 * the first or last sample row as necessary (this is cheaper than copying
105
 * sample rows around).
106
 *
107
 * This scheme breaks down if M < 2, ie, min_DCT_scaled_size is 1.  In that
108
 * situation each iMCU row provides only one row group so the buffering logic
109
 * must be different (eg, we must read two iMCU rows before we can emit the
110
 * first row group).  For now, we simply do not support providing context
111
 * rows when min_DCT_scaled_size is 1.  That combination seems unlikely to
112
 * be worth providing --- if someone wants a 1/8th-size preview, they probably
113
 * want it quick and dirty, so a context-free upsampler is sufficient.
114
 */
115
116
117
/* Forward declarations */
118
METHODDEF(void) process_data_simple_main(j_decompress_ptr cinfo,
119
                                         _JSAMPARRAY output_buf,
120
                                         JDIMENSION *out_row_ctr,
121
                                         JDIMENSION out_rows_avail);
122
METHODDEF(void) process_data_context_main(j_decompress_ptr cinfo,
123
                                          _JSAMPARRAY output_buf,
124
                                          JDIMENSION *out_row_ctr,
125
                                          JDIMENSION out_rows_avail);
126
#ifdef QUANT_2PASS_SUPPORTED
127
METHODDEF(void) process_data_crank_post(j_decompress_ptr cinfo,
128
                                        _JSAMPARRAY output_buf,
129
                                        JDIMENSION *out_row_ctr,
130
                                        JDIMENSION out_rows_avail);
131
#endif
132
133
134
LOCAL(void)
135
alloc_funny_pointers(j_decompress_ptr cinfo)
136
/* Allocate space for the funny pointer lists.
137
 * This is done only once, not once per pass.
138
 */
139
21.6k
{
140
21.6k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
141
21.6k
  int ci, rgroup;
142
21.6k
  int M = cinfo->_min_DCT_scaled_size;
143
21.6k
  jpeg_component_info *compptr;
144
21.6k
  _JSAMPARRAY xbuf;
145
146
  /* Get top-level space for component array pointers.
147
   * We alloc both arrays with one call to save a few cycles.
148
   */
149
21.6k
  main_ptr->xbuffer[0] = (_JSAMPIMAGE)
150
21.6k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
151
21.6k
                                cinfo->num_components * 2 *
152
21.6k
                                sizeof(_JSAMPARRAY));
153
21.6k
  main_ptr->xbuffer[1] = main_ptr->xbuffer[0] + cinfo->num_components;
154
155
102k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
156
80.6k
       ci++, compptr++) {
157
80.6k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
158
80.6k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
159
    /* Get space for pointer lists --- M+4 row groups in each list.
160
     * We alloc both pointer lists with one call to save a few cycles.
161
     */
162
80.6k
    xbuf = (_JSAMPARRAY)
163
80.6k
      (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
164
80.6k
                                  2 * (rgroup * (M + 4)) * sizeof(_JSAMPROW));
165
80.6k
    xbuf += rgroup;             /* want one row group at negative offsets */
166
80.6k
    main_ptr->xbuffer[0][ci] = xbuf;
167
80.6k
    xbuf += rgroup * (M + 4);
168
80.6k
    main_ptr->xbuffer[1][ci] = xbuf;
169
80.6k
  }
170
21.6k
}
jdmainct-8.c:alloc_funny_pointers
Line
Count
Source
139
13.4k
{
140
13.4k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
141
13.4k
  int ci, rgroup;
142
13.4k
  int M = cinfo->_min_DCT_scaled_size;
143
13.4k
  jpeg_component_info *compptr;
144
13.4k
  _JSAMPARRAY xbuf;
145
146
  /* Get top-level space for component array pointers.
147
   * We alloc both arrays with one call to save a few cycles.
148
   */
149
13.4k
  main_ptr->xbuffer[0] = (_JSAMPIMAGE)
150
13.4k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
151
13.4k
                                cinfo->num_components * 2 *
152
13.4k
                                sizeof(_JSAMPARRAY));
153
13.4k
  main_ptr->xbuffer[1] = main_ptr->xbuffer[0] + cinfo->num_components;
154
155
62.3k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
156
48.8k
       ci++, compptr++) {
157
48.8k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
158
48.8k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
159
    /* Get space for pointer lists --- M+4 row groups in each list.
160
     * We alloc both pointer lists with one call to save a few cycles.
161
     */
162
48.8k
    xbuf = (_JSAMPARRAY)
163
48.8k
      (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
164
48.8k
                                  2 * (rgroup * (M + 4)) * sizeof(_JSAMPROW));
165
48.8k
    xbuf += rgroup;             /* want one row group at negative offsets */
166
48.8k
    main_ptr->xbuffer[0][ci] = xbuf;
167
48.8k
    xbuf += rgroup * (M + 4);
168
48.8k
    main_ptr->xbuffer[1][ci] = xbuf;
169
48.8k
  }
170
13.4k
}
jdmainct-12.c:alloc_funny_pointers
Line
Count
Source
139
8.21k
{
140
8.21k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
141
8.21k
  int ci, rgroup;
142
8.21k
  int M = cinfo->_min_DCT_scaled_size;
143
8.21k
  jpeg_component_info *compptr;
144
8.21k
  _JSAMPARRAY xbuf;
145
146
  /* Get top-level space for component array pointers.
147
   * We alloc both arrays with one call to save a few cycles.
148
   */
149
8.21k
  main_ptr->xbuffer[0] = (_JSAMPIMAGE)
150
8.21k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
151
8.21k
                                cinfo->num_components * 2 *
152
8.21k
                                sizeof(_JSAMPARRAY));
153
8.21k
  main_ptr->xbuffer[1] = main_ptr->xbuffer[0] + cinfo->num_components;
154
155
40.0k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
156
31.8k
       ci++, compptr++) {
157
31.8k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
158
31.8k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
159
    /* Get space for pointer lists --- M+4 row groups in each list.
160
     * We alloc both pointer lists with one call to save a few cycles.
161
     */
162
31.8k
    xbuf = (_JSAMPARRAY)
163
31.8k
      (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
164
31.8k
                                  2 * (rgroup * (M + 4)) * sizeof(_JSAMPROW));
165
31.8k
    xbuf += rgroup;             /* want one row group at negative offsets */
166
31.8k
    main_ptr->xbuffer[0][ci] = xbuf;
167
31.8k
    xbuf += rgroup * (M + 4);
168
31.8k
    main_ptr->xbuffer[1][ci] = xbuf;
169
31.8k
  }
170
8.21k
}
Unexecuted instantiation: jdmainct-16.c:alloc_funny_pointers
171
172
173
LOCAL(void)
174
make_funny_pointers(j_decompress_ptr cinfo)
175
/* Create the funny pointer lists discussed in the comments above.
176
 * The actual workspace is already allocated (in main_ptr->buffer),
177
 * and the space for the pointer lists is allocated too.
178
 * This routine just fills in the curiously ordered lists.
179
 * This will be repeated at the beginning of each pass.
180
 */
181
18.2k
{
182
18.2k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
183
18.2k
  int ci, i, rgroup;
184
18.2k
  int M = cinfo->_min_DCT_scaled_size;
185
18.2k
  jpeg_component_info *compptr;
186
18.2k
  _JSAMPARRAY buf, xbuf0, xbuf1;
187
188
84.3k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
189
66.1k
       ci++, compptr++) {
190
66.1k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
191
66.1k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
192
66.1k
    xbuf0 = main_ptr->xbuffer[0][ci];
193
66.1k
    xbuf1 = main_ptr->xbuffer[1][ci];
194
    /* First copy the workspace pointers as-is */
195
66.1k
    buf = main_ptr->buffer[ci];
196
1.28M
    for (i = 0; i < rgroup * (M + 2); i++) {
197
1.21M
      xbuf0[i] = xbuf1[i] = buf[i];
198
1.21M
    }
199
    /* In the second list, put the last four row groups in swapped order */
200
309k
    for (i = 0; i < rgroup * 2; i++) {
201
243k
      xbuf1[rgroup * (M - 2) + i] = buf[rgroup * M + i];
202
243k
      xbuf1[rgroup * M + i] = buf[rgroup * (M - 2) + i];
203
243k
    }
204
    /* The wraparound pointers at top and bottom will be filled later
205
     * (see set_wraparound_pointers, below).  Initially we want the "above"
206
     * pointers to duplicate the first actual data line.  This only needs
207
     * to happen in xbuffer[0].
208
     */
209
187k
    for (i = 0; i < rgroup; i++) {
210
121k
      xbuf0[i - rgroup] = xbuf0[0];
211
121k
    }
212
66.1k
  }
213
18.2k
}
jdmainct-8.c:make_funny_pointers
Line
Count
Source
181
11.1k
{
182
11.1k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
183
11.1k
  int ci, i, rgroup;
184
11.1k
  int M = cinfo->_min_DCT_scaled_size;
185
11.1k
  jpeg_component_info *compptr;
186
11.1k
  _JSAMPARRAY buf, xbuf0, xbuf1;
187
188
51.0k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
189
39.8k
       ci++, compptr++) {
190
39.8k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
191
39.8k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
192
39.8k
    xbuf0 = main_ptr->xbuffer[0][ci];
193
39.8k
    xbuf1 = main_ptr->xbuffer[1][ci];
194
    /* First copy the workspace pointers as-is */
195
39.8k
    buf = main_ptr->buffer[ci];
196
777k
    for (i = 0; i < rgroup * (M + 2); i++) {
197
737k
      xbuf0[i] = xbuf1[i] = buf[i];
198
737k
    }
199
    /* In the second list, put the last four row groups in swapped order */
200
187k
    for (i = 0; i < rgroup * 2; i++) {
201
147k
      xbuf1[rgroup * (M - 2) + i] = buf[rgroup * M + i];
202
147k
      xbuf1[rgroup * M + i] = buf[rgroup * (M - 2) + i];
203
147k
    }
204
    /* The wraparound pointers at top and bottom will be filled later
205
     * (see set_wraparound_pointers, below).  Initially we want the "above"
206
     * pointers to duplicate the first actual data line.  This only needs
207
     * to happen in xbuffer[0].
208
     */
209
113k
    for (i = 0; i < rgroup; i++) {
210
73.7k
      xbuf0[i - rgroup] = xbuf0[0];
211
73.7k
    }
212
39.8k
  }
213
11.1k
}
jdmainct-12.c:make_funny_pointers
Line
Count
Source
181
7.09k
{
182
7.09k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
183
7.09k
  int ci, i, rgroup;
184
7.09k
  int M = cinfo->_min_DCT_scaled_size;
185
7.09k
  jpeg_component_info *compptr;
186
7.09k
  _JSAMPARRAY buf, xbuf0, xbuf1;
187
188
33.3k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
189
26.2k
       ci++, compptr++) {
190
26.2k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
191
26.2k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
192
26.2k
    xbuf0 = main_ptr->xbuffer[0][ci];
193
26.2k
    xbuf1 = main_ptr->xbuffer[1][ci];
194
    /* First copy the workspace pointers as-is */
195
26.2k
    buf = main_ptr->buffer[ci];
196
504k
    for (i = 0; i < rgroup * (M + 2); i++) {
197
478k
      xbuf0[i] = xbuf1[i] = buf[i];
198
478k
    }
199
    /* In the second list, put the last four row groups in swapped order */
200
121k
    for (i = 0; i < rgroup * 2; i++) {
201
95.7k
      xbuf1[rgroup * (M - 2) + i] = buf[rgroup * M + i];
202
95.7k
      xbuf1[rgroup * M + i] = buf[rgroup * (M - 2) + i];
203
95.7k
    }
204
    /* The wraparound pointers at top and bottom will be filled later
205
     * (see set_wraparound_pointers, below).  Initially we want the "above"
206
     * pointers to duplicate the first actual data line.  This only needs
207
     * to happen in xbuffer[0].
208
     */
209
74.1k
    for (i = 0; i < rgroup; i++) {
210
47.8k
      xbuf0[i - rgroup] = xbuf0[0];
211
47.8k
    }
212
26.2k
  }
213
7.09k
}
Unexecuted instantiation: jdmainct-16.c:make_funny_pointers
214
215
216
LOCAL(void)
217
set_bottom_pointers(j_decompress_ptr cinfo)
218
/* Change the pointer lists to duplicate the last sample row at the bottom
219
 * of the image.  whichptr indicates which xbuffer holds the final iMCU row.
220
 * Also sets rowgroups_avail to indicate number of nondummy row groups in row.
221
 */
222
16.7k
{
223
16.7k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
224
16.7k
  int ci, i, rgroup, iMCUheight, rows_left;
225
16.7k
  jpeg_component_info *compptr;
226
16.7k
  _JSAMPARRAY xbuf;
227
228
72.6k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
229
55.8k
       ci++, compptr++) {
230
    /* Count sample rows in one iMCU row and in one row group */
231
55.8k
    iMCUheight = compptr->v_samp_factor * compptr->_DCT_scaled_size;
232
55.8k
    rgroup = iMCUheight / cinfo->_min_DCT_scaled_size;
233
    /* Count nondummy sample rows remaining for this component */
234
55.8k
    rows_left = (int)(compptr->downsampled_height % (JDIMENSION)iMCUheight);
235
55.8k
    if (rows_left == 0) rows_left = iMCUheight;
236
    /* Count nondummy row groups.  Should get same answer for each component,
237
     * so we need only do it once.
238
     */
239
55.8k
    if (ci == 0) {
240
16.7k
      main_ptr->rowgroups_avail = (JDIMENSION)((rows_left - 1) / rgroup + 1);
241
16.7k
    }
242
    /* Duplicate the last real sample row rgroup*2 times; this pads out the
243
     * last partial rowgroup and ensures at least one full rowgroup of context.
244
     */
245
55.8k
    xbuf = main_ptr->xbuffer[main_ptr->whichptr][ci];
246
255k
    for (i = 0; i < rgroup * 2; i++) {
247
199k
      xbuf[rows_left + i] = xbuf[rows_left - 1];
248
199k
    }
249
55.8k
  }
250
16.7k
}
jdmainct-8.c:set_bottom_pointers
Line
Count
Source
222
10.3k
{
223
10.3k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
224
10.3k
  int ci, i, rgroup, iMCUheight, rows_left;
225
10.3k
  jpeg_component_info *compptr;
226
10.3k
  _JSAMPARRAY xbuf;
227
228
44.6k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
229
34.3k
       ci++, compptr++) {
230
    /* Count sample rows in one iMCU row and in one row group */
231
34.3k
    iMCUheight = compptr->v_samp_factor * compptr->_DCT_scaled_size;
232
34.3k
    rgroup = iMCUheight / cinfo->_min_DCT_scaled_size;
233
    /* Count nondummy sample rows remaining for this component */
234
34.3k
    rows_left = (int)(compptr->downsampled_height % (JDIMENSION)iMCUheight);
235
34.3k
    if (rows_left == 0) rows_left = iMCUheight;
236
    /* Count nondummy row groups.  Should get same answer for each component,
237
     * so we need only do it once.
238
     */
239
34.3k
    if (ci == 0) {
240
10.3k
      main_ptr->rowgroups_avail = (JDIMENSION)((rows_left - 1) / rgroup + 1);
241
10.3k
    }
242
    /* Duplicate the last real sample row rgroup*2 times; this pads out the
243
     * last partial rowgroup and ensures at least one full rowgroup of context.
244
     */
245
34.3k
    xbuf = main_ptr->xbuffer[main_ptr->whichptr][ci];
246
157k
    for (i = 0; i < rgroup * 2; i++) {
247
123k
      xbuf[rows_left + i] = xbuf[rows_left - 1];
248
123k
    }
249
34.3k
  }
250
10.3k
}
jdmainct-12.c:set_bottom_pointers
Line
Count
Source
222
6.44k
{
223
6.44k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
224
6.44k
  int ci, i, rgroup, iMCUheight, rows_left;
225
6.44k
  jpeg_component_info *compptr;
226
6.44k
  _JSAMPARRAY xbuf;
227
228
27.9k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
229
21.5k
       ci++, compptr++) {
230
    /* Count sample rows in one iMCU row and in one row group */
231
21.5k
    iMCUheight = compptr->v_samp_factor * compptr->_DCT_scaled_size;
232
21.5k
    rgroup = iMCUheight / cinfo->_min_DCT_scaled_size;
233
    /* Count nondummy sample rows remaining for this component */
234
21.5k
    rows_left = (int)(compptr->downsampled_height % (JDIMENSION)iMCUheight);
235
21.5k
    if (rows_left == 0) rows_left = iMCUheight;
236
    /* Count nondummy row groups.  Should get same answer for each component,
237
     * so we need only do it once.
238
     */
239
21.5k
    if (ci == 0) {
240
6.44k
      main_ptr->rowgroups_avail = (JDIMENSION)((rows_left - 1) / rgroup + 1);
241
6.44k
    }
242
    /* Duplicate the last real sample row rgroup*2 times; this pads out the
243
     * last partial rowgroup and ensures at least one full rowgroup of context.
244
     */
245
21.5k
    xbuf = main_ptr->xbuffer[main_ptr->whichptr][ci];
246
97.4k
    for (i = 0; i < rgroup * 2; i++) {
247
75.9k
      xbuf[rows_left + i] = xbuf[rows_left - 1];
248
75.9k
    }
249
21.5k
  }
250
6.44k
}
Unexecuted instantiation: jdmainct-16.c:set_bottom_pointers
251
252
253
/*
254
 * Initialize for a processing pass.
255
 */
256
257
METHODDEF(void)
258
start_pass_main(j_decompress_ptr cinfo, J_BUF_MODE pass_mode)
259
205k
{
260
205k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
261
262
205k
  switch (pass_mode) {
263
205k
  case JBUF_PASS_THRU:
264
205k
    if (cinfo->upsample->need_context_rows) {
265
18.2k
      main_ptr->pub._process_data = process_data_context_main;
266
18.2k
      make_funny_pointers(cinfo); /* Create the xbuffer[] lists */
267
18.2k
      main_ptr->whichptr = 0;   /* Read first iMCU row into xbuffer[0] */
268
18.2k
      main_ptr->context_state = CTX_PREPARE_FOR_IMCU;
269
18.2k
      main_ptr->iMCU_row_ctr = 0;
270
186k
    } else {
271
      /* Simple case with no context needed */
272
186k
      main_ptr->pub._process_data = process_data_simple_main;
273
186k
    }
274
205k
    main_ptr->buffer_full = FALSE;      /* Mark buffer empty */
275
205k
    main_ptr->rowgroup_ctr = 0;
276
205k
    break;
277
0
#ifdef QUANT_2PASS_SUPPORTED
278
0
  case JBUF_CRANK_DEST:
279
    /* For last pass of 2-pass quantization, just crank the postprocessor */
280
0
    main_ptr->pub._process_data = process_data_crank_post;
281
0
    break;
282
0
#endif
283
0
  default:
284
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
285
0
    break;
286
205k
  }
287
205k
}
jdmainct-8.c:start_pass_main
Line
Count
Source
259
173k
{
260
173k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
261
262
173k
  switch (pass_mode) {
263
173k
  case JBUF_PASS_THRU:
264
173k
    if (cinfo->upsample->need_context_rows) {
265
11.1k
      main_ptr->pub._process_data = process_data_context_main;
266
11.1k
      make_funny_pointers(cinfo); /* Create the xbuffer[] lists */
267
11.1k
      main_ptr->whichptr = 0;   /* Read first iMCU row into xbuffer[0] */
268
11.1k
      main_ptr->context_state = CTX_PREPARE_FOR_IMCU;
269
11.1k
      main_ptr->iMCU_row_ctr = 0;
270
162k
    } else {
271
      /* Simple case with no context needed */
272
162k
      main_ptr->pub._process_data = process_data_simple_main;
273
162k
    }
274
173k
    main_ptr->buffer_full = FALSE;      /* Mark buffer empty */
275
173k
    main_ptr->rowgroup_ctr = 0;
276
173k
    break;
277
0
#ifdef QUANT_2PASS_SUPPORTED
278
0
  case JBUF_CRANK_DEST:
279
    /* For last pass of 2-pass quantization, just crank the postprocessor */
280
0
    main_ptr->pub._process_data = process_data_crank_post;
281
0
    break;
282
0
#endif
283
0
  default:
284
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
285
0
    break;
286
173k
  }
287
173k
}
jdmainct-12.c:start_pass_main
Line
Count
Source
259
25.1k
{
260
25.1k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
261
262
25.1k
  switch (pass_mode) {
263
25.1k
  case JBUF_PASS_THRU:
264
25.1k
    if (cinfo->upsample->need_context_rows) {
265
7.09k
      main_ptr->pub._process_data = process_data_context_main;
266
7.09k
      make_funny_pointers(cinfo); /* Create the xbuffer[] lists */
267
7.09k
      main_ptr->whichptr = 0;   /* Read first iMCU row into xbuffer[0] */
268
7.09k
      main_ptr->context_state = CTX_PREPARE_FOR_IMCU;
269
7.09k
      main_ptr->iMCU_row_ctr = 0;
270
18.0k
    } else {
271
      /* Simple case with no context needed */
272
18.0k
      main_ptr->pub._process_data = process_data_simple_main;
273
18.0k
    }
274
25.1k
    main_ptr->buffer_full = FALSE;      /* Mark buffer empty */
275
25.1k
    main_ptr->rowgroup_ctr = 0;
276
25.1k
    break;
277
0
#ifdef QUANT_2PASS_SUPPORTED
278
0
  case JBUF_CRANK_DEST:
279
    /* For last pass of 2-pass quantization, just crank the postprocessor */
280
0
    main_ptr->pub._process_data = process_data_crank_post;
281
0
    break;
282
0
#endif
283
0
  default:
284
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
285
0
    break;
286
25.1k
  }
287
25.1k
}
jdmainct-16.c:start_pass_main
Line
Count
Source
259
6.17k
{
260
6.17k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
261
262
6.17k
  switch (pass_mode) {
263
6.17k
  case JBUF_PASS_THRU:
264
6.17k
    if (cinfo->upsample->need_context_rows) {
265
0
      main_ptr->pub._process_data = process_data_context_main;
266
0
      make_funny_pointers(cinfo); /* Create the xbuffer[] lists */
267
0
      main_ptr->whichptr = 0;   /* Read first iMCU row into xbuffer[0] */
268
0
      main_ptr->context_state = CTX_PREPARE_FOR_IMCU;
269
0
      main_ptr->iMCU_row_ctr = 0;
270
6.17k
    } else {
271
      /* Simple case with no context needed */
272
6.17k
      main_ptr->pub._process_data = process_data_simple_main;
273
6.17k
    }
274
6.17k
    main_ptr->buffer_full = FALSE;      /* Mark buffer empty */
275
6.17k
    main_ptr->rowgroup_ctr = 0;
276
6.17k
    break;
277
0
#ifdef QUANT_2PASS_SUPPORTED
278
0
  case JBUF_CRANK_DEST:
279
    /* For last pass of 2-pass quantization, just crank the postprocessor */
280
0
    main_ptr->pub._process_data = process_data_crank_post;
281
0
    break;
282
0
#endif
283
0
  default:
284
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
285
0
    break;
286
6.17k
  }
287
6.17k
}
288
289
290
/*
291
 * Process some data.
292
 * This handles the simple case where no context is required.
293
 */
294
295
METHODDEF(void)
296
process_data_simple_main(j_decompress_ptr cinfo, _JSAMPARRAY output_buf,
297
                         JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail)
298
33.8M
{
299
33.8M
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
300
33.8M
  JDIMENSION rowgroups_avail;
301
302
  /* Read input data if we haven't filled the main buffer yet */
303
33.8M
  if (!main_ptr->buffer_full) {
304
4.78M
    if (!(*cinfo->coef->_decompress_data) (cinfo, main_ptr->buffer))
305
0
      return;                   /* suspension forced, can do nothing more */
306
4.78M
    main_ptr->buffer_full = TRUE;       /* OK, we have an iMCU row to work with */
307
4.78M
  }
308
309
  /* There are always min_DCT_scaled_size row groups in an iMCU row. */
310
33.8M
  rowgroups_avail = (JDIMENSION)cinfo->_min_DCT_scaled_size;
311
  /* Note: at the bottom of the image, we may pass extra garbage row groups
312
   * to the postprocessor.  The postprocessor has to check for bottom
313
   * of image anyway (at row resolution), so no point in us doing it too.
314
   */
315
316
  /* Feed the postprocessor */
317
33.8M
  (*cinfo->post->_post_process_data) (cinfo, main_ptr->buffer,
318
33.8M
                                      &main_ptr->rowgroup_ctr, rowgroups_avail,
319
33.8M
                                      output_buf, out_row_ctr, out_rows_avail);
320
321
  /* Has postprocessor consumed all the data yet? If so, mark buffer empty */
322
33.8M
  if (main_ptr->rowgroup_ctr >= rowgroups_avail) {
323
4.63M
    main_ptr->buffer_full = FALSE;
324
4.63M
    main_ptr->rowgroup_ctr = 0;
325
4.63M
  }
326
33.8M
}
jdmainct-8.c:process_data_simple_main
Line
Count
Source
298
25.4M
{
299
25.4M
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
300
25.4M
  JDIMENSION rowgroups_avail;
301
302
  /* Read input data if we haven't filled the main buffer yet */
303
25.4M
  if (!main_ptr->buffer_full) {
304
3.63M
    if (!(*cinfo->coef->_decompress_data) (cinfo, main_ptr->buffer))
305
0
      return;                   /* suspension forced, can do nothing more */
306
3.63M
    main_ptr->buffer_full = TRUE;       /* OK, we have an iMCU row to work with */
307
3.63M
  }
308
309
  /* There are always min_DCT_scaled_size row groups in an iMCU row. */
310
25.4M
  rowgroups_avail = (JDIMENSION)cinfo->_min_DCT_scaled_size;
311
  /* Note: at the bottom of the image, we may pass extra garbage row groups
312
   * to the postprocessor.  The postprocessor has to check for bottom
313
   * of image anyway (at row resolution), so no point in us doing it too.
314
   */
315
316
  /* Feed the postprocessor */
317
25.4M
  (*cinfo->post->_post_process_data) (cinfo, main_ptr->buffer,
318
25.4M
                                      &main_ptr->rowgroup_ctr, rowgroups_avail,
319
25.4M
                                      output_buf, out_row_ctr, out_rows_avail);
320
321
  /* Has postprocessor consumed all the data yet? If so, mark buffer empty */
322
25.4M
  if (main_ptr->rowgroup_ctr >= rowgroups_avail) {
323
3.49M
    main_ptr->buffer_full = FALSE;
324
3.49M
    main_ptr->rowgroup_ctr = 0;
325
3.49M
  }
326
25.4M
}
jdmainct-12.c:process_data_simple_main
Line
Count
Source
298
7.76M
{
299
7.76M
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
300
7.76M
  JDIMENSION rowgroups_avail;
301
302
  /* Read input data if we haven't filled the main buffer yet */
303
7.76M
  if (!main_ptr->buffer_full) {
304
873k
    if (!(*cinfo->coef->_decompress_data) (cinfo, main_ptr->buffer))
305
0
      return;                   /* suspension forced, can do nothing more */
306
873k
    main_ptr->buffer_full = TRUE;       /* OK, we have an iMCU row to work with */
307
873k
  }
308
309
  /* There are always min_DCT_scaled_size row groups in an iMCU row. */
310
7.76M
  rowgroups_avail = (JDIMENSION)cinfo->_min_DCT_scaled_size;
311
  /* Note: at the bottom of the image, we may pass extra garbage row groups
312
   * to the postprocessor.  The postprocessor has to check for bottom
313
   * of image anyway (at row resolution), so no point in us doing it too.
314
   */
315
316
  /* Feed the postprocessor */
317
7.76M
  (*cinfo->post->_post_process_data) (cinfo, main_ptr->buffer,
318
7.76M
                                      &main_ptr->rowgroup_ctr, rowgroups_avail,
319
7.76M
                                      output_buf, out_row_ctr, out_rows_avail);
320
321
  /* Has postprocessor consumed all the data yet? If so, mark buffer empty */
322
7.76M
  if (main_ptr->rowgroup_ctr >= rowgroups_avail) {
323
858k
    main_ptr->buffer_full = FALSE;
324
858k
    main_ptr->rowgroup_ctr = 0;
325
858k
  }
326
7.76M
}
jdmainct-16.c:process_data_simple_main
Line
Count
Source
298
613k
{
299
613k
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
300
613k
  JDIMENSION rowgroups_avail;
301
302
  /* Read input data if we haven't filled the main buffer yet */
303
613k
  if (!main_ptr->buffer_full) {
304
282k
    if (!(*cinfo->coef->_decompress_data) (cinfo, main_ptr->buffer))
305
0
      return;                   /* suspension forced, can do nothing more */
306
282k
    main_ptr->buffer_full = TRUE;       /* OK, we have an iMCU row to work with */
307
282k
  }
308
309
  /* There are always min_DCT_scaled_size row groups in an iMCU row. */
310
613k
  rowgroups_avail = (JDIMENSION)cinfo->_min_DCT_scaled_size;
311
  /* Note: at the bottom of the image, we may pass extra garbage row groups
312
   * to the postprocessor.  The postprocessor has to check for bottom
313
   * of image anyway (at row resolution), so no point in us doing it too.
314
   */
315
316
  /* Feed the postprocessor */
317
613k
  (*cinfo->post->_post_process_data) (cinfo, main_ptr->buffer,
318
613k
                                      &main_ptr->rowgroup_ctr, rowgroups_avail,
319
613k
                                      output_buf, out_row_ctr, out_rows_avail);
320
321
  /* Has postprocessor consumed all the data yet? If so, mark buffer empty */
322
613k
  if (main_ptr->rowgroup_ctr >= rowgroups_avail) {
323
278k
    main_ptr->buffer_full = FALSE;
324
278k
    main_ptr->rowgroup_ctr = 0;
325
278k
  }
326
613k
}
327
328
329
/*
330
 * Process some data.
331
 * This handles the case where context rows must be provided.
332
 */
333
334
METHODDEF(void)
335
process_data_context_main(j_decompress_ptr cinfo, _JSAMPARRAY output_buf,
336
                          JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail)
337
7.13M
{
338
7.13M
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
339
340
  /* Read input data if we haven't filled the main buffer yet */
341
7.13M
  if (!main_ptr->buffer_full) {
342
360k
    if (!(*cinfo->coef->_decompress_data) (cinfo,
343
360k
                                           main_ptr->xbuffer[main_ptr->whichptr]))
344
0
      return;                   /* suspension forced, can do nothing more */
345
360k
    main_ptr->buffer_full = TRUE;       /* OK, we have an iMCU row to work with */
346
360k
    main_ptr->iMCU_row_ctr++;   /* count rows received */
347
360k
  }
348
349
  /* Postprocessor typically will not swallow all the input data it is handed
350
   * in one call (due to filling the output buffer first).  Must be prepared
351
   * to exit and restart.  This switch lets us keep track of how far we got.
352
   * Note that each case falls through to the next on successful completion.
353
   */
354
7.13M
  switch (main_ptr->context_state) {
355
872k
  case CTX_POSTPONED_ROW:
356
    /* Call postprocessor using previously set pointers for postponed row */
357
872k
    (*cinfo->post->_post_process_data) (cinfo,
358
872k
                                        main_ptr->xbuffer[main_ptr->whichptr],
359
872k
                                        &main_ptr->rowgroup_ctr,
360
872k
                                        main_ptr->rowgroups_avail, output_buf,
361
872k
                                        out_row_ctr, out_rows_avail);
362
872k
    if (main_ptr->rowgroup_ctr < main_ptr->rowgroups_avail)
363
528k
      return;                   /* Need to suspend */
364
343k
    main_ptr->context_state = CTX_PREPARE_FOR_IMCU;
365
343k
    if (*out_row_ctr >= out_rows_avail)
366
343k
      return;                   /* Postprocessor exactly filled output buf */
367
0
    FALLTHROUGH                 /*FALLTHROUGH*/
368
360k
  case CTX_PREPARE_FOR_IMCU:
369
    /* Prepare to process first M-1 row groups of this iMCU row */
370
360k
    main_ptr->rowgroup_ctr = 0;
371
360k
    main_ptr->rowgroups_avail = (JDIMENSION)(cinfo->_min_DCT_scaled_size - 1);
372
    /* Check for bottom of image: if so, tweak pointers to "duplicate"
373
     * the last sample row, and adjust rowgroups_avail to ignore padding rows.
374
     */
375
360k
    if (main_ptr->iMCU_row_ctr == cinfo->total_iMCU_rows)
376
16.7k
      set_bottom_pointers(cinfo);
377
360k
    main_ptr->context_state = CTX_PROCESS_IMCU;
378
360k
    FALLTHROUGH                 /*FALLTHROUGH*/
379
6.26M
  case CTX_PROCESS_IMCU:
380
    /* Call postprocessor using previously set pointers */
381
6.26M
    (*cinfo->post->_post_process_data) (cinfo,
382
6.26M
                                        main_ptr->xbuffer[main_ptr->whichptr],
383
6.26M
                                        &main_ptr->rowgroup_ctr,
384
6.26M
                                        main_ptr->rowgroups_avail, output_buf,
385
6.26M
                                        out_row_ctr, out_rows_avail);
386
6.26M
    if (main_ptr->rowgroup_ctr < main_ptr->rowgroups_avail)
387
5.91M
      return;                   /* Need to suspend */
388
    /* After the first iMCU, change wraparound pointers to normal state */
389
350k
    if (main_ptr->iMCU_row_ctr == 1)
390
14.9k
      set_wraparound_pointers(cinfo);
391
    /* Prepare to load new iMCU row using other xbuffer list */
392
350k
    main_ptr->whichptr ^= 1;    /* 0=>1 or 1=>0 */
393
350k
    main_ptr->buffer_full = FALSE;
394
    /* Still need to process last row group of this iMCU row, */
395
    /* which is saved at index M+1 of the other xbuffer */
396
350k
    main_ptr->rowgroup_ctr = (JDIMENSION)(cinfo->_min_DCT_scaled_size + 1);
397
350k
    main_ptr->rowgroups_avail = (JDIMENSION)(cinfo->_min_DCT_scaled_size + 2);
398
350k
    main_ptr->context_state = CTX_POSTPONED_ROW;
399
7.13M
  }
400
7.13M
}
jdmainct-8.c:process_data_context_main
Line
Count
Source
337
4.86M
{
338
4.86M
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
339
340
  /* Read input data if we haven't filled the main buffer yet */
341
4.86M
  if (!main_ptr->buffer_full) {
342
237k
    if (!(*cinfo->coef->_decompress_data) (cinfo,
343
237k
                                           main_ptr->xbuffer[main_ptr->whichptr]))
344
0
      return;                   /* suspension forced, can do nothing more */
345
237k
    main_ptr->buffer_full = TRUE;       /* OK, we have an iMCU row to work with */
346
237k
    main_ptr->iMCU_row_ctr++;   /* count rows received */
347
237k
  }
348
349
  /* Postprocessor typically will not swallow all the input data it is handed
350
   * in one call (due to filling the output buffer first).  Must be prepared
351
   * to exit and restart.  This switch lets us keep track of how far we got.
352
   * Note that each case falls through to the next on successful completion.
353
   */
354
4.86M
  switch (main_ptr->context_state) {
355
595k
  case CTX_POSTPONED_ROW:
356
    /* Call postprocessor using previously set pointers for postponed row */
357
595k
    (*cinfo->post->_post_process_data) (cinfo,
358
595k
                                        main_ptr->xbuffer[main_ptr->whichptr],
359
595k
                                        &main_ptr->rowgroup_ctr,
360
595k
                                        main_ptr->rowgroups_avail, output_buf,
361
595k
                                        out_row_ctr, out_rows_avail);
362
595k
    if (main_ptr->rowgroup_ctr < main_ptr->rowgroups_avail)
363
368k
      return;                   /* Need to suspend */
364
227k
    main_ptr->context_state = CTX_PREPARE_FOR_IMCU;
365
227k
    if (*out_row_ctr >= out_rows_avail)
366
227k
      return;                   /* Postprocessor exactly filled output buf */
367
0
    FALLTHROUGH                 /*FALLTHROUGH*/
368
237k
  case CTX_PREPARE_FOR_IMCU:
369
    /* Prepare to process first M-1 row groups of this iMCU row */
370
237k
    main_ptr->rowgroup_ctr = 0;
371
237k
    main_ptr->rowgroups_avail = (JDIMENSION)(cinfo->_min_DCT_scaled_size - 1);
372
    /* Check for bottom of image: if so, tweak pointers to "duplicate"
373
     * the last sample row, and adjust rowgroups_avail to ignore padding rows.
374
     */
375
237k
    if (main_ptr->iMCU_row_ctr == cinfo->total_iMCU_rows)
376
10.3k
      set_bottom_pointers(cinfo);
377
237k
    main_ptr->context_state = CTX_PROCESS_IMCU;
378
237k
    FALLTHROUGH                 /*FALLTHROUGH*/
379
4.26M
  case CTX_PROCESS_IMCU:
380
    /* Call postprocessor using previously set pointers */
381
4.26M
    (*cinfo->post->_post_process_data) (cinfo,
382
4.26M
                                        main_ptr->xbuffer[main_ptr->whichptr],
383
4.26M
                                        &main_ptr->rowgroup_ctr,
384
4.26M
                                        main_ptr->rowgroups_avail, output_buf,
385
4.26M
                                        out_row_ctr, out_rows_avail);
386
4.26M
    if (main_ptr->rowgroup_ctr < main_ptr->rowgroups_avail)
387
4.03M
      return;                   /* Need to suspend */
388
    /* After the first iMCU, change wraparound pointers to normal state */
389
231k
    if (main_ptr->iMCU_row_ctr == 1)
390
9.13k
      set_wraparound_pointers(cinfo);
391
    /* Prepare to load new iMCU row using other xbuffer list */
392
231k
    main_ptr->whichptr ^= 1;    /* 0=>1 or 1=>0 */
393
231k
    main_ptr->buffer_full = FALSE;
394
    /* Still need to process last row group of this iMCU row, */
395
    /* which is saved at index M+1 of the other xbuffer */
396
231k
    main_ptr->rowgroup_ctr = (JDIMENSION)(cinfo->_min_DCT_scaled_size + 1);
397
231k
    main_ptr->rowgroups_avail = (JDIMENSION)(cinfo->_min_DCT_scaled_size + 2);
398
231k
    main_ptr->context_state = CTX_POSTPONED_ROW;
399
4.86M
  }
400
4.86M
}
jdmainct-12.c:process_data_context_main
Line
Count
Source
337
2.27M
{
338
2.27M
  my_main_ptr main_ptr = (my_main_ptr)cinfo->main;
339
340
  /* Read input data if we haven't filled the main buffer yet */
341
2.27M
  if (!main_ptr->buffer_full) {
342
122k
    if (!(*cinfo->coef->_decompress_data) (cinfo,
343
122k
                                           main_ptr->xbuffer[main_ptr->whichptr]))
344
0
      return;                   /* suspension forced, can do nothing more */
345
122k
    main_ptr->buffer_full = TRUE;       /* OK, we have an iMCU row to work with */
346
122k
    main_ptr->iMCU_row_ctr++;   /* count rows received */
347
122k
  }
348
349
  /* Postprocessor typically will not swallow all the input data it is handed
350
   * in one call (due to filling the output buffer first).  Must be prepared
351
   * to exit and restart.  This switch lets us keep track of how far we got.
352
   * Note that each case falls through to the next on successful completion.
353
   */
354
2.27M
  switch (main_ptr->context_state) {
355
276k
  case CTX_POSTPONED_ROW:
356
    /* Call postprocessor using previously set pointers for postponed row */
357
276k
    (*cinfo->post->_post_process_data) (cinfo,
358
276k
                                        main_ptr->xbuffer[main_ptr->whichptr],
359
276k
                                        &main_ptr->rowgroup_ctr,
360
276k
                                        main_ptr->rowgroups_avail, output_buf,
361
276k
                                        out_row_ctr, out_rows_avail);
362
276k
    if (main_ptr->rowgroup_ctr < main_ptr->rowgroups_avail)
363
159k
      return;                   /* Need to suspend */
364
116k
    main_ptr->context_state = CTX_PREPARE_FOR_IMCU;
365
116k
    if (*out_row_ctr >= out_rows_avail)
366
116k
      return;                   /* Postprocessor exactly filled output buf */
367
0
    FALLTHROUGH                 /*FALLTHROUGH*/
368
122k
  case CTX_PREPARE_FOR_IMCU:
369
    /* Prepare to process first M-1 row groups of this iMCU row */
370
122k
    main_ptr->rowgroup_ctr = 0;
371
122k
    main_ptr->rowgroups_avail = (JDIMENSION)(cinfo->_min_DCT_scaled_size - 1);
372
    /* Check for bottom of image: if so, tweak pointers to "duplicate"
373
     * the last sample row, and adjust rowgroups_avail to ignore padding rows.
374
     */
375
122k
    if (main_ptr->iMCU_row_ctr == cinfo->total_iMCU_rows)
376
6.44k
      set_bottom_pointers(cinfo);
377
122k
    main_ptr->context_state = CTX_PROCESS_IMCU;
378
122k
    FALLTHROUGH                 /*FALLTHROUGH*/
379
1.99M
  case CTX_PROCESS_IMCU:
380
    /* Call postprocessor using previously set pointers */
381
1.99M
    (*cinfo->post->_post_process_data) (cinfo,
382
1.99M
                                        main_ptr->xbuffer[main_ptr->whichptr],
383
1.99M
                                        &main_ptr->rowgroup_ctr,
384
1.99M
                                        main_ptr->rowgroups_avail, output_buf,
385
1.99M
                                        out_row_ctr, out_rows_avail);
386
1.99M
    if (main_ptr->rowgroup_ctr < main_ptr->rowgroups_avail)
387
1.87M
      return;                   /* Need to suspend */
388
    /* After the first iMCU, change wraparound pointers to normal state */
389
118k
    if (main_ptr->iMCU_row_ctr == 1)
390
5.84k
      set_wraparound_pointers(cinfo);
391
    /* Prepare to load new iMCU row using other xbuffer list */
392
118k
    main_ptr->whichptr ^= 1;    /* 0=>1 or 1=>0 */
393
118k
    main_ptr->buffer_full = FALSE;
394
    /* Still need to process last row group of this iMCU row, */
395
    /* which is saved at index M+1 of the other xbuffer */
396
118k
    main_ptr->rowgroup_ctr = (JDIMENSION)(cinfo->_min_DCT_scaled_size + 1);
397
118k
    main_ptr->rowgroups_avail = (JDIMENSION)(cinfo->_min_DCT_scaled_size + 2);
398
118k
    main_ptr->context_state = CTX_POSTPONED_ROW;
399
2.27M
  }
400
2.27M
}
Unexecuted instantiation: jdmainct-16.c:process_data_context_main
401
402
403
/*
404
 * Process some data.
405
 * Final pass of two-pass quantization: just call the postprocessor.
406
 * Source data will be the postprocessor controller's internal buffer.
407
 */
408
409
#ifdef QUANT_2PASS_SUPPORTED
410
411
METHODDEF(void)
412
process_data_crank_post(j_decompress_ptr cinfo, _JSAMPARRAY output_buf,
413
                        JDIMENSION *out_row_ctr, JDIMENSION out_rows_avail)
414
0
{
415
0
  (*cinfo->post->_post_process_data) (cinfo, (_JSAMPIMAGE)NULL,
416
0
                                      (JDIMENSION *)NULL, (JDIMENSION)0,
417
0
                                      output_buf, out_row_ctr, out_rows_avail);
418
0
}
Unexecuted instantiation: jdmainct-8.c:process_data_crank_post
Unexecuted instantiation: jdmainct-12.c:process_data_crank_post
Unexecuted instantiation: jdmainct-16.c:process_data_crank_post
419
420
#endif /* QUANT_2PASS_SUPPORTED */
421
422
423
/*
424
 * Initialize main buffer controller.
425
 */
426
427
GLOBAL(void)
428
_jinit_d_main_controller(j_decompress_ptr cinfo, boolean need_full_buffer)
429
233k
{
430
233k
  my_main_ptr main_ptr;
431
233k
  int ci, rgroup, ngroups;
432
233k
  jpeg_component_info *compptr;
433
434
233k
#ifdef D_LOSSLESS_SUPPORTED
435
233k
  if (cinfo->master->lossless) {
436
#if BITS_IN_JSAMPLE == 8
437
35.7k
    if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
438
#else
439
16.5k
    if (cinfo->data_precision > BITS_IN_JSAMPLE ||
440
16.5k
        cinfo->data_precision < BITS_IN_JSAMPLE - 3)
441
0
#endif
442
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
443
52.2k
  } else
444
181k
#endif
445
181k
  {
446
181k
    if (cinfo->data_precision != BITS_IN_JSAMPLE)
447
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
448
181k
  }
449
450
233k
  main_ptr = (my_main_ptr)
451
233k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
452
233k
                                sizeof(my_main_controller));
453
233k
  memset(main_ptr, 0, sizeof(my_main_controller));
454
233k
  cinfo->main = (struct jpeg_d_main_controller *)main_ptr;
455
233k
  main_ptr->pub.start_pass = start_pass_main;
456
457
233k
  if (need_full_buffer)         /* shouldn't happen */
458
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
459
460
  /* Allocate the workspace.
461
   * ngroups is the number of row groups we need.
462
   */
463
233k
  if (cinfo->upsample->need_context_rows) {
464
21.6k
    if (cinfo->_min_DCT_scaled_size < 2) /* unsupported, see comments above */
465
0
      ERREXIT(cinfo, JERR_NOTIMPL);
466
21.6k
    alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */
467
21.6k
    ngroups = cinfo->_min_DCT_scaled_size + 2;
468
211k
  } else {
469
211k
    ngroups = cinfo->_min_DCT_scaled_size;
470
211k
  }
471
472
641k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
473
407k
       ci++, compptr++) {
474
407k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
475
407k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
476
407k
    main_ptr->buffer[ci] = (_JSAMPARRAY)(*cinfo->mem->alloc_sarray)
477
407k
                        ((j_common_ptr)cinfo, JPOOL_IMAGE,
478
407k
                         compptr->width_in_blocks * compptr->_DCT_scaled_size,
479
407k
                         (JDIMENSION)(rgroup * ngroups));
480
407k
  }
481
233k
}
jinit_d_main_controller
Line
Count
Source
429
194k
{
430
194k
  my_main_ptr main_ptr;
431
194k
  int ci, rgroup, ngroups;
432
194k
  jpeg_component_info *compptr;
433
434
194k
#ifdef D_LOSSLESS_SUPPORTED
435
194k
  if (cinfo->master->lossless) {
436
35.7k
#if BITS_IN_JSAMPLE == 8
437
35.7k
    if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
438
#else
439
    if (cinfo->data_precision > BITS_IN_JSAMPLE ||
440
        cinfo->data_precision < BITS_IN_JSAMPLE - 3)
441
#endif
442
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
443
35.7k
  } else
444
158k
#endif
445
158k
  {
446
158k
    if (cinfo->data_precision != BITS_IN_JSAMPLE)
447
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
448
158k
  }
449
450
194k
  main_ptr = (my_main_ptr)
451
194k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
452
194k
                                sizeof(my_main_controller));
453
194k
  memset(main_ptr, 0, sizeof(my_main_controller));
454
194k
  cinfo->main = (struct jpeg_d_main_controller *)main_ptr;
455
194k
  main_ptr->pub.start_pass = start_pass_main;
456
457
194k
  if (need_full_buffer)         /* shouldn't happen */
458
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
459
460
  /* Allocate the workspace.
461
   * ngroups is the number of row groups we need.
462
   */
463
194k
  if (cinfo->upsample->need_context_rows) {
464
13.4k
    if (cinfo->_min_DCT_scaled_size < 2) /* unsupported, see comments above */
465
0
      ERREXIT(cinfo, JERR_NOTIMPL);
466
13.4k
    alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */
467
13.4k
    ngroups = cinfo->_min_DCT_scaled_size + 2;
468
181k
  } else {
469
181k
    ngroups = cinfo->_min_DCT_scaled_size;
470
181k
  }
471
472
478k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
473
283k
       ci++, compptr++) {
474
283k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
475
283k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
476
283k
    main_ptr->buffer[ci] = (_JSAMPARRAY)(*cinfo->mem->alloc_sarray)
477
283k
                        ((j_common_ptr)cinfo, JPOOL_IMAGE,
478
283k
                         compptr->width_in_blocks * compptr->_DCT_scaled_size,
479
283k
                         (JDIMENSION)(rgroup * ngroups));
480
283k
  }
481
194k
}
j12init_d_main_controller
Line
Count
Source
429
30.1k
{
430
30.1k
  my_main_ptr main_ptr;
431
30.1k
  int ci, rgroup, ngroups;
432
30.1k
  jpeg_component_info *compptr;
433
434
30.1k
#ifdef D_LOSSLESS_SUPPORTED
435
30.1k
  if (cinfo->master->lossless) {
436
#if BITS_IN_JSAMPLE == 8
437
    if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
438
#else
439
7.74k
    if (cinfo->data_precision > BITS_IN_JSAMPLE ||
440
7.74k
        cinfo->data_precision < BITS_IN_JSAMPLE - 3)
441
0
#endif
442
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
443
7.74k
  } else
444
22.3k
#endif
445
22.3k
  {
446
22.3k
    if (cinfo->data_precision != BITS_IN_JSAMPLE)
447
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
448
22.3k
  }
449
450
30.1k
  main_ptr = (my_main_ptr)
451
30.1k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
452
30.1k
                                sizeof(my_main_controller));
453
30.1k
  memset(main_ptr, 0, sizeof(my_main_controller));
454
30.1k
  cinfo->main = (struct jpeg_d_main_controller *)main_ptr;
455
30.1k
  main_ptr->pub.start_pass = start_pass_main;
456
457
30.1k
  if (need_full_buffer)         /* shouldn't happen */
458
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
459
460
  /* Allocate the workspace.
461
   * ngroups is the number of row groups we need.
462
   */
463
30.1k
  if (cinfo->upsample->need_context_rows) {
464
8.21k
    if (cinfo->_min_DCT_scaled_size < 2) /* unsupported, see comments above */
465
0
      ERREXIT(cinfo, JERR_NOTIMPL);
466
8.21k
    alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */
467
8.21k
    ngroups = cinfo->_min_DCT_scaled_size + 2;
468
21.9k
  } else {
469
21.9k
    ngroups = cinfo->_min_DCT_scaled_size;
470
21.9k
  }
471
472
118k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
473
88.7k
       ci++, compptr++) {
474
88.7k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
475
88.7k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
476
88.7k
    main_ptr->buffer[ci] = (_JSAMPARRAY)(*cinfo->mem->alloc_sarray)
477
88.7k
                        ((j_common_ptr)cinfo, JPOOL_IMAGE,
478
88.7k
                         compptr->width_in_blocks * compptr->_DCT_scaled_size,
479
88.7k
                         (JDIMENSION)(rgroup * ngroups));
480
88.7k
  }
481
30.1k
}
j16init_d_main_controller
Line
Count
Source
429
8.80k
{
430
8.80k
  my_main_ptr main_ptr;
431
8.80k
  int ci, rgroup, ngroups;
432
8.80k
  jpeg_component_info *compptr;
433
434
8.80k
#ifdef D_LOSSLESS_SUPPORTED
435
8.80k
  if (cinfo->master->lossless) {
436
#if BITS_IN_JSAMPLE == 8
437
    if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
438
#else
439
8.80k
    if (cinfo->data_precision > BITS_IN_JSAMPLE ||
440
8.80k
        cinfo->data_precision < BITS_IN_JSAMPLE - 3)
441
0
#endif
442
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
443
8.80k
  } else
444
0
#endif
445
0
  {
446
0
    if (cinfo->data_precision != BITS_IN_JSAMPLE)
447
0
      ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
448
0
  }
449
450
8.80k
  main_ptr = (my_main_ptr)
451
8.80k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
452
8.80k
                                sizeof(my_main_controller));
453
8.80k
  memset(main_ptr, 0, sizeof(my_main_controller));
454
8.80k
  cinfo->main = (struct jpeg_d_main_controller *)main_ptr;
455
8.80k
  main_ptr->pub.start_pass = start_pass_main;
456
457
8.80k
  if (need_full_buffer)         /* shouldn't happen */
458
0
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
459
460
  /* Allocate the workspace.
461
   * ngroups is the number of row groups we need.
462
   */
463
8.80k
  if (cinfo->upsample->need_context_rows) {
464
0
    if (cinfo->_min_DCT_scaled_size < 2) /* unsupported, see comments above */
465
0
      ERREXIT(cinfo, JERR_NOTIMPL);
466
0
    alloc_funny_pointers(cinfo); /* Alloc space for xbuffer[] lists */
467
0
    ngroups = cinfo->_min_DCT_scaled_size + 2;
468
8.80k
  } else {
469
8.80k
    ngroups = cinfo->_min_DCT_scaled_size;
470
8.80k
  }
471
472
44.1k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
473
35.3k
       ci++, compptr++) {
474
35.3k
    rgroup = (compptr->v_samp_factor * compptr->_DCT_scaled_size) /
475
35.3k
      cinfo->_min_DCT_scaled_size; /* height of a row group of component */
476
35.3k
    main_ptr->buffer[ci] = (_JSAMPARRAY)(*cinfo->mem->alloc_sarray)
477
35.3k
                        ((j_common_ptr)cinfo, JPOOL_IMAGE,
478
35.3k
                         compptr->width_in_blocks * compptr->_DCT_scaled_size,
479
35.3k
                         (JDIMENSION)(rgroup * ngroups));
480
35.3k
  }
481
8.80k
}
482
483
#endif /* BITS_IN_JSAMPLE != 16 || defined(D_LOSSLESS_SUPPORTED) */