Coverage Report

Created: 2023-06-07 06:03

/src/libjpeg-turbo.2.0.x/wrbmp.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * wrbmp.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) 2013, Linaro Limited.
8
 * Copyright (C) 2014-2015, 2017, 2019, D. R. Commander.
9
 * For conditions of distribution and use, see the accompanying README.ijg
10
 * file.
11
 *
12
 * This file contains routines to write output images in Microsoft "BMP"
13
 * format (MS Windows 3.x and OS/2 1.x flavors).
14
 * Either 8-bit colormapped or 24-bit full-color format can be written.
15
 * No compression is supported.
16
 *
17
 * These routines may need modification for non-Unix environments or
18
 * specialized applications.  As they stand, they assume output to
19
 * an ordinary stdio stream.
20
 *
21
 * This code contributed by James Arthur Boucher.
22
 */
23
24
#include "cmyk.h"
25
#include "cdjpeg.h"             /* Common decls for cjpeg/djpeg applications */
26
#include "jconfigint.h"
27
28
#ifdef BMP_SUPPORTED
29
30
31
/*
32
 * To support 12-bit JPEG data, we'd have to scale output down to 8 bits.
33
 * This is not yet implemented.
34
 */
35
36
#if BITS_IN_JSAMPLE != 8
37
  Sorry, this code only copes with 8-bit JSAMPLEs. /* deliberate syntax err */
38
#endif
39
40
/*
41
 * Since BMP stores scanlines bottom-to-top, we have to invert the image
42
 * from JPEG's top-to-bottom order.  To do this, we save the outgoing data
43
 * in a virtual array during put_pixel_row calls, then actually emit the
44
 * BMP file during finish_output.  The virtual array contains one JSAMPLE per
45
 * pixel if the output is grayscale or colormapped, three if it is full color.
46
 */
47
48
/* Private version of data destination object */
49
50
typedef struct {
51
  struct djpeg_dest_struct pub; /* public fields */
52
53
  boolean is_os2;               /* saves the OS2 format request flag */
54
55
  jvirt_sarray_ptr whole_image; /* needed to reverse row order */
56
  JDIMENSION data_width;        /* JSAMPLEs per row */
57
  JDIMENSION row_width;         /* physical width of one row in the BMP file */
58
  int pad_bytes;                /* number of padding bytes needed per row */
59
  JDIMENSION cur_output_row;    /* next row# to write to virtual array */
60
61
  boolean use_inversion_array;  /* TRUE = buffer the whole image, which is
62
                                   stored to disk in bottom-up order, and
63
                                   receive rows from the calling program in
64
                                   top-down order
65
66
                                   FALSE = the calling program will maintain
67
                                   its own image buffer and write the rows in
68
                                   bottom-up order */
69
70
  JSAMPLE *iobuffer;            /* I/O buffer (used to buffer a single row to
71
                                   disk if use_inversion_array == FALSE) */
72
} bmp_dest_struct;
73
74
typedef bmp_dest_struct *bmp_dest_ptr;
75
76
77
/* Forward declarations */
78
LOCAL(void) write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest,
79
                           int map_colors, int map_entry_size);
80
81
82
static INLINE boolean is_big_endian(void)
83
0
{
84
0
  int test_value = 1;
85
0
  if (*(char *)&test_value != 1)
86
0
    return TRUE;
87
0
  return FALSE;
88
0
}
89
90
91
/*
92
 * Write some pixel data.
93
 * In this module rows_supplied will always be 1.
94
 */
95
96
METHODDEF(void)
97
put_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
98
               JDIMENSION rows_supplied)
