Coverage Report

Created: 2026-04-12 07:01

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libjpeg-turbo/src/jddiffct.c
Line
Count
Source
1
/*
2
 * jddiffct.c
3
 *
4
 * This file was part of the Independent JPEG Group's software:
5
 * Copyright (C) 1994-1997, Thomas G. Lane.
6
 * Lossless JPEG Modifications:
7
 * Copyright (C) 1999, Ken Murchison.
8
 * libjpeg-turbo Modifications:
9
 * Copyright (C) 2022, 2024, D. R. Commander.
10
 * For conditions of distribution and use, see the accompanying README.ijg
11
 * file.
12
 *
13
 * This file contains the [un]difference buffer controller for decompression.
14
 * This controller is the top level of the lossless JPEG decompressor proper.
15
 * The difference buffer lies between the entropy decoding and
16
 * prediction/undifferencing steps.  The undifference buffer lies between the
17
 * prediction/undifferencing and scaling steps.
18
 *
19
 * In buffered-image mode, this controller is the interface between
20
 * input-oriented processing and output-oriented processing.
21
 */
22
23
#define JPEG_INTERNALS
24
#include "jinclude.h"
25
#include "jpeglib.h"
26
#include "jlossls.h"            /* Private declarations for lossless codec */
27
28
29
#ifdef D_LOSSLESS_SUPPORTED
30
31
/* Private buffer controller object */
32
33
typedef struct {
34
  struct jpeg_d_coef_controller pub; /* public fields */
35
36
  /* These variables keep track of the current location of the input side. */
37
  /* cinfo->input_iMCU_row is also used for this. */
38
  JDIMENSION MCU_ctr;           /* counts MCUs processed in current row */
39
  unsigned int restart_rows_to_go;      /* MCU rows left in this restart
40
                                           interval */
41
  unsigned int MCU_vert_offset;         /* counts MCU rows within iMCU row */
42
  unsigned int MCU_rows_per_iMCU_row;   /* number of such rows needed */
43
44
  /* The output side's location is represented by cinfo->output_iMCU_row. */
45
46
  JDIFFARRAY diff_buf[MAX_COMPONENTS];  /* iMCU row of differences */
47
  JDIFFARRAY undiff_buf[MAX_COMPONENTS]; /* iMCU row of undiff'd samples */
48
49
#ifdef D_MULTISCAN_FILES_SUPPORTED
50
  /* In multi-pass modes, we need a virtual sample array for each component. */
51
  jvirt_sarray_ptr whole_image[MAX_COMPONENTS];
52
#endif
53
} my_diff_controller;
54
55
typedef my_diff_controller *my_diff_ptr;
56
57
/* Forward declarations */
58
METHODDEF(int) decompress_data(j_decompress_ptr cinfo, _JSAMPIMAGE output_buf);
59
#ifdef D_MULTISCAN_FILES_SUPPORTED
60
METHODDEF(int) output_data(j_decompress_ptr cinfo, _JSAMPIMAGE output_buf);
61
#endif
62
63
64
LOCAL(void)
65
start_iMCU_row(j_decompress_ptr cinfo)
66
/* Reset within-iMCU-row counters for a new row (input side) */
67
40.0k
{
68
40.0k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
69
70
  /* In an interleaved scan, an MCU row is the same as an iMCU row.
71
   * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
72
   * But at the bottom of the image, process only what's left.
73
   */
74
40.0k
  if (cinfo->comps_in_scan > 1) {
75
4.45k
    diff->MCU_rows_per_iMCU_row = 1;
76
35.5k
  } else {
77
35.5k
    if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows-1))
78
33.7k
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
79
1.82k
    else
80
1.82k
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
81
35.5k
  }
82
83
40.0k
  diff->MCU_ctr = 0;
84
40.0k
  diff->MCU_vert_offset = 0;
85
40.0k
}
jddiffct-8.c:start_iMCU_row
Line
Count
Source
67
8.15k
{
68
8.15k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
69
70
  /* In an interleaved scan, an MCU row is the same as an iMCU row.
71
   * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
72
   * But at the bottom of the image, process only what's left.
73
   */
74
8.15k
  if (cinfo->comps_in_scan > 1) {
75
4.43k
    diff->MCU_rows_per_iMCU_row = 1;
76
4.43k
  } else {
77
3.72k
    if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows-1))
78
3.15k
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
79
567
    else
80
567
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
81
3.72k
  }
82
83
8.15k
  diff->MCU_ctr = 0;
84
8.15k
  diff->MCU_vert_offset = 0;
85
8.15k
}
jddiffct-12.c:start_iMCU_row
Line
Count
Source
67
10.5k
{
68
10.5k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
69
70
  /* In an interleaved scan, an MCU row is the same as an iMCU row.
71
   * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
72
   * But at the bottom of the image, process only what's left.
73
   */
74
10.5k
  if (cinfo->comps_in_scan > 1) {
75
12
    diff->MCU_rows_per_iMCU_row = 1;
76
10.5k
  } else {
77
10.5k
    if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows-1))
78
9.93k
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
79
644
    else
80
644
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
81
10.5k
  }
82
83
10.5k
  diff->MCU_ctr = 0;
84
10.5k
  diff->MCU_vert_offset = 0;
85
10.5k
}
jddiffct-16.c:start_iMCU_row
Line
Count
Source
67
21.2k
{
68
21.2k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
69
70
  /* In an interleaved scan, an MCU row is the same as an iMCU row.
71
   * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
72
   * But at the bottom of the image, process only what's left.
73
   */
74
21.2k
  if (cinfo->comps_in_scan > 1) {
75
7
    diff->MCU_rows_per_iMCU_row = 1;
76
21.2k
  } else {
77
21.2k
    if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows-1))
78
20.6k
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
79
610
    else
80
610
      diff->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
81
21.2k
  }
82
83
21.2k
  diff->MCU_ctr = 0;
84
21.2k
  diff->MCU_vert_offset = 0;
85
21.2k
}
86
87
88
/*
89
 * Initialize for an input processing pass.
90
 */
