blob: 6ca3768fb2c9bc2ea363dcab2dd3288a61c062e6 [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * jcmainct.c
3 *
DRC5033f3e2014-05-18 18:33:44 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane489583f1996-02-07 00:00:00 +00005 * Copyright (C) 1994-1996, Thomas G. Lane.
DRC5033f3e2014-05-18 18:33:44 +00006 * It was modified by The libjpeg-turbo Project to include only code relevant
7 * to libjpeg-turbo.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
10 * This file contains the main buffer controller for compression.
11 * The main buffer lies between the pre-processor and the JPEG
12 * compressor proper; it holds downsampled data in the JPEG colorspace.
13 */
14
15#define JPEG_INTERNALS
16#include "jinclude.h"
17#include "jpeglib.h"
18
19
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000020/* Private buffer controller object */
21
22typedef struct {
23 struct jpeg_c_main_controller pub; /* public fields */
24
DRCe5eaf372014-05-09 18:00:32 +000025 JDIMENSION cur_iMCU_row; /* number of current iMCU row */
26 JDIMENSION rowgroup_ctr; /* counts row groups received in iMCU row */
27 boolean suspended; /* remember if we suspended output */
28 J_BUF_MODE pass_mode; /* current operating mode */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000029
30 /* If using just a strip buffer, this points to the entire set of buffers
31 * (we allocate one for each component). In the full-image case, this
32 * points to the currently accessible strips of the virtual arrays.
33 */
34 JSAMPARRAY buffer[MAX_COMPONENTS];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000035} my_main_controller;
36
37typedef my_main_controller * my_main_ptr;
38
39
40/* Forward declarations */
Thomas G. Lane489583f1996-02-07 00:00:00 +000041METHODDEF(void) process_data_simple_main
DRCbc56b752014-05-16 10:43:44 +000042 (j_compress_ptr cinfo, JSAMPARRAY input_buf, JDIMENSION *in_row_ctr,
43 JDIMENSION in_rows_avail);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000044
45
46/*
47 * Initialize for a processing pass.
48 */
49
Thomas G. Lane489583f1996-02-07 00:00:00 +000050METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000051start_pass_main (j_compress_ptr cinfo, J_BUF_MODE pass_mode)
52{
DRC7ed7b572012-02-07 22:51:49 +000053 my_main_ptr main_ptr = (my_main_ptr) cinfo->main;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000054
55 /* Do nothing in raw-data mode. */
56 if (cinfo->raw_data_in)
57 return;
58
DRCa29d6b42014-12-01 20:13:12 +000059 if (pass_mode != JBUF_PASS_THRU)
60 ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
61
DRCe5eaf372014-05-09 18:00:32 +000062 main_ptr->cur_iMCU_row = 0; /* initialize counters */
DRC7ed7b572012-02-07 22:51:49 +000063 main_ptr->rowgroup_ctr = 0;
64 main_ptr->suspended = FALSE;
DRCe5eaf372014-05-09 18:00:32 +000065 main_ptr->pass_mode = pass_mode; /* save mode for use by process_data */
DRCa29d6b42014-12-01 20:13:12 +000066 main_ptr->pub.process_data = process_data_simple_main;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000067}
68
69
70/*
71 * Process some data.
72 * This routine handles the simple pass-through mode,
73 * where we have only a strip buffer.
74 */
75
Thomas G. Lane489583f1996-02-07 00:00:00 +000076METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000077process_data_simple_main (j_compress_ptr cinfo,
DRCe5eaf372014-05-09 18:00:32 +000078 JSAMPARRAY input_buf, JDIMENSION *in_row_ctr,
79 JDIMENSION in_rows_avail)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000080{
DRC7ed7b572012-02-07 22:51:49 +000081 my_main_ptr main_ptr = (my_main_ptr) cinfo->main;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000082
DRC7ed7b572012-02-07 22:51:49 +000083 while (main_ptr->cur_iMCU_row < cinfo->total_iMCU_rows) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000084 /* Read input data if we haven't filled the main buffer yet */
DRC7ed7b572012-02-07 22:51:49 +000085 if (main_ptr->rowgroup_ctr < DCTSIZE)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000086 (*cinfo->prep->pre_process_data) (cinfo,
DRCe5eaf372014-05-09 18:00:32 +000087 input_buf, in_row_ctr, in_rows_avail,
88 main_ptr->buffer, &main_ptr->rowgroup_ctr,
89 (JDIMENSION) DCTSIZE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000090
91 /* If we don't have a full iMCU row buffered, return to application for
92 * more data. Note that preprocessor will always pad to fill the iMCU row
93 * at the bottom of the image.
94 */
DRC7ed7b572012-02-07 22:51:49 +000095 if (main_ptr->rowgroup_ctr != DCTSIZE)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000096 return;
97
98 /* Send the completed row to the compressor */
DRC7ed7b572012-02-07 22:51:49 +000099 if (! (*cinfo->coef->compress_data) (cinfo, main_ptr->buffer)) {
Thomas G. Lanea8b67c41995-03-15 00:00:00 +0000100 /* If compressor did not consume the whole row, then we must need to
101 * suspend processing and return to the application. In this situation
102 * we pretend we didn't yet consume the last input row; otherwise, if
103 * it happened to be the last row of the image, the application would
104 * think we were done.
105 */
DRC7ed7b572012-02-07 22:51:49 +0000106 if (! main_ptr->suspended) {
DRCe5eaf372014-05-09 18:00:32 +0000107 (*in_row_ctr)--;
108 main_ptr->suspended = TRUE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000109 }
110 return;
111 }
112 /* We did finish the row. Undo our little suspension hack if a previous
113 * call suspended; then mark the main buffer empty.
114 */
DRC7ed7b572012-02-07 22:51:49 +0000115 if (main_ptr->suspended) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000116 (*in_row_ctr)++;
DRC7ed7b572012-02-07 22:51:49 +0000117 main_ptr->suspended = FALSE;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000118 }
DRC7ed7b572012-02-07 22:51:49 +0000119 main_ptr->rowgroup_ctr = 0;
120 main_ptr->cur_iMCU_row++;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000121 }
122}
123
124
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000125/*
126 * Initialize main buffer controller.
127 */
128
Thomas G. Lane489583f1996-02-07 00:00:00 +0000129GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000130jinit_c_main_controller (j_compress_ptr cinfo, boolean need_full_buffer)
131{
DRC7ed7b572012-02-07 22:51:49 +0000132 my_main_ptr main_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000133 int ci;
134 jpeg_component_info *compptr;
135
DRC7ed7b572012-02-07 22:51:49 +0000136 main_ptr = (my_main_ptr)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000137 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
DRC5de454b2014-05-18 19:04:03 +0000138 sizeof(my_main_controller));
DRC7ed7b572012-02-07 22:51:49 +0000139 cinfo->main = (struct jpeg_c_main_controller *) main_ptr;
140 main_ptr->pub.start_pass = start_pass_main;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000141
142 /* We don't need to create a buffer in raw-data mode. */
143 if (cinfo->raw_data_in)
144 return;
145
146 /* Create the buffer. It holds downsampled data, so each component
147 * may be of a different size.
148 */
149 if (need_full_buffer) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000150 ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000151 } else {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000152 /* Allocate a strip buffer for each component */
153 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
DRCe5eaf372014-05-09 18:00:32 +0000154 ci++, compptr++) {
DRC7ed7b572012-02-07 22:51:49 +0000155 main_ptr->buffer[ci] = (*cinfo->mem->alloc_sarray)
DRCe5eaf372014-05-09 18:00:32 +0000156 ((j_common_ptr) cinfo, JPOOL_IMAGE,
157 compptr->width_in_blocks * DCTSIZE,
158 (JDIMENSION) (compptr->v_samp_factor * DCTSIZE));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000159 }
160 }
161}