99
/* This version is for writing 24-bit pixels */
100
0
{
101
0
  bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
102
0
  JSAMPARRAY image_ptr;
103
0
  register JSAMPROW inptr, outptr;
104
0
  register JDIMENSION col;
105
0
  int pad;
106
107
0
  if (dest->use_inversion_array) {
108
    /* Access next row in virtual array */
109
0
    image_ptr = (*cinfo->mem->access_virt_sarray)
110
0
      ((j_common_ptr)cinfo, dest->whole_image,
111
0
       dest->cur_output_row, (JDIMENSION)1, TRUE);
112
0
    dest->cur_output_row++;
113
0
    outptr = image_ptr[0];
114
0
  } else {
115
0
    outptr = dest->iobuffer;
116
0
  }
117
118
  /* Transfer data.  Note destination values must be in BGR order
119
   * (even though Microsoft's own documents say the opposite).
120
   */
121
0
  inptr = dest->pub.buffer[0];
122
123
0
  if (cinfo->out_color_space == JCS_EXT_BGR) {
124
0
    MEMCOPY(outptr, inptr, dest->row_width);
125
0
    outptr += cinfo->output_width * 3;
126
0
  } else if (cinfo->out_color_space == JCS_RGB565) {
127
0
    boolean big_endian = is_big_endian();
128
0
    unsigned short *inptr2 = (unsigned short *)inptr;
129
0
    for (col = cinfo->output_width; col > 0; col--) {
130
0
      if (big_endian) {
131
0
        outptr[0] = (*inptr2 >> 5) & 0xF8;
132
0
        outptr[1] = ((*inptr2 << 5) & 0xE0) | ((*inptr2 >> 11) & 0x1C);
133
0
        outptr[2] = *inptr2 & 0xF8;
134
0
      } else {
135
0
        outptr[0] = (*inptr2 << 3) & 0xF8;
136
0
        outptr[1] = (*inptr2 >> 3) & 0xFC;
137
0
        outptr[2] = (*inptr2 >> 8) & 0xF8;
138
0
      }
139
0
      outptr += 3;
140
0
      inptr2++;
141
0
    }
142
0
  } else if (cinfo->out_color_space == JCS_CMYK) {
143
0
    for (col = cinfo->output_width; col > 0; col--) {
144
      /* can omit GETJSAMPLE() safely */
145
0
      JSAMPLE c = *inptr++, m = *inptr++, y = *inptr++, k = *inptr++;
146
0
      cmyk_to_rgb(c, m, y, k, outptr + 2, outptr + 1, outptr);
147
0
      outptr += 3;
148
0
    }
149
0
  } else {
150
0
    register int rindex = rgb_red[cinfo->out_color_space];
151
0
    register int gindex = rgb_green[cinfo->out_color_space];
152
0
    register int bindex = rgb_blue[cinfo->out_color_space];
153
0
    register int ps = rgb_pixelsize[cinfo->out_color_space];
154
155
0
    for (col = cinfo->output_width; col > 0; col--) {
156
      /* can omit GETJSAMPLE() safely */
157
0
      outptr[0] = inptr[bindex];
158
0
      outptr[1] = inptr[gindex];
159
0
      outptr[2] = inptr[rindex];
160
0
      outptr += 3;  inptr += ps;
161
0
    }
162
0
  }
163
164
  /* Zero out the pad bytes. */
165
0
  pad = dest->pad_bytes;
166
0
  while (--pad >= 0)
167
0
    *outptr++ = 0;
168
169
0
  if (!dest->use_inversion_array)
170
0
    (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
171
0
}
172
173
METHODDEF(void)
174
put_gray_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo,
175
              JDIMENSION rows_supplied)