91
92
METHODDEF(void)
93
start_input_pass(j_decompress_ptr cinfo)
94
2.90k
{
95
2.90k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
96
97
  /* Because it is hitching a ride on the jpeg_inverse_dct struct,
98
   * start_pass_lossless() will be called at the start of the output pass.
99
   * This ensures that it will be called at the start of the input pass as
100
   * well.
101
   */
102
2.90k
  (*cinfo->idct->start_pass) (cinfo);
103
104
  /* Check that the restart interval is an integer multiple of the number
105
   * of MCUs in an MCU row.
106
   */
107
2.90k
  if (cinfo->restart_interval % cinfo->MCUs_per_row != 0)
108
3
    ERREXIT2(cinfo, JERR_BAD_RESTART,
109
2.90k
             cinfo->restart_interval, cinfo->MCUs_per_row);
110
111
  /* Initialize restart counter */
112
2.90k
  diff->restart_rows_to_go = cinfo->restart_interval / cinfo->MCUs_per_row;
113
114
2.90k
  cinfo->input_iMCU_row = 0;
115
2.90k
  start_iMCU_row(cinfo);
116
2.90k
}
jddiffct-8.c:start_input_pass
Line
Count
Source
94
960
{
95
960
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
96
97
  /* Because it is hitching a ride on the jpeg_inverse_dct struct,
98
   * start_pass_lossless() will be called at the start of the output pass.
99
   * This ensures that it will be called at the start of the input pass as
100
   * well.
101
   */
102
960
  (*cinfo->idct->start_pass) (cinfo);
103
104
  /* Check that the restart interval is an integer multiple of the number
105
   * of MCUs in an MCU row.
106
   */
107
960
  if (cinfo->restart_interval % cinfo->MCUs_per_row != 0)
108
1
    ERREXIT2(cinfo, JERR_BAD_RESTART,
109
960
             cinfo->restart_interval, cinfo->MCUs_per_row);
110
111
  /* Initialize restart counter */
112
960
  diff->restart_rows_to_go = cinfo->restart_interval / cinfo->MCUs_per_row;
113
114
960
  cinfo->input_iMCU_row = 0;
115
960
  start_iMCU_row(cinfo);
116
960
}
jddiffct-12.c:start_input_pass
Line
Count
Source
94
954
{
95
954
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
96
97
  /* Because it is hitching a ride on the jpeg_inverse_dct struct,
98
   * start_pass_lossless() will be called at the start of the output pass.
99
   * This ensures that it will be called at the start of the input pass as
100
   * well.
101
   */
102
954
  (*cinfo->idct->start_pass) (cinfo);
103
104
  /* Check that the restart interval is an integer multiple of the number
105
   * of MCUs in an MCU row.
106
   */
107
954
  if (cinfo->restart_interval % cinfo->MCUs_per_row != 0)
108
1
    ERREXIT2(cinfo, JERR_BAD_RESTART,
109
954
             cinfo->restart_interval, cinfo->MCUs_per_row);
110
111
  /* Initialize restart counter */
112
954
  diff->restart_rows_to_go = cinfo->restart_interval / cinfo->MCUs_per_row;
113
114
954
  cinfo->input_iMCU_row = 0;
115
954
  start_iMCU_row(cinfo);
116
954
}
jddiffct-16.c:start_input_pass
Line
Count
Source
94
987
{
95
987
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
96
97
  /* Because it is hitching a ride on the jpeg_inverse_dct struct,
98
   * start_pass_lossless() will be called at the start of the output pass.
99
   * This ensures that it will be called at the start of the input pass as
100
   * well.
101
   */
102
987
  (*cinfo->idct->start_pass) (cinfo);
103
104
  /* Check that the restart interval is an integer multiple of the number
105
   * of MCUs in an MCU row.
106
   */
107
987
  if (cinfo->restart_interval % cinfo->MCUs_per_row != 0)
108
1
    ERREXIT2(cinfo, JERR_BAD_RESTART,
109
987
             cinfo->restart_interval, cinfo->MCUs_per_row);
110
111
  /* Initialize restart counter */
112
987
  diff->restart_rows_to_go = cinfo->restart_interval / cinfo->MCUs_per_row;
113
114
987
  cinfo->input_iMCU_row = 0;
115
987
  start_iMCU_row(cinfo);
116
987
}
117
118
119
/*
120
 * Check for a restart marker & resynchronize decoder, undifferencer.
121
 * Returns FALSE if must suspend.
122
 */
123
124
METHODDEF(boolean)
125
process_restart(j_decompress_ptr cinfo)
126
1
{
127
1
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
128
129
1
  if (!(*cinfo->entropy->process_restart) (cinfo))
130
0
    return FALSE;
131
132
1
  (*cinfo->idct->start_pass) (cinfo);
133
134
  /* Reset restart counter */
135
1
  diff->restart_rows_to_go = cinfo->restart_interval / cinfo->MCUs_per_row;
136
137
1
  return TRUE;
138
1
}
jddiffct-8.c:process_restart
Line
Count
Source
126
1
{
127
1
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
128
129
1
  if (!(*cinfo->entropy->process_restart) (cinfo))
130
0
    return FALSE;
131
132
1
  (*cinfo->idct->start_pass) (cinfo);
133
134
  /* Reset restart counter */
135
1
  diff->restart_rows_to_go = cinfo->restart_interval / cinfo->MCUs_per_row;
136
137
1
  return TRUE;
138
1
}
Unexecuted instantiation: jddiffct-12.c:process_restart
Unexecuted instantiation: jddiffct-16.c:process_restart
139
140
141
/*
142
 * Initialize for an output processing pass.
143
 */
144
145
METHODDEF(void)
146
start_output_pass(j_decompress_ptr cinfo)
147
328
{
148
328
  cinfo->output_iMCU_row = 0;
149
328
}
jddiffct-8.c:start_output_pass
Line
Count
Source
147
308
{
148
308
  cinfo->output_iMCU_row = 0;
149
308
}
jddiffct-12.c:start_output_pass
Line
Count
Source
147
13
{
148
13
  cinfo->output_iMCU_row = 0;
149
13
}
jddiffct-16.c:start_output_pass
Line
Count
Source
147
7
{
148
7
  cinfo->output_iMCU_row = 0;
149
7
}
150
151
152
/*
153
 * Decompress and return some data in the supplied buffer.
154
 * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
155
 * Input and output must run in lockstep since we have only a one-MCU buffer.
156
 * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
157
 *
158
 * NB: output_buf contains a plane for each component in image,
159
 * which we index according to the component's SOF position.
160
 */
