blob: 178c55ba47ceb9e2b3d65ac20b3eb41fdafbc78b [file] [log] [blame]
Thomas G. Lanebc79e061995-08-02 00:00:00 +00001/*
2 * jcapimin.c
3 *
DRC5033f3e2014-05-18 18:33:44 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1994-1998, Thomas G. Lane.
Guido Vollbedingf18f81b2010-02-28 00:00:00 +00006 * Modified 2003-2010 by Guido Vollbeding.
DRC5033f3e2014-05-18 18:33:44 +00007 * It was modified by The libjpeg-turbo Project to include only code relevant
8 * to libjpeg-turbo.
Alex Naidis6eb7d372016-10-16 23:10:08 +02009 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
Thomas G. Lanebc79e061995-08-02 00:00:00 +000011 *
12 * This file contains application interface code for the compression half
13 * of the JPEG library. These are the "minimum" API routines that may be
14 * needed in either the normal full-compression case or the transcoding-only
15 * case.
16 *
17 * Most of the routines intended to be called directly by an application
18 * are in this file or in jcapistd.c. But also see jcparam.c for
19 * parameter-setup helper routines, jcomapi.c for routines shared by
20 * compression and decompression, and jctrans.c for the transcoding case.
21 */
22
23#define JPEG_INTERNALS
24#include "jinclude.h"
25#include "jpeglib.h"
26
27
28/*
29 * Initialization of a JPEG compression object.
30 * The error manager must already be set up (in case memory manager fails).
31 */
32
Thomas G. Lane489583f1996-02-07 00:00:00 +000033GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040034jpeg_CreateCompress(j_compress_ptr cinfo, int version, size_t structsize)
Thomas G. Lanebc79e061995-08-02 00:00:00 +000035{
36 int i;
37
Thomas G. Lane489583f1996-02-07 00:00:00 +000038 /* Guard against version mismatches between library and caller. */
DRCe5eaf372014-05-09 18:00:32 +000039 cinfo->mem = NULL; /* so jpeg_destroy knows mem mgr not called */
Thomas G. Lane489583f1996-02-07 00:00:00 +000040 if (version != JPEG_LIB_VERSION)
41 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
DRC5de454b2014-05-18 19:04:03 +000042 if (structsize != sizeof(struct jpeg_compress_struct))
DRCe5eaf372014-05-09 18:00:32 +000043 ERREXIT2(cinfo, JERR_BAD_STRUCT_SIZE,
Leon Scroggins III3993b372018-07-16 10:43:45 -040044 (int)sizeof(struct jpeg_compress_struct), (int)structsize);
Thomas G. Lane489583f1996-02-07 00:00:00 +000045
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000046 /* For debugging purposes, we zero the whole master structure.
47 * But the application has already set the err pointer, and may have set
48 * client_data, so we have to save and restore those fields.
49 * Note: if application hasn't set client_data, tools like Purify may
50 * complain here.
Thomas G. Lanebc79e061995-08-02 00:00:00 +000051 */
52 {
Alex Naidis6eb7d372016-10-16 23:10:08 +020053 struct jpeg_error_mgr *err = cinfo->err;
54 void *client_data = cinfo->client_data; /* ignore Purify complaint here */
DRC5de454b2014-05-18 19:04:03 +000055 MEMZERO(cinfo, sizeof(struct jpeg_compress_struct));
Thomas G. Lanebc79e061995-08-02 00:00:00 +000056 cinfo->err = err;
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000057 cinfo->client_data = client_data;
Thomas G. Lanebc79e061995-08-02 00:00:00 +000058 }
59 cinfo->is_decompressor = FALSE;
60
61 /* Initialize a memory manager instance for this object */
Leon Scroggins III3993b372018-07-16 10:43:45 -040062 jinit_memory_mgr((j_common_ptr)cinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +000063
64 /* Zero out pointers to permanent structures. */
65 cinfo->progress = NULL;
66 cinfo->dest = NULL;
67
68 cinfo->comp_info = NULL;
69
Guido Vollbeding5996a252009-06-27 00:00:00 +000070 for (i = 0; i < NUM_QUANT_TBLS; i++) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +000071 cinfo->quant_tbl_ptrs[i] = NULL;
DRC36a6eec2010-10-08 08:05:44 +000072#if JPEG_LIB_VERSION >= 70
Guido Vollbeding5996a252009-06-27 00:00:00 +000073 cinfo->q_scale_factor[i] = 100;
DRC36a6eec2010-10-08 08:05:44 +000074#endif
Guido Vollbeding5996a252009-06-27 00:00:00 +000075 }
Thomas G. Lanebc79e061995-08-02 00:00:00 +000076
77 for (i = 0; i < NUM_HUFF_TBLS; i++) {
78 cinfo->dc_huff_tbl_ptrs[i] = NULL;
79 cinfo->ac_huff_tbl_ptrs[i] = NULL;
80 }
81
DRC36a6eec2010-10-08 08:05:44 +000082#if JPEG_LIB_VERSION >= 80
Guido Vollbedingf18f81b2010-02-28 00:00:00 +000083 /* Must do it here for emit_dqt in case jpeg_write_tables is used */
84 cinfo->block_size = DCTSIZE;
85 cinfo->natural_order = jpeg_natural_order;
Leon Scroggins III3993b372018-07-16 10:43:45 -040086 cinfo->lim_Se = DCTSIZE2 - 1;
DRC36a6eec2010-10-08 08:05:44 +000087#endif
Guido Vollbedingf18f81b2010-02-28 00:00:00 +000088
Thomas G. Lane5ead57a1998-03-27 00:00:00 +000089 cinfo->script_space = NULL;
90
DRCe5eaf372014-05-09 18:00:32 +000091 cinfo->input_gamma = 1.0; /* in case application forgets */
Thomas G. Lanebc79e061995-08-02 00:00:00 +000092
93 /* OK, I'm ready */
94 cinfo->global_state = CSTATE_START;
95}
96
97
98/*
99 * Destruction of a JPEG compression object
100 */
101
Thomas G. Lane489583f1996-02-07 00:00:00 +0000102GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400103jpeg_destroy_compress(j_compress_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000104{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400105 jpeg_destroy((j_common_ptr)cinfo); /* use common routine */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000106}
107
108
109/*
110 * Abort processing of a JPEG compression operation,
111 * but don't destroy the object itself.
112 */
113
Thomas G. Lane489583f1996-02-07 00:00:00 +0000114GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400115jpeg_abort_compress(j_compress_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000116{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400117 jpeg_abort((j_common_ptr)cinfo); /* use common routine */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000118}
119
120
121/*
122 * Forcibly suppress or un-suppress all quantization and Huffman tables.
123 * Marks all currently defined tables as already written (if suppress)
124 * or not written (if !suppress). This will control whether they get emitted
125 * by a subsequent jpeg_start_compress call.
126 *
127 * This routine is exported for use by applications that want to produce
128 * abbreviated JPEG datastreams. It logically belongs in jcparam.c, but
129 * since it is called by jpeg_start_compress, we put it here --- otherwise
130 * jcparam.o would be linked whether the application used it or not.
131 */
132
Thomas G. Lane489583f1996-02-07 00:00:00 +0000133GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400134jpeg_suppress_tables(j_compress_ptr cinfo, boolean suppress)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000135{
136 int i;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200137 JQUANT_TBL *qtbl;
138 JHUFF_TBL *htbl;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000139
140 for (i = 0; i < NUM_QUANT_TBLS; i++) {
141 if ((qtbl = cinfo->quant_tbl_ptrs[i]) != NULL)
142 qtbl->sent_table = suppress;
143 }
144
145 for (i = 0; i < NUM_HUFF_TBLS; i++) {
146 if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
147 htbl->sent_table = suppress;
148 if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
149 htbl->sent_table = suppress;
150 }
151}
152
153
154/*
155 * Finish JPEG compression.
156 *
157 * If a multipass operating mode was selected, this may do a great deal of
158 * work including most of the actual output.
159 */
160
Thomas G. Lane489583f1996-02-07 00:00:00 +0000161GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400162jpeg_finish_compress(j_compress_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000163{
164 JDIMENSION iMCU_row;
165
166 if (cinfo->global_state == CSTATE_SCANNING ||
167 cinfo->global_state == CSTATE_RAW_OK) {
168 /* Terminate first pass */
169 if (cinfo->next_scanline < cinfo->image_height)
170 ERREXIT(cinfo, JERR_TOO_LITTLE_DATA);
171 (*cinfo->master->finish_pass) (cinfo);
172 } else if (cinfo->global_state != CSTATE_WRCOEFS)
173 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
174 /* Perform any remaining passes */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400175 while (!cinfo->master->is_last_pass) {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000176 (*cinfo->master->prepare_for_pass) (cinfo);
177 for (iMCU_row = 0; iMCU_row < cinfo->total_iMCU_rows; iMCU_row++) {
178 if (cinfo->progress != NULL) {
Leon Scroggins III3993b372018-07-16 10:43:45 -0400179 cinfo->progress->pass_counter = (long)iMCU_row;
180 cinfo->progress->pass_limit = (long)cinfo->total_iMCU_rows;
181 (*cinfo->progress->progress_monitor) ((j_common_ptr)cinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000182 }
183 /* We bypass the main controller and invoke coef controller directly;
184 * all work is being done from the coefficient buffer.
185 */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400186 if (!(*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE)NULL))
DRCe5eaf372014-05-09 18:00:32 +0000187 ERREXIT(cinfo, JERR_CANT_SUSPEND);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000188 }
189 (*cinfo->master->finish_pass) (cinfo);
190 }
191 /* Write EOI, do final cleanup */
192 (*cinfo->marker->write_file_trailer) (cinfo);
193 (*cinfo->dest->term_destination) (cinfo);
194 /* We can use jpeg_abort to release memory and reset global_state */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400195 jpeg_abort((j_common_ptr)cinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000196}
197
198
199/*
200 * Write a special marker.
201 * This is only recommended for writing COM or APPn markers.
202 * Must be called after jpeg_start_compress() and before
203 * first call to jpeg_write_scanlines() or jpeg_write_raw_data().
204 */
205
Thomas G. Lane489583f1996-02-07 00:00:00 +0000206GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400207jpeg_write_marker(j_compress_ptr cinfo, int marker, const JOCTET *dataptr,
208 unsigned int datalen)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000209{
DRCbc56b752014-05-16 10:43:44 +0000210 void (*write_marker_byte) (j_compress_ptr info, int val);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000211
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000212 if (cinfo->next_scanline != 0 ||
213 (cinfo->global_state != CSTATE_SCANNING &&
214 cinfo->global_state != CSTATE_RAW_OK &&
215 cinfo->global_state != CSTATE_WRCOEFS))
216 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
217
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000218 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
DRCe5eaf372014-05-09 18:00:32 +0000219 write_marker_byte = cinfo->marker->write_marker_byte; /* copy for speed */
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000220 while (datalen--) {
221 (*write_marker_byte) (cinfo, *dataptr);
222 dataptr++;
223 }
224}
225
226/* Same, but piecemeal. */
227
228GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400229jpeg_write_m_header(j_compress_ptr cinfo, int marker, unsigned int datalen)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000230{
231 if (cinfo->next_scanline != 0 ||
232 (cinfo->global_state != CSTATE_SCANNING &&
233 cinfo->global_state != CSTATE_RAW_OK &&
234 cinfo->global_state != CSTATE_WRCOEFS))
235 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
236
237 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
238}
239
240GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400241jpeg_write_m_byte(j_compress_ptr cinfo, int val)
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000242{
243 (*cinfo->marker->write_marker_byte) (cinfo, val);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000244}
245
246
247/*
248 * Alternate compression function: just write an abbreviated table file.
249 * Before calling this, all parameters and a data destination must be set up.
250 *
251 * To produce a pair of files containing abbreviated tables and abbreviated
252 * image data, one would proceed as follows:
253 *
DRCe5eaf372014-05-09 18:00:32 +0000254 * initialize JPEG object
255 * set JPEG parameters
256 * set destination to table file
257 * jpeg_write_tables(cinfo);
258 * set destination to image file
259 * jpeg_start_compress(cinfo, FALSE);
260 * write data...
261 * jpeg_finish_compress(cinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000262 *
263 * jpeg_write_tables has the side effect of marking all tables written
264 * (same as jpeg_suppress_tables(..., TRUE)). Thus a subsequent start_compress
265 * will not re-emit the tables unless it is passed write_all_tables=TRUE.
266 */
267
Thomas G. Lane489583f1996-02-07 00:00:00 +0000268GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400269jpeg_write_tables(j_compress_ptr cinfo)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000270{
271 if (cinfo->global_state != CSTATE_START)
272 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
273
274 /* (Re)initialize error mgr and destination modules */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400275 (*cinfo->err->reset_error_mgr) ((j_common_ptr)cinfo);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000276 (*cinfo->dest->init_destination) (cinfo);
277 /* Initialize the marker writer ... bit of a crock to do it here. */
278 jinit_marker_writer(cinfo);
279 /* Write them tables! */
280 (*cinfo->marker->write_tables_only) (cinfo);
281 /* And clean up. */
282 (*cinfo->dest->term_destination) (cinfo);
Thomas G. Lane5ead57a1998-03-27 00:00:00 +0000283 /*
284 * In library releases up through v6a, we called jpeg_abort() here to free
285 * any working memory allocated by the destination manager and marker
286 * writer. Some applications had a problem with that: they allocated space
287 * of their own from the library memory manager, and didn't want it to go
288 * away during write_tables. So now we do nothing. This will cause a
289 * memory leak if an app calls write_tables repeatedly without doing a full
290 * compression cycle or otherwise resetting the JPEG object. However, that
291 * seems less bad than unexpectedly freeing memory in the normal case.
292 * An app that prefers the old behavior can call jpeg_abort for itself after
293 * each call to jpeg_write_tables().
294 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000295}