176
/* This version is for grayscale OR quantized color output */
177
0
{
178
0
  bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
179
0
  JSAMPARRAY image_ptr;
180
0
  register JSAMPROW inptr, outptr;
181
0
  int pad;
182
183
0
  if (dest->use_inversion_array) {
184
    /* Access next row in virtual array */
185
0
    image_ptr = (*cinfo->mem->access_virt_sarray)
186
0
      ((j_common_ptr)cinfo, dest->whole_image,
187
0
       dest->cur_output_row, (JDIMENSION)1, TRUE);
188
0
    dest->cur_output_row++;
189
0
    outptr = image_ptr[0];
190
0
  } else {
191
0
    outptr = dest->iobuffer;
192
0
  }
193
194
  /* Transfer data. */
195
0
  inptr = dest->pub.buffer[0];
196
0
  MEMCOPY(outptr, inptr, cinfo->output_width);
197
0
  outptr += cinfo->output_width;
198
199
  /* Zero out the pad bytes. */
200
0
  pad = dest->pad_bytes;
201
0
  while (--pad >= 0)
202
0
    *outptr++ = 0;
203
204
0
  if (!dest->use_inversion_array)
205
0
    (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
206
0
}
207
208
209
/*
210
 * Finish up at the end of the file.
211
 *
212
 * Here is where we really output the BMP file.
213
 *
214
 * First, routines to write the Windows and OS/2 variants of the file header.
215
 */
216
217
LOCAL(void)
218
write_bmp_header(j_decompress_ptr cinfo, bmp_dest_ptr dest)
219
/* Write a Windows-style BMP file header, including colormap if needed */
220
0
{
221
0
  char bmpfileheader[14];
222
0
  char bmpinfoheader[40];
223
224
0
#define PUT_2B(array, offset, value) \
225
0
  (array[offset] = (char)((value) & 0xFF), \
226
0
   array[offset + 1] = (char)(((value) >> 8) & 0xFF))
227
0
#define PUT_4B(array, offset, value) \
228
0
  (array[offset] = (char)((value) & 0xFF), \
229
0
   array[offset + 1] = (char)(((value) >> 8) & 0xFF), \
230
0
   array[offset + 2] = (char)(((value) >> 16) & 0xFF), \
231
0
   array[offset + 3] = (char)(((value) >> 24) & 0xFF))
232
233
0
  long headersize, bfSize;
234
0
  int bits_per_pixel, cmap_entries;
235
236
  /* Compute colormap size and total file size */
237
0
  if (IsExtRGB(cinfo->out_color_space)) {
238
0
    if (cinfo->quantize_colors) {
239
      /* Colormapped RGB */
240
0
      bits_per_pixel = 8;
241
0
      cmap_entries = 256;
242
0
    } else {
243
      /* Unquantized, full color RGB */
244
0
      bits_per_pixel = 24;
245
0
      cmap_entries = 0;
246
0
    }
247
0
  } else if (cinfo->out_color_space == JCS_RGB565 ||
248
0
             cinfo->out_color_space == JCS_CMYK) {
249
0
    bits_per_pixel = 24;
250
0
    cmap_entries   = 0;
251
0
  } else {
252
    /* Grayscale output.  We need to fake a 256-entry colormap. */
253
0
    bits_per_pixel = 8;
254
0
    cmap_entries = 256;
255
0
  }
256
  /* File size */
257
0
  headersize = 14 + 40 + cmap_entries * 4; /* Header and colormap */
258
0
  bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
259
260
  /* Set unused fields of header to 0 */
261
0
  MEMZERO(bmpfileheader, sizeof(bmpfileheader));
262
0
  MEMZERO(bmpinfoheader, sizeof(bmpinfoheader));
263
264
  /* Fill the file header */
265
0
  bmpfileheader[0] = 0x42;      /* first 2 bytes are ASCII 'B', 'M' */
266
0
  bmpfileheader[1] = 0x4D;
267
0
  PUT_4B(bmpfileheader, 2, bfSize); /* bfSize */
268
  /* we leave bfReserved1 & bfReserved2 = 0 */
269
0
  PUT_4B(bmpfileheader, 10, headersize); /* bfOffBits */
270
271
  /* Fill the info header (Microsoft calls this a BITMAPINFOHEADER) */
272
0
  PUT_2B(bmpinfoheader, 0, 40); /* biSize */
273
0
  PUT_4B(bmpinfoheader, 4, cinfo->output_width); /* biWidth */
274
0
  PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */
275
0
  PUT_2B(bmpinfoheader, 12, 1); /* biPlanes - must be 1 */
276
0
  PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */
277
  /* we leave biCompression = 0, for none */
278
  /* we leave biSizeImage = 0; this is correct for uncompressed data */
279
0
  if (cinfo->density_unit == 2) { /* if have density in dots/cm, then */
280
0
    PUT_4B(bmpinfoheader, 24, (long)(cinfo->X_density * 100)); /* XPels/M */
281
0
    PUT_4B(bmpinfoheader, 28, (long)(cinfo->Y_density * 100)); /* XPels/M */
282
0
  }
283
0
  PUT_2B(bmpinfoheader, 32, cmap_entries); /* biClrUsed */
284
  /* we leave biClrImportant = 0 */
285
286
0
  if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t)14)
287
0
    ERREXIT(cinfo, JERR_FILE_WRITE);