161
162
METHODDEF(int)
163
decompress_data(j_decompress_ptr cinfo, _JSAMPIMAGE output_buf)
164
40.0k
{
165
40.0k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
166
40.0k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
167
40.0k
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
168
40.0k
  JDIMENSION MCU_count;         /* number of MCUs decoded */
169
40.0k
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
170
40.0k
  int ci, compi, row, prev_row;
171
40.0k
  unsigned int yoffset;
172
40.0k
  jpeg_component_info *compptr;
173
174
  /* Loop to process as much as one whole iMCU row */
175
88.7k
  for (yoffset = diff->MCU_vert_offset; yoffset < diff->MCU_rows_per_iMCU_row;
176
48.7k
       yoffset++) {
177
178
    /* Process restart marker if needed; may have to suspend */
179
48.7k
    if (cinfo->restart_interval) {
180
487
      if (diff->restart_rows_to_go == 0)
181
1
        if (!process_restart(cinfo))
182
0
          return JPEG_SUSPENDED;
183
487
    }
184
185
48.7k
    MCU_col_num = diff->MCU_ctr;
186
    /* Try to fetch an MCU row (or remaining portion of suspended MCU row). */
187
48.7k
    MCU_count =
188
48.7k
      (*cinfo->entropy->decode_mcus) (cinfo,
189
48.7k
                                      diff->diff_buf, yoffset, MCU_col_num,
190
48.7k
                                      cinfo->MCUs_per_row - MCU_col_num);
191
48.7k
    if (MCU_count != cinfo->MCUs_per_row - MCU_col_num) {
192
      /* Suspension forced; update state counters and exit */
193
0
      diff->MCU_vert_offset = yoffset;
194
0
      diff->MCU_ctr += MCU_count;
195
0
      return JPEG_SUSPENDED;
196
0
    }
197
198
    /* Account for restart interval (no-op if not using restarts) */
199
48.7k
    if (cinfo->restart_interval)
200
472
      diff->restart_rows_to_go--;
201
202
    /* Completed an MCU row, but perhaps not an iMCU row */
203
48.7k
    diff->MCU_ctr = 0;
204
48.7k
  }
205
206
  /*
207
   * Undifference and scale each scanline of the disassembled MCU row
208
   * separately.  We do not process dummy samples at the end of a scanline
209
   * or dummy rows at the end of the image.
210
   */
211
87.4k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
212
47.3k
    compptr = cinfo->cur_comp_info[ci];
213
47.3k
    compi = compptr->component_index;
214
47.3k
    for (row = 0, prev_row = compptr->v_samp_factor - 1;
215
110k
         row < (cinfo->input_iMCU_row == last_iMCU_row ?
216
105k
                compptr->last_row_height : compptr->v_samp_factor);
217
62.8k
         prev_row = row, row++) {
218
62.8k
      (*losslessd->predict_undifference[compi])
219
62.8k
        (cinfo, compi, diff->diff_buf[compi][row],
220
62.8k
          diff->undiff_buf[compi][prev_row], diff->undiff_buf[compi][row],
221
62.8k
          compptr->width_in_blocks);
222
62.8k
      (*losslessd->scaler_scale) (cinfo, diff->undiff_buf[compi][row],
223
62.8k
                                  output_buf[compi][row],
224
62.8k
                                  compptr->width_in_blocks);
225
62.8k
    }
226
47.3k
  }
227
228
  /* Completed the iMCU row, advance counters for next one.
229
   *
230
   * NB: output_data will increment output_iMCU_row.
231
   * This counter is not needed for the single-pass case
232
   * or the input side of the multi-pass case.
233
   */
234
40.0k
  if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
235
37.2k
    start_iMCU_row(cinfo);
236
37.2k
    return JPEG_ROW_COMPLETED;
237
37.2k
  }
238
  /* Completed the scan */
239
2.75k
  (*cinfo->inputctl->finish_input_pass) (cinfo);
240
2.75k
  return JPEG_SCAN_COMPLETED;
241
40.0k
}
jddiffct-8.c:decompress_data
Line
Count
Source
164
8.14k
{
165
8.14k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
166
8.14k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
167
8.14k
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
168
8.14k
  JDIMENSION MCU_count;         /* number of MCUs decoded */
169
8.14k
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
170
8.14k
  int ci, compi, row, prev_row;
171
8.14k
  unsigned int yoffset;
172
8.14k
  jpeg_component_info *compptr;
173
174
  /* Loop to process as much as one whole iMCU row */
175
17.9k
  for (yoffset = diff->MCU_vert_offset; yoffset < diff->MCU_rows_per_iMCU_row;
176
9.75k
       yoffset++) {
177
178
    /* Process restart marker if needed; may have to suspend */
179
9.75k
    if (cinfo->restart_interval) {
180
487
      if (diff->restart_rows_to_go == 0)
181
1
        if (!process_restart(cinfo))
182
0
          return JPEG_SUSPENDED;
183
487
    }
184
185
9.75k
    MCU_col_num = diff->MCU_ctr;
186
    /* Try to fetch an MCU row (or remaining portion of suspended MCU row). */
187
9.75k
    MCU_count =
188
9.75k
      (*cinfo->entropy->decode_mcus) (cinfo,
189
9.75k
                                      diff->diff_buf, yoffset, MCU_col_num,
190
9.75k
                                      cinfo->MCUs_per_row - MCU_col_num);
191
9.75k
    if (MCU_count != cinfo->MCUs_per_row - MCU_col_num) {
192
      /* Suspension forced; update state counters and exit */
193
0
      diff->MCU_vert_offset = yoffset;
194
0
      diff->MCU_ctr += MCU_count;
195
0
      return JPEG_SUSPENDED;
196
0
    }
197
198
    /* Account for restart interval (no-op if not using restarts) */
199
9.75k
    if (cinfo->restart_interval)
200
472
      diff->restart_rows_to_go--;
201
202
    /* Completed an MCU row, but perhaps not an iMCU row */
203
9.75k
    diff->MCU_ctr = 0;
204
9.75k
  }
205
206
  /*
207
   * Undifference and scale each scanline of the disassembled MCU row
208
   * separately.  We do not process dummy samples at the end of a scanline
209
   * or dummy rows at the end of the image.
210
   */
211
24.2k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
212
16.1k
    compptr = cinfo->cur_comp_info[ci];
213
16.1k
    compi = compptr->component_index;
214
16.1k
    for (row = 0, prev_row = compptr->v_samp_factor - 1;
215
40.6k
         row < (cinfo->input_iMCU_row == last_iMCU_row ?
216
39.2k
                compptr->last_row_height : compptr->v_samp_factor);
217
24.5k
         prev_row = row, row++) {
218
24.5k
      (*losslessd->predict_undifference[compi])
219
24.5k
        (cinfo, compi, diff->diff_buf[compi][row],
220
24.5k
          diff->undiff_buf[compi][prev_row], diff->undiff_buf[compi][row],
221
24.5k
          compptr->width_in_blocks);
222
24.5k
      (*losslessd->scaler_scale) (cinfo, diff->undiff_buf[compi][row],
223
24.5k
                                  output_buf[compi][row],
224
24.5k
                                  compptr->width_in_blocks);
225
24.5k
    }
226
16.1k
  }
