blob: 3168b9693c8e4860edfa5762b2be51c707320917 [file] [log] [blame]
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001/*
2 * jdatadst.c
3 *
DRCab706232013-01-18 23:42:31 +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.
Guido Vollbeding5829cb22012-01-15 00:00:00 +00006 * Modified 2009-2012 by Guido Vollbeding.
DRCa6ef2822013-09-28 03:23:49 +00007 * libjpeg-turbo Modifications:
Alex Naidis6eb7d372016-10-16 23:10:08 +02008 * Copyright (C) 2013, 2016, D. R. Commander.
9 * For conditions of distribution and use, see the accompanying README.ijg
10 * file.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000011 *
12 * This file contains compression data destination routines for the case of
Guido Vollbeding989630f2010-01-10 00:00:00 +000013 * emitting JPEG data to memory or to a file (or any stdio stream).
14 * While these routines are sufficient for most applications,
15 * some will want to use a different destination manager.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000016 * IMPORTANT: we assume that fwrite() will correctly transcribe an array of
17 * JOCTETs into 8-bit-wide elements on external storage. If char is wider
18 * than 8 bits on your machine, you may need to do some tweaking.
19 */
20
21/* this is not a core library module, so it doesn't define JPEG_INTERNALS */
22#include "jinclude.h"
23#include "jpeglib.h"
24#include "jerror.h"
25
DRCe5eaf372014-05-09 18:00:32 +000026#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
Leon Scroggins III3993b372018-07-16 10:43:45 -040027extern void *malloc(size_t size);
28extern void free(void *ptr);
Guido Vollbeding989630f2010-01-10 00:00:00 +000029#endif
30
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000031
32/* Expanded data destination object for stdio output */
33
34typedef struct {
35 struct jpeg_destination_mgr pub; /* public fields */
36
Alex Naidis6eb7d372016-10-16 23:10:08 +020037 FILE *outfile; /* target stream */
38 JOCTET *buffer; /* start of buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000039} my_destination_mgr;
40
Alex Naidis6eb7d372016-10-16 23:10:08 +020041typedef my_destination_mgr *my_dest_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000042
DRCe5eaf372014-05-09 18:00:32 +000043#define OUTPUT_BUF_SIZE 4096 /* choose an efficiently fwrite'able size */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000044
45
DRCab706232013-01-18 23:42:31 +000046#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
Guido Vollbeding989630f2010-01-10 00:00:00 +000047/* Expanded data destination object for memory output */
48
49typedef struct {
50 struct jpeg_destination_mgr pub; /* public fields */
51
Alex Naidis6eb7d372016-10-16 23:10:08 +020052 unsigned char **outbuffer; /* target buffer */
53 unsigned long *outsize;
54 unsigned char *newbuffer; /* newly allocated buffer */
55 JOCTET *buffer; /* start of buffer */
Guido Vollbeding989630f2010-01-10 00:00:00 +000056 size_t bufsize;
57} my_mem_destination_mgr;
58
Alex Naidis6eb7d372016-10-16 23:10:08 +020059typedef my_mem_destination_mgr *my_mem_dest_ptr;
DRC36a6eec2010-10-08 08:05:44 +000060#endif
Guido Vollbeding989630f2010-01-10 00:00:00 +000061
62
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000063/*
64 * Initialize destination --- called by jpeg_start_compress
65 * before any data is actually written.
66 */
67
Thomas G. Lane489583f1996-02-07 00:00:00 +000068METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040069init_destination(j_compress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000070{
Leon Scroggins III3993b372018-07-16 10:43:45 -040071 my_dest_ptr dest = (my_dest_ptr)cinfo->dest;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000072
73 /* Allocate the output buffer --- it will be released when done with image */
74 dest->buffer = (JOCTET *)
Leon Scroggins III3993b372018-07-16 10:43:45 -040075 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
76 OUTPUT_BUF_SIZE * sizeof(JOCTET));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000077
78 dest->pub.next_output_byte = dest->buffer;
79 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
80}
81
DRCab706232013-01-18 23:42:31 +000082#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
Guido Vollbeding989630f2010-01-10 00:00:00 +000083METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -040084init_mem_destination(j_compress_ptr cinfo)
Guido Vollbeding989630f2010-01-10 00:00:00 +000085{
86 /* no work necessary here */
87}
DRC36a6eec2010-10-08 08:05:44 +000088#endif
Guido Vollbeding989630f2010-01-10 00:00:00 +000089
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000090
91/*
92 * Empty the output buffer --- called whenever buffer fills up.
93 *
94 * In typical applications, this should write the entire output buffer
95 * (ignoring the current state of next_output_byte & free_in_buffer),
96 * reset the pointer & count to the start of the buffer, and return TRUE
97 * indicating that the buffer has been dumped.
98 *
99 * In applications that need to be able to suspend compression due to output
100 * overrun, a FALSE return indicates that the buffer cannot be emptied now.
101 * In this situation, the compressor will return to its caller (possibly with
102 * an indication that it has not accepted all the supplied scanlines). The
103 * application should resume compression after it has made more room in the
104 * output buffer. Note that there are substantial restrictions on the use of
105 * suspension --- see the documentation.
106 *
107 * When suspending, the compressor will back up to a convenient restart point
108 * (typically the start of the current MCU). next_output_byte & free_in_buffer
109 * indicate where the restart point will be if the current call returns FALSE.
110 * Data beyond this point will be regenerated after resumption, so do not
111 * write it out when emptying the buffer externally.
112 */
113
Thomas G. Lane489583f1996-02-07 00:00:00 +0000114METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400115empty_output_buffer(j_compress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000116{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400117 my_dest_ptr dest = (my_dest_ptr)cinfo->dest;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000118
119 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) !=
Leon Scroggins III3993b372018-07-16 10:43:45 -0400120 (size_t)OUTPUT_BUF_SIZE)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000121 ERREXIT(cinfo, JERR_FILE_WRITE);
122
123 dest->pub.next_output_byte = dest->buffer;
124 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
125
126 return TRUE;
127}
128
DRCab706232013-01-18 23:42:31 +0000129#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
Guido Vollbeding989630f2010-01-10 00:00:00 +0000130METHODDEF(boolean)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400131empty_mem_output_buffer(j_compress_ptr cinfo)
Guido Vollbeding989630f2010-01-10 00:00:00 +0000132{
133 size_t nextsize;
Alex Naidis6eb7d372016-10-16 23:10:08 +0200134 JOCTET *nextbuffer;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400135 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000136
137 /* Try to allocate new buffer with double size */
138 nextsize = dest->bufsize * 2;
Leon Scroggins III3993b372018-07-16 10:43:45 -0400139 nextbuffer = (JOCTET *)malloc(nextsize);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000140
141 if (nextbuffer == NULL)
142 ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 10);
143
144 MEMCOPY(nextbuffer, dest->buffer, dest->bufsize);
145
146 if (dest->newbuffer != NULL)
147 free(dest->newbuffer);
148
149 dest->newbuffer = nextbuffer;
150
151 dest->pub.next_output_byte = nextbuffer + dest->bufsize;
152 dest->pub.free_in_buffer = dest->bufsize;
153
154 dest->buffer = nextbuffer;
155 dest->bufsize = nextsize;
156
157 return TRUE;
158}
DRC36a6eec2010-10-08 08:05:44 +0000159#endif
Guido Vollbeding989630f2010-01-10 00:00:00 +0000160
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000161
162/*
163 * Terminate destination --- called by jpeg_finish_compress
164 * after all data has been written. Usually needs to flush buffer.
165 *
166 * NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
167 * application must deal with any cleanup that should happen even
168 * for error exit.
169 */
170
Thomas G. Lane489583f1996-02-07 00:00:00 +0000171METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400172term_destination(j_compress_ptr cinfo)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000173{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400174 my_dest_ptr dest = (my_dest_ptr)cinfo->dest;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000175 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
176
177 /* Write any data remaining in the buffer */
178 if (datacount > 0) {
179 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount)
180 ERREXIT(cinfo, JERR_FILE_WRITE);
181 }
182 fflush(dest->outfile);
183 /* Make sure we wrote the output file OK */
184 if (ferror(dest->outfile))
185 ERREXIT(cinfo, JERR_FILE_WRITE);
186}
187
DRCab706232013-01-18 23:42:31 +0000188#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
Guido Vollbeding989630f2010-01-10 00:00:00 +0000189METHODDEF(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400190term_mem_destination(j_compress_ptr cinfo)
Guido Vollbeding989630f2010-01-10 00:00:00 +0000191{
Leon Scroggins III3993b372018-07-16 10:43:45 -0400192 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000193
194 *dest->outbuffer = dest->buffer;
DRC736fb062013-01-18 23:45:06 +0000195 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000196}
DRC36a6eec2010-10-08 08:05:44 +0000197#endif
Guido Vollbeding989630f2010-01-10 00:00:00 +0000198
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000199
200/*
201 * Prepare for output to a stdio stream.
202 * The caller must have already opened the stream, and is responsible
203 * for closing it after finishing compression.
204 */
205
Thomas G. Lane489583f1996-02-07 00:00:00 +0000206GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400207jpeg_stdio_dest(j_compress_ptr cinfo, FILE *outfile)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000208{
209 my_dest_ptr dest;
210
211 /* The destination object is made permanent so that multiple JPEG images
212 * can be written to the same file without re-executing jpeg_stdio_dest.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000213 */
DRCe5eaf372014-05-09 18:00:32 +0000214 if (cinfo->dest == NULL) { /* first time for this JPEG object? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000215 cinfo->dest = (struct jpeg_destination_mgr *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400216 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
DRC5de454b2014-05-18 19:04:03 +0000217 sizeof(my_destination_mgr));
Alex Naidis6eb7d372016-10-16 23:10:08 +0200218 } else if (cinfo->dest->init_destination != init_destination) {
219 /* It is unsafe to reuse the existing destination manager unless it was
220 * created by this function. Otherwise, there is no guarantee that the
221 * opaque structure is the right size. Note that we could just create a
222 * new structure, but the old structure would not be freed until
223 * jpeg_destroy_compress() was called.
224 */
225 ERREXIT(cinfo, JERR_BUFFER_SIZE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000226 }
227
Leon Scroggins III3993b372018-07-16 10:43:45 -0400228 dest = (my_dest_ptr)cinfo->dest;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000229 dest->pub.init_destination = init_destination;
230 dest->pub.empty_output_buffer = empty_output_buffer;
231 dest->pub.term_destination = term_destination;
232 dest->outfile = outfile;
233}
Guido Vollbeding989630f2010-01-10 00:00:00 +0000234
235
DRCab706232013-01-18 23:42:31 +0000236#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
Guido Vollbeding989630f2010-01-10 00:00:00 +0000237/*
238 * Prepare for output to a memory buffer.
239 * The caller may supply an own initial buffer with appropriate size.
240 * Otherwise, or when the actual data output exceeds the given size,
241 * the library adapts the buffer size as necessary.
242 * The standard library functions malloc/free are used for allocating
243 * larger memory, so the buffer is available to the application after
244 * finishing compression, and then the application is responsible for
245 * freeing the requested memory.
Alex Naidis6eb7d372016-10-16 23:10:08 +0200246 * Note: An initial buffer supplied by the caller is expected to be
247 * managed by the application. The library does not free such buffer
248 * when allocating a larger buffer.
Guido Vollbeding989630f2010-01-10 00:00:00 +0000249 */
250
251GLOBAL(void)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400252jpeg_mem_dest(j_compress_ptr cinfo, unsigned char **outbuffer,
253 unsigned long *outsize)
Guido Vollbeding989630f2010-01-10 00:00:00 +0000254{
255 my_mem_dest_ptr dest;
256
DRCe5eaf372014-05-09 18:00:32 +0000257 if (outbuffer == NULL || outsize == NULL) /* sanity check */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000258 ERREXIT(cinfo, JERR_BUFFER_SIZE);
259
260 /* The destination object is made permanent so that multiple JPEG images
261 * can be written to the same buffer without re-executing jpeg_mem_dest.
262 */
DRCe5eaf372014-05-09 18:00:32 +0000263 if (cinfo->dest == NULL) { /* first time for this JPEG object? */
Guido Vollbeding989630f2010-01-10 00:00:00 +0000264 cinfo->dest = (struct jpeg_destination_mgr *)
Leon Scroggins III3993b372018-07-16 10:43:45 -0400265 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
DRC5de454b2014-05-18 19:04:03 +0000266 sizeof(my_mem_destination_mgr));
Alex Naidis6eb7d372016-10-16 23:10:08 +0200267 } else if (cinfo->dest->init_destination != init_mem_destination) {
268 /* It is unsafe to reuse the existing destination manager unless it was
269 * created by this function.
270 */
271 ERREXIT(cinfo, JERR_BUFFER_SIZE);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000272 }
273
Leon Scroggins III3993b372018-07-16 10:43:45 -0400274 dest = (my_mem_dest_ptr)cinfo->dest;
Guido Vollbeding989630f2010-01-10 00:00:00 +0000275 dest->pub.init_destination = init_mem_destination;
276 dest->pub.empty_output_buffer = empty_mem_output_buffer;
277 dest->pub.term_destination = term_mem_destination;
278 dest->outbuffer = outbuffer;
279 dest->outsize = outsize;
280 dest->newbuffer = NULL;
281
282 if (*outbuffer == NULL || *outsize == 0) {
283 /* Allocate initial buffer */
Leon Scroggins III3993b372018-07-16 10:43:45 -0400284 dest->newbuffer = *outbuffer = (unsigned char *)malloc(OUTPUT_BUF_SIZE);
Guido Vollbeding989630f2010-01-10 00:00:00 +0000285 if (dest->newbuffer == NULL)
286 ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 10);
287 *outsize = OUTPUT_BUF_SIZE;
288 }
289
290 dest->pub.next_output_byte = dest->buffer = *outbuffer;
291 dest->pub.free_in_buffer = dest->bufsize = *outsize;
292}
DRC36a6eec2010-10-08 08:05:44 +0000293#endif