288
0
  if (JFWRITE(dest->pub.output_file, bmpinfoheader, 40) != (size_t)40)
289
0
    ERREXIT(cinfo, JERR_FILE_WRITE);
290
291
0
  if (cmap_entries > 0)
292
0
    write_colormap(cinfo, dest, cmap_entries, 4);
293
0
}
294
295
296
LOCAL(void)
297
write_os2_header(j_decompress_ptr cinfo, bmp_dest_ptr dest)
298
/* Write an OS2-style BMP file header, including colormap if needed */
299
0
{
300
0
  char bmpfileheader[14];
301
0
  char bmpcoreheader[12];
302
0
  long headersize, bfSize;
303
0
  int bits_per_pixel, cmap_entries;
304
305
  /* Compute colormap size and total file size */
306
0
  if (IsExtRGB(cinfo->out_color_space)) {
307
0
    if (cinfo->quantize_colors) {
308
      /* Colormapped RGB */
309
0
      bits_per_pixel = 8;
310
0
      cmap_entries = 256;
311
0
    } else {
312
      /* Unquantized, full color RGB */
313
0
      bits_per_pixel = 24;
314
0
      cmap_entries = 0;
315
0
    }
316
0
  } else if (cinfo->out_color_space == JCS_RGB565 ||
317
0
             cinfo->out_color_space == JCS_CMYK) {
318
0
    bits_per_pixel = 24;
319
0
    cmap_entries   = 0;
320
0
  } else {
321
    /* Grayscale output.  We need to fake a 256-entry colormap. */
322
0
    bits_per_pixel = 8;
323
0
    cmap_entries = 256;
324
0
  }
325
  /* File size */
326
0
  headersize = 14 + 12 + cmap_entries * 3; /* Header and colormap */
327
0
  bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
328
329
  /* Set unused fields of header to 0 */
330
0
  MEMZERO(bmpfileheader, sizeof(bmpfileheader));
331
0
  MEMZERO(bmpcoreheader, sizeof(bmpcoreheader));
332
333
  /* Fill the file header */
334
0
  bmpfileheader[0] = 0x42;      /* first 2 bytes are ASCII 'B', 'M' */
335
0
  bmpfileheader[1] = 0x4D;
336
0
  PUT_4B(bmpfileheader, 2, bfSize); /* bfSize */
337
  /* we leave bfReserved1 & bfReserved2 = 0 */
338
0
  PUT_4B(bmpfileheader, 10, headersize); /* bfOffBits */
339
340
  /* Fill the info header (Microsoft calls this a BITMAPCOREHEADER) */
341
0
  PUT_2B(bmpcoreheader, 0, 12); /* bcSize */
342
0
  PUT_2B(bmpcoreheader, 4, cinfo->output_width); /* bcWidth */
343
0
  PUT_2B(bmpcoreheader, 6, cinfo->output_height); /* bcHeight */
344
0
  PUT_2B(bmpcoreheader, 8, 1);  /* bcPlanes - must be 1 */
345
0
  PUT_2B(bmpcoreheader, 10, bits_per_pixel); /* bcBitCount */
346
347
0
  if (JFWRITE(dest->pub.output_file, bmpfileheader, 14) != (size_t)14)
348
0
    ERREXIT(cinfo, JERR_FILE_WRITE);
349
0
  if (JFWRITE(dest->pub.output_file, bmpcoreheader, 12) != (size_t)12)
350
0
    ERREXIT(cinfo, JERR_FILE_WRITE);
351
352
0
  if (cmap_entries > 0)
353
0
    write_colormap(cinfo, dest, cmap_entries, 3);
354
0
}
355
356
357
/*
358
 * Write the colormap.
359
 * Windows uses BGR0 map entries; OS/2 uses BGR entries.
360
 */
361
362
LOCAL(void)
363
write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest, int map_colors,
364
               int map_entry_size)