227
228
  /* Completed the iMCU row, advance counters for next one.
229
   *
230
   * NB: output_data will increment output_iMCU_row.
231
   * This counter is not needed for the single-pass case
232
   * or the input side of the multi-pass case.
233
   */
234
8.14k
  if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
235
7.23k
    start_iMCU_row(cinfo);
236
7.23k
    return JPEG_ROW_COMPLETED;
237
7.23k
  }
238
  /* Completed the scan */
239
919
  (*cinfo->inputctl->finish_input_pass) (cinfo);
240
919
  return JPEG_SCAN_COMPLETED;
241
8.14k
}
jddiffct-12.c:decompress_data
Line
Count
Source
164
10.5k
{
165
10.5k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
166
10.5k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
167
10.5k
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
168
10.5k
  JDIMENSION MCU_count;         /* number of MCUs decoded */
169
10.5k
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
170
10.5k
  int ci, compi, row, prev_row;
171
10.5k
  unsigned int yoffset;
172
10.5k
  jpeg_component_info *compptr;
173
174
  /* Loop to process as much as one whole iMCU row */
175
24.8k
  for (yoffset = diff->MCU_vert_offset; yoffset < diff->MCU_rows_per_iMCU_row;
176
14.2k
       yoffset++) {
177
178
    /* Process restart marker if needed; may have to suspend */
179
14.2k
    if (cinfo->restart_interval) {
180
0
      if (diff->restart_rows_to_go == 0)
181
0
        if (!process_restart(cinfo))
182
0
          return JPEG_SUSPENDED;
183
0
    }
184
185
14.2k
    MCU_col_num = diff->MCU_ctr;
186
    /* Try to fetch an MCU row (or remaining portion of suspended MCU row). */
187
14.2k
    MCU_count =
188
14.2k
      (*cinfo->entropy->decode_mcus) (cinfo,
189
14.2k
                                      diff->diff_buf, yoffset, MCU_col_num,
190
14.2k
                                      cinfo->MCUs_per_row - MCU_col_num);
191
14.2k
    if (MCU_count != cinfo->MCUs_per_row - MCU_col_num) {
192
      /* Suspension forced; update state counters and exit */
193
0
      diff->MCU_vert_offset = yoffset;
194
0
      diff->MCU_ctr += MCU_count;
195
0
      return JPEG_SUSPENDED;
196
0
    }
197
198
    /* Account for restart interval (no-op if not using restarts) */
199
14.2k
    if (cinfo->restart_interval)
200
0
      diff->restart_rows_to_go--;
201
202
    /* Completed an MCU row, but perhaps not an iMCU row */
203
14.2k
    diff->MCU_ctr = 0;
204
14.2k
  }
205
206
  /*
207
   * Undifference and scale each scanline of the disassembled MCU row
208
   * separately.  We do not process dummy samples at the end of a scanline
209
   * or dummy rows at the end of the image.
210
   */
211
20.8k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
212
10.3k
    compptr = cinfo->cur_comp_info[ci];
213
10.3k
    compi = compptr->component_index;
214
10.3k
    for (row = 0, prev_row = compptr->v_samp_factor - 1;
215
24.2k
         row < (cinfo->input_iMCU_row == last_iMCU_row ?
216
22.8k
                compptr->last_row_height : compptr->v_samp_factor);
217
13.9k
         prev_row = row, row++) {
218
13.9k
      (*losslessd->predict_undifference[compi])
219
13.9k
        (cinfo, compi, diff->diff_buf[compi][row],
220
13.9k
          diff->undiff_buf[compi][prev_row], diff->undiff_buf[compi][row],
221
13.9k
          compptr->width_in_blocks);
222
13.9k
      (*losslessd->scaler_scale) (cinfo, diff->undiff_buf[compi][row],
223
13.9k
                                  output_buf[compi][row],
224
13.9k
                                  compptr->width_in_blocks);
225
13.9k
    }
226
10.3k
  }
227
228
  /* Completed the iMCU row, advance counters for next one.
229
   *
230
   * NB: output_data will increment output_iMCU_row.
231
   * This counter is not needed for the single-pass case
232
   * or the input side of the multi-pass case.
233
   */
234
10.5k
  if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
235
9.66k
    start_iMCU_row(cinfo);
236
9.66k
    return JPEG_ROW_COMPLETED;
237
9.66k
  }
238
  /* Completed the scan */
239
913
  (*cinfo->inputctl->finish_input_pass) (cinfo);
240
913
  return JPEG_SCAN_COMPLETED;
241
10.5k
}
jddiffct-16.c:decompress_data
Line
Count
Source
164
21.2k
{
165
21.2k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
166
21.2k
  lossless_decomp_ptr losslessd = (lossless_decomp_ptr)cinfo->idct;
167
21.2k
  JDIMENSION MCU_col_num;       /* index of current MCU within row */
168
21.2k
  JDIMENSION MCU_count;         /* number of MCUs decoded */
169
21.2k
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
170
21.2k
  int ci, compi, row, prev_row;
171
21.2k
  unsigned int yoffset;
172
21.2k
  jpeg_component_info *compptr;
173
174
  /* Loop to process as much as one whole iMCU row */
175
46.0k
  for (yoffset = diff->MCU_vert_offset; yoffset < diff->MCU_rows_per_iMCU_row;
176
24.7k
       yoffset++) {
177
178
    /* Process restart marker if needed; may have to suspend */
179
24.7k
    if (cinfo->restart_interval) {
180
0
      if (diff->restart_rows_to_go == 0)
181
0
        if (!process_restart(cinfo))
182
0
          return JPEG_SUSPENDED;
183
0
    }
184
185
24.7k
    MCU_col_num = diff->MCU_ctr;
186
    /* Try to fetch an MCU row (or remaining portion of suspended MCU row). */
187
24.7k
    MCU_count =
188
24.7k
      (*cinfo->entropy->decode_mcus) (cinfo,
189
24.7k
                                      diff->diff_buf, yoffset, MCU_col_num,
190
24.7k
                                      cinfo->MCUs_per_row - MCU_col_num);
191
24.7k
    if (MCU_count != cinfo->MCUs_per_row - MCU_col_num) {
192
      /* Suspension forced; update state counters and exit */
193
0
      diff->MCU_vert_offset = yoffset;
194
0
      diff->MCU_ctr += MCU_count;
195
0
      return JPEG_SUSPENDED;
196
0
    }
197
198
    /* Account for restart interval (no-op if not using restarts) */
199
24.7k
    if (cinfo->restart_interval)
200
0
      diff->restart_rows_to_go--;
201
202
    /* Completed an MCU row, but perhaps not an iMCU row */
203
24.7k
    diff->MCU_ctr = 0;
204
24.7k
  }
205
206
  /*
207
   * Undifference and scale each scanline of the disassembled MCU row
208
   * separately.  We do not process dummy samples at the end of a scanline
209
   * or dummy rows at the end of the image.
210
   */
211
42.2k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
212
20.9k
    compptr = cinfo->cur_comp_info[ci];
213
20.9k
    compi = compptr->component_index;
214
20.9k
    for (row = 0, prev_row = compptr->v_samp_factor - 1;
215
45.3k
         row < (cinfo->input_iMCU_row == last_iMCU_row ?
216
43.7k
                compptr->last_row_height : compptr->v_samp_factor);
217
24.4k
         prev_row = row, row++) {
218
24.4k
      (*losslessd->predict_undifference[compi])
219
24.4k
        (cinfo, compi, diff->diff_buf[compi][row],
220
24.4k
          diff->undiff_buf[compi][prev_row], diff->undiff_buf[compi][row],
221
24.4k
          compptr->width_in_blocks);
222
24.4k
      (*losslessd->scaler_scale) (cinfo, diff->undiff_buf[compi][row],
223
24.4k
                                  output_buf[compi][row],
224
24.4k
                                  compptr->width_in_blocks);
225
24.4k
    }
226
20.9k
  }
227
228
  /* Completed the iMCU row, advance counters for next one.
229
   *
230
   * NB: output_data will increment output_iMCU_row.
231
   * This counter is not needed for the single-pass case
232
   * or the input side of the multi-pass case.
233
   */
234
21.2k
  if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
235
20.3k
    start_iMCU_row(cinfo);
236
20.3k
    return JPEG_ROW_COMPLETED;
237
20.3k
  }
238
  /* Completed the scan */
239
925
  (*cinfo->inputctl->finish_input_pass) (cinfo);
240
925
  return JPEG_SCAN_COMPLETED;
241
21.2k
}
242
243
244
/*
245
 * Dummy consume-input routine for single-pass operation.
246
 */
247
248
METHODDEF(int)
249
dummy_consume_data(j_decompress_ptr cinfo)
250
0
{
251
0
  return JPEG_SUSPENDED;        /* Always indicate nothing was done */
252
0
}
Unexecuted instantiation: jddiffct-8.c:dummy_consume_data
Unexecuted instantiation: jddiffct-12.c:dummy_consume_data
Unexecuted instantiation: jddiffct-16.c:dummy_consume_data
253
254
255
#ifdef D_MULTISCAN_FILES_SUPPORTED
256
257
/*
258
 * Consume input data and store it in the full-image sample buffer.
259
 * We read as much as one fully interleaved MCU row ("iMCU" row) per call,
260
 * ie, v_samp_factor rows for each component in the scan.
261
 * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
262
 */
263
264
METHODDEF(int)
265
consume_data(j_decompress_ptr cinfo)
266
34.8k
{
267
34.8k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
268
34.8k
  int ci, compi;
269
34.8k
  _JSAMPARRAY buffer[MAX_COMPS_IN_SCAN];
270
34.8k
  jpeg_component_info *compptr;
271
272
  /* Align the virtual buffers for the components used in this scan. */
273
69.6k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
274
34.8k
    compptr = cinfo->cur_comp_info[ci];
275
34.8k
    compi = compptr->component_index;
276
34.8k
    buffer[compi] = (_JSAMPARRAY)(*cinfo->mem->access_virt_sarray)
277
34.8k
      ((j_common_ptr)cinfo, diff->whole_image[compi],
278
34.8k
       cinfo->input_iMCU_row * compptr->v_samp_factor,
279
34.8k
       (JDIMENSION)compptr->v_samp_factor, TRUE);
280
34.8k
  }
281
282
34.8k
  return decompress_data(cinfo, buffer);