365
0
{
366
0
  JSAMPARRAY colormap = cinfo->colormap;
367
0
  int num_colors = cinfo->actual_number_of_colors;
368
0
  FILE *outfile = dest->pub.output_file;
369
0
  int i;
370
371
0
  if (colormap != NULL) {
372
0
    if (cinfo->out_color_components == 3) {
373
      /* Normal case with RGB colormap */
374
0
      for (i = 0; i < num_colors; i++) {
375
0
        putc(GETJSAMPLE(colormap[2][i]), outfile);
376
0
        putc(GETJSAMPLE(colormap[1][i]), outfile);
377
0
        putc(GETJSAMPLE(colormap[0][i]), outfile);
378
0
        if (map_entry_size == 4)
379
0
          putc(0, outfile);
380
0
      }
381
0
    } else {
382
      /* Grayscale colormap (only happens with grayscale quantization) */
383
0
      for (i = 0; i < num_colors; i++) {
384
0
        putc(GETJSAMPLE(colormap[0][i]), outfile);
385
0
        putc(GETJSAMPLE(colormap[0][i]), outfile);
386
0
        putc(GETJSAMPLE(colormap[0][i]), outfile);
387
0
        if (map_entry_size == 4)
388
0
          putc(0, outfile);
389
0
      }
390
0
    }
391
0
  } else {
392
    /* If no colormap, must be grayscale data.  Generate a linear "map". */
393
0
    for (i = 0; i < 256; i++) {
394
0
      putc(i, outfile);
395
0
      putc(i, outfile);
396
0
      putc(i, outfile);
397
0
      if (map_entry_size == 4)
398
0
        putc(0, outfile);
399
0
    }
400
0
  }
401
  /* Pad colormap with zeros to ensure specified number of colormap entries */
402
0
  if (i > map_colors)
403
0
    ERREXIT1(cinfo, JERR_TOO_MANY_COLORS, i);
404
0
  for (; i < map_colors; i++) {
405
0
    putc(0, outfile);
406
0
    putc(0, outfile);
407
0
    putc(0, outfile);
408
0
    if (map_entry_size == 4)
409
0
      putc(0, outfile);
410
0
  }
411
0
}
412
413
414
/*
415
 * Startup: write the file header unless the inversion array is being used.
416
 */