283
34.8k
}
jddiffct-8.c:consume_data
Line
Count
Source
266
2.94k
{
267
2.94k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
268
2.94k
  int ci, compi;
269
2.94k
  _JSAMPARRAY buffer[MAX_COMPS_IN_SCAN];
270
2.94k
  jpeg_component_info *compptr;
271
272
  /* Align the virtual buffers for the components used in this scan. */
273
5.89k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
274
2.94k
    compptr = cinfo->cur_comp_info[ci];
275
2.94k
    compi = compptr->component_index;
276
2.94k
    buffer[compi] = (_JSAMPARRAY)(*cinfo->mem->access_virt_sarray)
277
2.94k
      ((j_common_ptr)cinfo, diff->whole_image[compi],
278
2.94k
       cinfo->input_iMCU_row * compptr->v_samp_factor,
279
2.94k
       (JDIMENSION)compptr->v_samp_factor, TRUE);
280
2.94k
  }
281
282
2.94k
  return decompress_data(cinfo, buffer);
283
2.94k
}
jddiffct-12.c:consume_data
Line
Count
Source
266
10.5k
{
267
10.5k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
268
10.5k
  int ci, compi;
269
10.5k
  _JSAMPARRAY buffer[MAX_COMPS_IN_SCAN];
270
10.5k
  jpeg_component_info *compptr;
271
272
  /* Align the virtual buffers for the components used in this scan. */
273
21.1k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
274
10.5k
    compptr = cinfo->cur_comp_info[ci];
275
10.5k
    compi = compptr->component_index;
276
10.5k
    buffer[compi] = (_JSAMPARRAY)(*cinfo->mem->access_virt_sarray)
277
10.5k
      ((j_common_ptr)cinfo, diff->whole_image[compi],
278
10.5k
       cinfo->input_iMCU_row * compptr->v_samp_factor,
279
10.5k
       (JDIMENSION)compptr->v_samp_factor, TRUE);
280
10.5k
  }
281
282
10.5k
  return decompress_data(cinfo, buffer);
283
10.5k
}
jddiffct-16.c:consume_data
Line
Count
Source
266
21.2k
{
267
21.2k
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
268
21.2k
  int ci, compi;
269
21.2k
  _JSAMPARRAY buffer[MAX_COMPS_IN_SCAN];
270
21.2k
  jpeg_component_info *compptr;
271
272
  /* Align the virtual buffers for the components used in this scan. */
273
42.5k
  for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
274
21.2k
    compptr = cinfo->cur_comp_info[ci];
275
21.2k
    compi = compptr->component_index;
276
21.2k
    buffer[compi] = (_JSAMPARRAY)(*cinfo->mem->access_virt_sarray)
277
21.2k
      ((j_common_ptr)cinfo, diff->whole_image[compi],
278
21.2k
       cinfo->input_iMCU_row * compptr->v_samp_factor,
279
21.2k
       (JDIMENSION)compptr->v_samp_factor, TRUE);
280
21.2k
  }
281
282
21.2k
  return decompress_data(cinfo, buffer);
283
21.2k
}
284
285
286
/*
287
 * Output some data from the full-image sample buffer in the multi-pass case.
288
 * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
289
 * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
290
 *
291
 * NB: output_buf contains a plane for each component in image.
292
 */
293
294
METHODDEF(int)
295
output_data(j_decompress_ptr cinfo, _JSAMPIMAGE output_buf)
296
1
{
297
1
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
298
1
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
299
1
  int ci, samp_rows, row;
300
1
  _JSAMPARRAY buffer;
301
1
  jpeg_component_info *compptr;
302
303
  /* Force some input to be done if we are getting ahead of the input. */
304
1
  while (cinfo->input_scan_number < cinfo->output_scan_number ||
305
1
         (cinfo->input_scan_number == cinfo->output_scan_number &&
306
1
          cinfo->input_iMCU_row <= cinfo->output_iMCU_row)) {
307
0
    if ((*cinfo->inputctl->consume_input) (cinfo) == JPEG_SUSPENDED)
308
0
      return JPEG_SUSPENDED;
309
0
  }
310
311
  /* OK, output from the virtual arrays. */
312
3
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
313
2
       ci++, compptr++) {
314
    /* Align the virtual buffer for this component. */
315
2
    buffer = (_JSAMPARRAY)(*cinfo->mem->access_virt_sarray)
316
2
      ((j_common_ptr)cinfo, diff->whole_image[ci],
317
2
       cinfo->output_iMCU_row * compptr->v_samp_factor,
318
2
       (JDIMENSION)compptr->v_samp_factor, FALSE);
319
320
2
    if (cinfo->output_iMCU_row < last_iMCU_row)
321
1
      samp_rows = compptr->v_samp_factor;
322
1
    else {
323
      /* NB: can't use last_row_height here; it is input-side-dependent! */
324
1
      samp_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
325
1
      if (samp_rows == 0) samp_rows = compptr->v_samp_factor;
326
1
    }
327
328
3
    for (row = 0; row < samp_rows; row++) {
329
1
      memcpy(output_buf[ci][row], buffer[row],
330
1
             compptr->width_in_blocks * sizeof(_JSAMPLE));
331
1
    }
332
2
  }
333
334
1
  if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
335
0
    return JPEG_ROW_COMPLETED;
336
1
  return JPEG_SCAN_COMPLETED;
337
1
}
jddiffct-8.c:output_data
Line
Count
Source
296
1
{
297
1
  my_diff_ptr diff = (my_diff_ptr)cinfo->coef;
298
1
  JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
299
1
  int ci, samp_rows, row;
300
1
  _JSAMPARRAY buffer;
301
1
  jpeg_component_info *compptr;
302
303
  /* Force some input to be done if we are getting ahead of the input. */
304
1
  while (cinfo->input_scan_number < cinfo->output_scan_number ||
305
1
         (cinfo->input_scan_number == cinfo->output_scan_number &&
306
1
          cinfo->input_iMCU_row <= cinfo->output_iMCU_row)) {
307
0
    if ((*cinfo->inputctl->consume_input) (cinfo) == JPEG_SUSPENDED)
308
0
      return JPEG_SUSPENDED;
309
0
  }
310
311
  /* OK, output from the virtual arrays. */
312
3
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
313
2
       ci++, compptr++) {
314
    /* Align the virtual buffer for this component. */
315
2
    buffer = (_JSAMPARRAY)(*cinfo->mem->access_virt_sarray)
316
2
      ((j_common_ptr)cinfo, diff->whole_image[ci],
317
2
       cinfo->output_iMCU_row * compptr->v_samp_factor,
318
2
       (JDIMENSION)compptr->v_samp_factor, FALSE);
319
320
2
    if (cinfo->output_iMCU_row < last_iMCU_row)
321
1
      samp_rows = compptr->v_samp_factor;
322
1
    else {
323
      /* NB: can't use last_row_height here; it is input-side-dependent! */
324
1
      samp_rows = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
325
1
      if (samp_rows == 0) samp_rows = compptr->v_samp_factor;
326
1
    }
327
328
3
    for (row = 0; row < samp_rows; row++) {
329
1
      memcpy(output_buf[ci][row], buffer[row],
330
1
             compptr->width_in_blocks * sizeof(_JSAMPLE));
331
1
    }
332
2
  }
333
334
1
  if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
335
0
    return JPEG_ROW_COMPLETED;
336
1
  return JPEG_SCAN_COMPLETED;
337
1
}
Unexecuted instantiation: jddiffct-12.c:output_data
Unexecuted instantiation: jddiffct-16.c:output_data
338
339
#endif /* D_MULTISCAN_FILES_SUPPORTED */
340
341
342
/*
343
 * Initialize difference buffer controller.
344
 */
345
346
GLOBAL(void)
347
_jinit_d_diff_controller(j_decompress_ptr cinfo, boolean need_full_buffer)
348
1.20k
{
349
1.20k
  my_diff_ptr diff;
350
1.20k
  int ci;
351
1.20k
  jpeg_component_info *compptr;
352
353
#if BITS_IN_JSAMPLE == 8
354
431
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
355
#else
356
771
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
357
771
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
358
0
#endif
359
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
360
361
1.20k
  diff = (my_diff_ptr)
362
1.20k
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
363
1.20k
                                sizeof(my_diff_controller));
364
1.20k
  cinfo->coef = (struct jpeg_d_coef_controller *)diff;
365
1.20k
  diff->pub.start_input_pass = start_input_pass;
366
1.20k
  diff->pub.start_output_pass = start_output_pass;
367
368
  /* Create the [un]difference buffers. */
369
4.77k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
370
3.56k
       ci++, compptr++) {
371
3.56k
    diff->diff_buf[ci] =
372
3.56k
      ALLOC_DARRAY(JPOOL_IMAGE,
373
3.56k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
374
3.56k
                                         (long)compptr->h_samp_factor),
375
3.56k
                   (JDIMENSION)compptr->v_samp_factor);
376
3.56k
    diff->undiff_buf[ci] =
377
3.56k
      ALLOC_DARRAY(JPOOL_IMAGE,
378
3.56k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
379
3.56k
                                         (long)compptr->h_samp_factor),
380
3.56k
                   (JDIMENSION)compptr->v_samp_factor);
381
3.56k
  }
382
383
1.20k
  if (need_full_buffer) {
384
824
#ifdef D_MULTISCAN_FILES_SUPPORTED
385
    /* Allocate a full-image virtual array for each component. */
386
824
    int access_rows;
387
388
3.29k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
389
2.47k
         ci++, compptr++) {
390
2.47k
      access_rows = compptr->v_samp_factor;
391
2.47k
      diff->whole_image[ci] = (*cinfo->mem->request_virt_sarray)
392
2.47k
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
393
2.47k
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
394
2.47k
                               (long)compptr->h_samp_factor),
395
2.47k
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
396
2.47k
                               (long)compptr->v_samp_factor),
397
2.47k
         (JDIMENSION)access_rows);
398
2.47k
    }
399
824
    diff->pub.consume_data = consume_data;
400
824
    diff->pub._decompress_data = output_data;
401
#else
402
    ERREXIT(cinfo, JERR_NOT_COMPILED);
403
#endif
404
824
  } else {
405
378
    diff->pub.consume_data = dummy_consume_data;
406
378
    diff->pub._decompress_data = decompress_data;
407
    diff->whole_image[0] = NULL; /* flag for no virtual arrays */
408
378
  }
409
1.20k
}
jinit_d_diff_controller
Line
Count
Source
348
431
{
349
431
  my_diff_ptr diff;
350
431
  int ci;
351
431
  jpeg_component_info *compptr;
352
353
431
#if BITS_IN_JSAMPLE == 8
354
431
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
355
#else
356
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
357
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
358
#endif
359
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
360
361
431
  diff = (my_diff_ptr)
362
431
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
363
431
                                sizeof(my_diff_controller));
364
431
  cinfo->coef = (struct jpeg_d_coef_controller *)diff;
365
431
  diff->pub.start_input_pass = start_input_pass;
366
431
  diff->pub.start_output_pass = start_output_pass;
367
368
  /* Create the [un]difference buffers. */
369
1.68k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
370
1.25k
       ci++, compptr++) {
371
1.25k
    diff->diff_buf[ci] =
372
1.25k
      ALLOC_DARRAY(JPOOL_IMAGE,
373
1.25k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
374
1.25k
                                         (long)compptr->h_samp_factor),
375
1.25k
                   (JDIMENSION)compptr->v_samp_factor);
376
1.25k
    diff->undiff_buf[ci] =
377
1.25k
      ALLOC_DARRAY(JPOOL_IMAGE,
378
1.25k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
379
1.25k
                                         (long)compptr->h_samp_factor),
380
1.25k
                   (JDIMENSION)compptr->v_samp_factor);
381
1.25k
  }
382
383
431
  if (need_full_buffer) {
384
92
#ifdef D_MULTISCAN_FILES_SUPPORTED
385
    /* Allocate a full-image virtual array for each component. */
386
92
    int access_rows;
387
388
368
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
389
276
         ci++, compptr++) {
390
276
      access_rows = compptr->v_samp_factor;
391
276
      diff->whole_image[ci] = (*cinfo->mem->request_virt_sarray)
392
276
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
393
276
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
394
276
                               (long)compptr->h_samp_factor),
395
276
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
396
276
                               (long)compptr->v_samp_factor),
397
276
         (JDIMENSION)access_rows);
398
276
    }