417
418
METHODDEF(void)
419
start_output_bmp(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
420
0
{
421
0
  bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
422
423
0
  if (!dest->use_inversion_array) {
424
    /* Write the header and colormap */
425
0
    if (dest->is_os2)
426
0
      write_os2_header(cinfo, dest);
427
0
    else
428
0
      write_bmp_header(cinfo, dest);
429
0
  }
430
0
}
431
432
433
METHODDEF(void)
434
finish_output_bmp(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo)
435
0
{
436
0
  bmp_dest_ptr dest = (bmp_dest_ptr)dinfo;
437
0
  register FILE *outfile = dest->pub.output_file;
438
0
  JSAMPARRAY image_ptr;
439
0
  register JSAMPROW data_ptr;
440
0
  JDIMENSION row;
441
0
  register JDIMENSION col;
442
0
  cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
443
444
0
  if (dest->use_inversion_array) {
445
    /* Write the header and colormap */
446
0
    if (dest->is_os2)
447
0
      write_os2_header(cinfo, dest);
448
0
    else
449
0
      write_bmp_header(cinfo, dest);
450
451
    /* Write the file body from our virtual array */
452
0
    for (row = cinfo->output_height; row > 0; row--) {
453
0
      if (progress != NULL) {
454
0
        progress->pub.pass_counter = (long)(cinfo->output_height - row);
455
0
        progress->pub.pass_limit = (long)cinfo->output_height;
456
0
        (*progress->pub.progress_monitor) ((j_common_ptr)cinfo);
457
0
      }
458
0
      image_ptr = (*cinfo->mem->access_virt_sarray)
459
0
        ((j_common_ptr)cinfo, dest->whole_image, row - 1, (JDIMENSION)1,
460
0
         FALSE);
461
0
      data_ptr = image_ptr[0];
462
0
      for (col = dest->row_width; col > 0; col--) {
463
0
        putc(GETJSAMPLE(*data_ptr), outfile);
464
0
        data_ptr++;
465
0
      }
466
0
    }
467
0
    if (progress != NULL)
468
0
      progress->completed_extra_passes++;
469
0
  }
470
471
  /* Make sure we wrote the output file OK */
472
0
  fflush(outfile);
473
0
  if (ferror(outfile))
474
0
    ERREXIT(cinfo, JERR_FILE_WRITE);
475
0
}
476
477
478
/*
479
 * The module selection routine for BMP format output.
480
 */
481
482
GLOBAL(djpeg_dest_ptr)
483
jinit_write_bmp(j_decompress_ptr cinfo, boolean is_os2,
484
                boolean use_inversion_array)
485
0
{
486
0
  bmp_dest_ptr dest;
487
0
  JDIMENSION row_width;
488
489
  /* Create module interface object, fill in method pointers */
490
0
  dest = (bmp_dest_ptr)
491
0
    (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
492
0
                                sizeof(bmp_dest_struct));
493
0
  dest->pub.start_output = start_output_bmp;
494
0
  dest->pub.finish_output = finish_output_bmp;
495
0
  dest->pub.calc_buffer_dimensions = NULL;
496
0
  dest->is_os2 = is_os2;
497
498
0
  if (cinfo->out_color_space == JCS_GRAYSCALE) {
499
0
    dest->pub.put_pixel_rows = put_gray_rows;
500
0
  } else if (IsExtRGB(cinfo->out_color_space)) {
501
0
    if (cinfo->quantize_colors)
502
0
      dest->pub.put_pixel_rows = put_gray_rows;
503
0
    else
504
0
      dest->pub.put_pixel_rows = put_pixel_rows;
505
0
  } else if (!cinfo->quantize_colors &&
506
0
             (cinfo->out_color_space == JCS_RGB565 ||
507
0
              cinfo->out_color_space == JCS_CMYK)) {
508
0
    dest->pub.put_pixel_rows = put_pixel_rows;
509
0
  } else {
510
0
    ERREXIT(cinfo, JERR_BMP_COLORSPACE);
511
0
  }
512
513
  /* Calculate output image dimensions so we can allocate space */
514
0
  jpeg_calc_output_dimensions(cinfo);
515
516
  /* Determine width of rows in the BMP file (padded to 4-byte boundary). */
517
0
  if (cinfo->out_color_space == JCS_RGB565) {
518
0
    row_width = cinfo->output_width * 2;
519
0
    dest->row_width = dest->data_width = cinfo->output_width * 3;
520
0
    while ((row_width & 3) != 0) row_width++;
521
0
  } else if (!cinfo->quantize_colors &&
522
0
             (IsExtRGB(cinfo->out_color_space) ||
523
0
              cinfo->out_color_space == JCS_CMYK)) {
524
0
    row_width = cinfo->output_width * cinfo->output_components;
525
0
    dest->row_width = dest->data_width = cinfo->output_width * 3;
526
0
  } else {
527
0
    row_width = cinfo->output_width * cinfo->output_components;
528
0
    dest->row_width = dest->data_width = row_width;
529
0
  }
530
0
  while ((dest->row_width & 3) != 0) dest->row_width++;
531
0
  dest->pad_bytes = (int)(dest->row_width - dest->data_width);
532
533
534
0
  if (use_inversion_array) {
535
    /* Allocate space for inversion array, prepare for write pass */
536
0
    dest->whole_image = (*cinfo->mem->request_virt_sarray)
537
0
      ((j_common_ptr)cinfo, JPOOL_IMAGE, FALSE,
538
0
       dest->row_width, cinfo->output_height, (JDIMENSION)1);
539
0
    dest->cur_output_row = 0;
540
0
    if (cinfo->progress != NULL) {
541
0
      cd_progress_ptr progress = (cd_progress_ptr)cinfo->progress;
542
0
      progress->total_extra_passes++; /* count file input as separate pass */
543
0
    }
544
0
  } else {
545
0
    dest->iobuffer = (JSAMPLE *)(*cinfo->mem->alloc_small)
546
0
      ((j_common_ptr)cinfo, JPOOL_IMAGE, dest->row_width);
547
0
  }
548
0
  dest->use_inversion_array = use_inversion_array;
549
550
  /* Create decompressor output buffer. */
551
0
  dest->pub.buffer = (*cinfo->mem->alloc_sarray)
552
0
    ((j_common_ptr)cinfo, JPOOL_IMAGE, row_width, (JDIMENSION)1);
553
0
  dest->pub.buffer_height = 1;
554
555
0
  return (djpeg_dest_ptr)dest;
556
0
}
557
558
#endif /* BMP_SUPPORTED */