399
92
    diff->pub.consume_data = consume_data;
400
92
    diff->pub._decompress_data = output_data;
401
#else
402
    ERREXIT(cinfo, JERR_NOT_COMPILED);
403
#endif
404
339
  } else {
405
339
    diff->pub.consume_data = dummy_consume_data;
406
339
    diff->pub._decompress_data = decompress_data;
407
    diff->whole_image[0] = NULL; /* flag for no virtual arrays */
408
339
  }
409
431
}
j12init_d_diff_controller
Line
Count
Source
348
355
{
349
355
  my_diff_ptr diff;
350
355
  int ci;
351
355
  jpeg_component_info *compptr;
352
353
#if BITS_IN_JSAMPLE == 8
354
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
355
#else
356
355
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
357
355
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
358
0
#endif
359
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
360
361
355
  diff = (my_diff_ptr)
362
355
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
363
355
                                sizeof(my_diff_controller));
364
355
  cinfo->coef = (struct jpeg_d_coef_controller *)diff;
365
355
  diff->pub.start_input_pass = start_input_pass;
366
355
  diff->pub.start_output_pass = start_output_pass;
367
368
  /* Create the [un]difference buffers. */
369
1.41k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
370
1.06k
       ci++, compptr++) {
371
1.06k
    diff->diff_buf[ci] =
372
1.06k
      ALLOC_DARRAY(JPOOL_IMAGE,
373
1.06k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
374
1.06k
                                         (long)compptr->h_samp_factor),
375
1.06k
                   (JDIMENSION)compptr->v_samp_factor);
376
1.06k
    diff->undiff_buf[ci] =
377
1.06k
      ALLOC_DARRAY(JPOOL_IMAGE,
378
1.06k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
379
1.06k
                                         (long)compptr->h_samp_factor),
380
1.06k
                   (JDIMENSION)compptr->v_samp_factor);
381
1.06k
  }
382
383
355
  if (need_full_buffer) {
384
332
#ifdef D_MULTISCAN_FILES_SUPPORTED
385
    /* Allocate a full-image virtual array for each component. */
386
332
    int access_rows;
387
388
1.32k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
389
996
         ci++, compptr++) {
390
996
      access_rows = compptr->v_samp_factor;
391
996
      diff->whole_image[ci] = (*cinfo->mem->request_virt_sarray)
392
996
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
393
996
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
394
996
                               (long)compptr->h_samp_factor),
395
996
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
396
996
                               (long)compptr->v_samp_factor),
397
996
         (JDIMENSION)access_rows);
398
996
    }
399
332
    diff->pub.consume_data = consume_data;
400
332
    diff->pub._decompress_data = output_data;
401
#else
402
    ERREXIT(cinfo, JERR_NOT_COMPILED);
403
#endif
404
332
  } else {
405
23
    diff->pub.consume_data = dummy_consume_data;
406
23
    diff->pub._decompress_data = decompress_data;
407
    diff->whole_image[0] = NULL; /* flag for no virtual arrays */
408
23
  }
409
355
}
j16init_d_diff_controller
Line
Count
Source
348
416
{
349
416
  my_diff_ptr diff;
350
416
  int ci;
351
416
  jpeg_component_info *compptr;
352
353
#if BITS_IN_JSAMPLE == 8
354
  if (cinfo->data_precision > BITS_IN_JSAMPLE || cinfo->data_precision < 2)
355
#else
356
416
  if (cinfo->data_precision > BITS_IN_JSAMPLE ||
357
416
      cinfo->data_precision < BITS_IN_JSAMPLE - 3)
358
0
#endif
359
0
    ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
360
361
416
  diff = (my_diff_ptr)
362
416
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
363
416
                                sizeof(my_diff_controller));
364
416
  cinfo->coef = (struct jpeg_d_coef_controller *)diff;
365
416
  diff->pub.start_input_pass = start_input_pass;
366
416
  diff->pub.start_output_pass = start_output_pass;
367
368
  /* Create the [un]difference buffers. */
369
1.66k
  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
370
1.24k
       ci++, compptr++) {
371
1.24k
    diff->diff_buf[ci] =
372
1.24k
      ALLOC_DARRAY(JPOOL_IMAGE,
373
1.24k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
374
1.24k
                                         (long)compptr->h_samp_factor),
375
1.24k
                   (JDIMENSION)compptr->v_samp_factor);
376
1.24k
    diff->undiff_buf[ci] =
377
1.24k
      ALLOC_DARRAY(JPOOL_IMAGE,
378
1.24k
                   (JDIMENSION)jround_up((long)compptr->width_in_blocks,
379
1.24k
                                         (long)compptr->h_samp_factor),
380
1.24k
                   (JDIMENSION)compptr->v_samp_factor);
381
1.24k
  }
382
383
416
  if (need_full_buffer) {
384
400
#ifdef D_MULTISCAN_FILES_SUPPORTED
385
    /* Allocate a full-image virtual array for each component. */
386
400
    int access_rows;
387
388
1.60k
    for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
389
1.20k
         ci++, compptr++) {
390
1.20k
      access_rows = compptr->v_samp_factor;
391
1.20k
      diff->whole_image[ci] = (*cinfo->mem->request_virt_sarray)
392
1.20k
        ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
393
1.20k
         (JDIMENSION)jround_up((long)compptr->width_in_blocks,
394
1.20k
                               (long)compptr->h_samp_factor),
395
1.20k
         (JDIMENSION)jround_up((long)compptr->height_in_blocks,
396
1.20k
                               (long)compptr->v_samp_factor),
397
1.20k
         (JDIMENSION)access_rows);
398
1.20k
    }
399
400
    diff->pub.consume_data = consume_data;
400
400
    diff->pub._decompress_data = output_data;
401
#else
402
    ERREXIT(cinfo, JERR_NOT_COMPILED);
403
#endif
404
400
  } else {
405
16
    diff->pub.consume_data = dummy_consume_data;
406
16
    diff->pub._decompress_data = decompress_data;
407
    diff->whole_image[0] = NULL; /* flag for no virtual arrays */
408
16
  }
409
416
}
410
411
#endif /* D_LOSSLESS_SUPPORTED */