image_intensities 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/image_intensities/Makefile +73 -4
- data/ext/image_intensities/turbojpeg/cderror.h +137 -0
- data/ext/image_intensities/turbojpeg/cdjpeg.h +157 -0
- data/ext/image_intensities/turbojpeg/cmyk.h +61 -0
- data/ext/image_intensities/turbojpeg/jaricom.c +157 -0
- data/ext/image_intensities/turbojpeg/jcapimin.c +295 -0
- data/ext/image_intensities/turbojpeg/jcapistd.c +162 -0
- data/ext/image_intensities/turbojpeg/jcarith.c +932 -0
- data/ext/image_intensities/turbojpeg/jccoefct.c +449 -0
- data/ext/image_intensities/turbojpeg/jccolext.c +144 -0
- data/ext/image_intensities/turbojpeg/jccolor.c +710 -0
- data/ext/image_intensities/turbojpeg/jcdctmgr.c +721 -0
- data/ext/image_intensities/turbojpeg/jchuff.c +1096 -0
- data/ext/image_intensities/turbojpeg/jchuff.h +42 -0
- data/ext/image_intensities/turbojpeg/jcicc.c +105 -0
- data/ext/image_intensities/turbojpeg/jcinit.c +77 -0
- data/ext/image_intensities/turbojpeg/jcmainct.c +162 -0
- data/ext/image_intensities/turbojpeg/jcmarker.c +664 -0
- data/ext/image_intensities/turbojpeg/jcmaster.c +640 -0
- data/ext/image_intensities/turbojpeg/jcomapi.c +109 -0
- data/ext/image_intensities/turbojpeg/jconfig.h +73 -0
- data/ext/image_intensities/turbojpeg/jconfigint.h +31 -0
- data/ext/image_intensities/turbojpeg/jcparam.c +541 -0
- data/ext/image_intensities/turbojpeg/jcphuff.c +1105 -0
- data/ext/image_intensities/turbojpeg/jcprepct.c +351 -0
- data/ext/image_intensities/turbojpeg/jcsample.c +539 -0
- data/ext/image_intensities/turbojpeg/jctrans.c +400 -0
- data/ext/image_intensities/turbojpeg/jdapimin.c +407 -0
- data/ext/image_intensities/turbojpeg/jdapistd.c +639 -0
- data/ext/image_intensities/turbojpeg/jdarith.c +773 -0
- data/ext/image_intensities/turbojpeg/jdatadst-tj.c +203 -0
- data/ext/image_intensities/turbojpeg/jdatadst.c +293 -0
- data/ext/image_intensities/turbojpeg/jdatasrc-tj.c +194 -0
- data/ext/image_intensities/turbojpeg/jdatasrc.c +295 -0
- data/ext/image_intensities/turbojpeg/jdcoefct.c +692 -0
- data/ext/image_intensities/turbojpeg/jdcoefct.h +82 -0
- data/ext/image_intensities/turbojpeg/jdcol565.c +384 -0
- data/ext/image_intensities/turbojpeg/jdcolext.c +143 -0
- data/ext/image_intensities/turbojpeg/jdcolor.c +883 -0
- data/ext/image_intensities/turbojpeg/jdct.h +208 -0
- data/ext/image_intensities/turbojpeg/jddctmgr.c +352 -0
- data/ext/image_intensities/turbojpeg/jdhuff.c +831 -0
- data/ext/image_intensities/turbojpeg/jdhuff.h +238 -0
- data/ext/image_intensities/turbojpeg/jdicc.c +171 -0
- data/ext/image_intensities/turbojpeg/jdinput.c +408 -0
- data/ext/image_intensities/turbojpeg/jdmainct.c +460 -0
- data/ext/image_intensities/turbojpeg/jdmainct.h +71 -0
- data/ext/image_intensities/turbojpeg/jdmarker.c +1377 -0
- data/ext/image_intensities/turbojpeg/jdmaster.c +737 -0
- data/ext/image_intensities/turbojpeg/jdmaster.h +28 -0
- data/ext/image_intensities/turbojpeg/jdmerge.c +617 -0
- data/ext/image_intensities/turbojpeg/jdmrg565.c +354 -0
- data/ext/image_intensities/turbojpeg/jdmrgext.c +184 -0
- data/ext/image_intensities/turbojpeg/jdphuff.c +687 -0
- data/ext/image_intensities/turbojpeg/jdpostct.c +294 -0
- data/ext/image_intensities/turbojpeg/jdsample.c +518 -0
- data/ext/image_intensities/turbojpeg/jdsample.h +50 -0
- data/ext/image_intensities/turbojpeg/jdtrans.c +155 -0
- data/ext/image_intensities/turbojpeg/jerror.c +251 -0
- data/ext/image_intensities/turbojpeg/jfdctflt.c +169 -0
- data/ext/image_intensities/turbojpeg/jfdctfst.c +227 -0
- data/ext/image_intensities/turbojpeg/jfdctint.c +288 -0
- data/ext/image_intensities/turbojpeg/jidctflt.c +240 -0
- data/ext/image_intensities/turbojpeg/jidctfst.c +371 -0
- data/ext/image_intensities/turbojpeg/jidctint.c +2627 -0
- data/ext/image_intensities/turbojpeg/jidctred.c +409 -0
- data/ext/image_intensities/turbojpeg/jinclude.h +88 -0
- data/ext/image_intensities/turbojpeg/jmemmgr.c +1179 -0
- data/ext/image_intensities/turbojpeg/jmemnobs.c +115 -0
- data/ext/image_intensities/turbojpeg/jmemsys.h +178 -0
- data/ext/image_intensities/turbojpeg/jpeg_nbits_table.h +4098 -0
- data/ext/image_intensities/turbojpeg/jpegcomp.h +31 -0
- data/ext/image_intensities/turbojpeg/jquant1.c +859 -0
- data/ext/image_intensities/turbojpeg/jquant2.c +1285 -0
- data/ext/image_intensities/turbojpeg/jsimd.h +117 -0
- data/ext/image_intensities/turbojpeg/jsimd_none.c +418 -0
- data/ext/image_intensities/turbojpeg/jsimddct.h +70 -0
- data/ext/image_intensities/turbojpeg/jstdhuff.c +143 -0
- data/ext/image_intensities/turbojpeg/jutils.c +133 -0
- data/ext/image_intensities/turbojpeg/jversion.h +52 -0
- data/ext/image_intensities/turbojpeg/libturbojpeg.a +0 -0
- data/ext/image_intensities/turbojpeg/rdbmp.c +689 -0
- data/ext/image_intensities/turbojpeg/rdppm.c +766 -0
- data/ext/image_intensities/turbojpeg/tjutil.h +47 -0
- data/ext/image_intensities/turbojpeg/transupp.c +1628 -0
- data/ext/image_intensities/turbojpeg/transupp.h +210 -0
- data/ext/image_intensities/turbojpeg/turbojpeg.c +2150 -0
- data/ext/image_intensities/turbojpeg/wrbmp.c +558 -0
- data/ext/image_intensities/turbojpeg/wrppm.c +365 -0
- data/image_intensities.gemspec +1 -1
- data/lib/image_intensities/version.rb +1 -1
- metadata +91 -3
@@ -0,0 +1,203 @@
|
|
1
|
+
/*
|
2
|
+
* jdatadst-tj.c
|
3
|
+
*
|
4
|
+
* This file was part of the Independent JPEG Group's software:
|
5
|
+
* Copyright (C) 1994-1996, Thomas G. Lane.
|
6
|
+
* Modified 2009-2012 by Guido Vollbeding.
|
7
|
+
* libjpeg-turbo Modifications:
|
8
|
+
* Copyright (C) 2011, 2014, 2016, 2019, D. R. Commander.
|
9
|
+
* For conditions of distribution and use, see the accompanying README.ijg
|
10
|
+
* file.
|
11
|
+
*
|
12
|
+
* This file contains compression data destination routines for the case of
|
13
|
+
* 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.
|
16
|
+
* 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
|
+
|
26
|
+
#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
|
27
|
+
extern void *malloc(size_t size);
|
28
|
+
extern void free(void *ptr);
|
29
|
+
#endif
|
30
|
+
void jpeg_mem_dest_tj(j_compress_ptr cinfo, unsigned char **outbuffer,
|
31
|
+
unsigned long *outsize, boolean alloc);
|
32
|
+
|
33
|
+
|
34
|
+
#define OUTPUT_BUF_SIZE 4096 /* choose an efficiently fwrite'able size */
|
35
|
+
|
36
|
+
|
37
|
+
/* Expanded data destination object for memory output */
|
38
|
+
|
39
|
+
typedef struct {
|
40
|
+
struct jpeg_destination_mgr pub; /* public fields */
|
41
|
+
|
42
|
+
unsigned char **outbuffer; /* target buffer */
|
43
|
+
unsigned long *outsize;
|
44
|
+
unsigned char *newbuffer; /* newly allocated buffer */
|
45
|
+
JOCTET *buffer; /* start of buffer */
|
46
|
+
size_t bufsize;
|
47
|
+
boolean alloc;
|
48
|
+
} my_mem_destination_mgr;
|
49
|
+
|
50
|
+
typedef my_mem_destination_mgr *my_mem_dest_ptr;
|
51
|
+
|
52
|
+
|
53
|
+
/*
|
54
|
+
* Initialize destination --- called by jpeg_start_compress
|
55
|
+
* before any data is actually written.
|
56
|
+
*/
|
57
|
+
|
58
|
+
METHODDEF(void)
|
59
|
+
init_mem_destination(j_compress_ptr cinfo)
|
60
|
+
{
|
61
|
+
/* no work necessary here */
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
/*
|
66
|
+
* Empty the output buffer --- called whenever buffer fills up.
|
67
|
+
*
|
68
|
+
* In typical applications, this should write the entire output buffer
|
69
|
+
* (ignoring the current state of next_output_byte & free_in_buffer),
|
70
|
+
* reset the pointer & count to the start of the buffer, and return TRUE
|
71
|
+
* indicating that the buffer has been dumped.
|
72
|
+
*
|
73
|
+
* In applications that need to be able to suspend compression due to output
|
74
|
+
* overrun, a FALSE return indicates that the buffer cannot be emptied now.
|
75
|
+
* In this situation, the compressor will return to its caller (possibly with
|
76
|
+
* an indication that it has not accepted all the supplied scanlines). The
|
77
|
+
* application should resume compression after it has made more room in the
|
78
|
+
* output buffer. Note that there are substantial restrictions on the use of
|
79
|
+
* suspension --- see the documentation.
|
80
|
+
*
|
81
|
+
* When suspending, the compressor will back up to a convenient restart point
|
82
|
+
* (typically the start of the current MCU). next_output_byte & free_in_buffer
|
83
|
+
* indicate where the restart point will be if the current call returns FALSE.
|
84
|
+
* Data beyond this point will be regenerated after resumption, so do not
|
85
|
+
* write it out when emptying the buffer externally.
|
86
|
+
*/
|
87
|
+
|
88
|
+
METHODDEF(boolean)
|
89
|
+
empty_mem_output_buffer(j_compress_ptr cinfo)
|
90
|
+
{
|
91
|
+
size_t nextsize;
|
92
|
+
JOCTET *nextbuffer;
|
93
|
+
my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest;
|
94
|
+
|
95
|
+
if (!dest->alloc) ERREXIT(cinfo, JERR_BUFFER_SIZE);
|
96
|
+
|
97
|
+
/* Try to allocate new buffer with double size */
|
98
|
+
nextsize = dest->bufsize * 2;
|
99
|
+
nextbuffer = (JOCTET *)malloc(nextsize);
|
100
|
+
|
101
|
+
if (nextbuffer == NULL)
|
102
|
+
ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 10);
|
103
|
+
|
104
|
+
MEMCOPY(nextbuffer, dest->buffer, dest->bufsize);
|
105
|
+
|
106
|
+
if (dest->newbuffer != NULL)
|
107
|
+
free(dest->newbuffer);
|
108
|
+
|
109
|
+
dest->newbuffer = nextbuffer;
|
110
|
+
|
111
|
+
dest->pub.next_output_byte = nextbuffer + dest->bufsize;
|
112
|
+
dest->pub.free_in_buffer = dest->bufsize;
|
113
|
+
|
114
|
+
dest->buffer = nextbuffer;
|
115
|
+
dest->bufsize = nextsize;
|
116
|
+
|
117
|
+
return TRUE;
|
118
|
+
}
|
119
|
+
|
120
|
+
|
121
|
+
/*
|
122
|
+
* Terminate destination --- called by jpeg_finish_compress
|
123
|
+
* after all data has been written. Usually needs to flush buffer.
|
124
|
+
*
|
125
|
+
* NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
|
126
|
+
* application must deal with any cleanup that should happen even
|
127
|
+
* for error exit.
|
128
|
+
*/
|
129
|
+
|
130
|
+
METHODDEF(void)
|
131
|
+
term_mem_destination(j_compress_ptr cinfo)
|
132
|
+
{
|
133
|
+
my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest;
|
134
|
+
|
135
|
+
if (dest->alloc) *dest->outbuffer = dest->buffer;
|
136
|
+
*dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
|
137
|
+
}
|
138
|
+
|
139
|
+
|
140
|
+
/*
|
141
|
+
* Prepare for output to a memory buffer.
|
142
|
+
* The caller may supply an own initial buffer with appropriate size.
|
143
|
+
* Otherwise, or when the actual data output exceeds the given size,
|
144
|
+
* the library adapts the buffer size as necessary.
|
145
|
+
* The standard library functions malloc/free are used for allocating
|
146
|
+
* larger memory, so the buffer is available to the application after
|
147
|
+
* finishing compression, and then the application is responsible for
|
148
|
+
* freeing the requested memory.
|
149
|
+
*/
|
150
|
+
|
151
|
+
GLOBAL(void)
|
152
|
+
jpeg_mem_dest_tj(j_compress_ptr cinfo, unsigned char **outbuffer,
|
153
|
+
unsigned long *outsize, boolean alloc)
|
154
|
+
{
|
155
|
+
boolean reused = FALSE;
|
156
|
+
my_mem_dest_ptr dest;
|
157
|
+
|
158
|
+
if (outbuffer == NULL || outsize == NULL) /* sanity check */
|
159
|
+
ERREXIT(cinfo, JERR_BUFFER_SIZE);
|
160
|
+
|
161
|
+
/* The destination object is made permanent so that multiple JPEG images
|
162
|
+
* can be written to the same buffer without re-executing jpeg_mem_dest.
|
163
|
+
*/
|
164
|
+
if (cinfo->dest == NULL) { /* first time for this JPEG object? */
|
165
|
+
cinfo->dest = (struct jpeg_destination_mgr *)
|
166
|
+
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
|
167
|
+
sizeof(my_mem_destination_mgr));
|
168
|
+
dest = (my_mem_dest_ptr)cinfo->dest;
|
169
|
+
dest->newbuffer = NULL;
|
170
|
+
dest->buffer = NULL;
|
171
|
+
} else if (cinfo->dest->init_destination != init_mem_destination) {
|
172
|
+
/* It is unsafe to reuse the existing destination manager unless it was
|
173
|
+
* created by this function.
|
174
|
+
*/
|
175
|
+
ERREXIT(cinfo, JERR_BUFFER_SIZE);
|
176
|
+
}
|
177
|
+
|
178
|
+
dest = (my_mem_dest_ptr)cinfo->dest;
|
179
|
+
dest->pub.init_destination = init_mem_destination;
|
180
|
+
dest->pub.empty_output_buffer = empty_mem_output_buffer;
|
181
|
+
dest->pub.term_destination = term_mem_destination;
|
182
|
+
if (dest->buffer == *outbuffer && *outbuffer != NULL && alloc)
|
183
|
+
reused = TRUE;
|
184
|
+
dest->outbuffer = outbuffer;
|
185
|
+
dest->outsize = outsize;
|
186
|
+
dest->alloc = alloc;
|
187
|
+
|
188
|
+
if (*outbuffer == NULL || *outsize == 0) {
|
189
|
+
if (alloc) {
|
190
|
+
/* Allocate initial buffer */
|
191
|
+
dest->newbuffer = *outbuffer = (unsigned char *)malloc(OUTPUT_BUF_SIZE);
|
192
|
+
if (dest->newbuffer == NULL)
|
193
|
+
ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 10);
|
194
|
+
*outsize = OUTPUT_BUF_SIZE;
|
195
|
+
} else
|
196
|
+
ERREXIT(cinfo, JERR_BUFFER_SIZE);
|
197
|
+
}
|
198
|
+
|
199
|
+
dest->pub.next_output_byte = dest->buffer = *outbuffer;
|
200
|
+
if (!reused)
|
201
|
+
dest->bufsize = *outsize;
|
202
|
+
dest->pub.free_in_buffer = dest->bufsize;
|
203
|
+
}
|
@@ -0,0 +1,293 @@
|
|
1
|
+
/*
|
2
|
+
* jdatadst.c
|
3
|
+
*
|
4
|
+
* This file was part of the Independent JPEG Group's software:
|
5
|
+
* Copyright (C) 1994-1996, Thomas G. Lane.
|
6
|
+
* Modified 2009-2012 by Guido Vollbeding.
|
7
|
+
* libjpeg-turbo Modifications:
|
8
|
+
* Copyright (C) 2013, 2016, D. R. Commander.
|
9
|
+
* For conditions of distribution and use, see the accompanying README.ijg
|
10
|
+
* file.
|
11
|
+
*
|
12
|
+
* This file contains compression data destination routines for the case of
|
13
|
+
* 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.
|
16
|
+
* 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
|
+
|
26
|
+
#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
|
27
|
+
extern void *malloc(size_t size);
|
28
|
+
extern void free(void *ptr);
|
29
|
+
#endif
|
30
|
+
|
31
|
+
|
32
|
+
/* Expanded data destination object for stdio output */
|
33
|
+
|
34
|
+
typedef struct {
|
35
|
+
struct jpeg_destination_mgr pub; /* public fields */
|
36
|
+
|
37
|
+
FILE *outfile; /* target stream */
|
38
|
+
JOCTET *buffer; /* start of buffer */
|
39
|
+
} my_destination_mgr;
|
40
|
+
|
41
|
+
typedef my_destination_mgr *my_dest_ptr;
|
42
|
+
|
43
|
+
#define OUTPUT_BUF_SIZE 4096 /* choose an efficiently fwrite'able size */
|
44
|
+
|
45
|
+
|
46
|
+
#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
|
47
|
+
/* Expanded data destination object for memory output */
|
48
|
+
|
49
|
+
typedef struct {
|
50
|
+
struct jpeg_destination_mgr pub; /* public fields */
|
51
|
+
|
52
|
+
unsigned char **outbuffer; /* target buffer */
|
53
|
+
unsigned long *outsize;
|
54
|
+
unsigned char *newbuffer; /* newly allocated buffer */
|
55
|
+
JOCTET *buffer; /* start of buffer */
|
56
|
+
size_t bufsize;
|
57
|
+
} my_mem_destination_mgr;
|
58
|
+
|
59
|
+
typedef my_mem_destination_mgr *my_mem_dest_ptr;
|
60
|
+
#endif
|
61
|
+
|
62
|
+
|
63
|
+
/*
|
64
|
+
* Initialize destination --- called by jpeg_start_compress
|
65
|
+
* before any data is actually written.
|
66
|
+
*/
|
67
|
+
|
68
|
+
METHODDEF(void)
|
69
|
+
init_destination(j_compress_ptr cinfo)
|
70
|
+
{
|
71
|
+
my_dest_ptr dest = (my_dest_ptr)cinfo->dest;
|
72
|
+
|
73
|
+
/* Allocate the output buffer --- it will be released when done with image */
|
74
|
+
dest->buffer = (JOCTET *)
|
75
|
+
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
|
76
|
+
OUTPUT_BUF_SIZE * sizeof(JOCTET));
|
77
|
+
|
78
|
+
dest->pub.next_output_byte = dest->buffer;
|
79
|
+
dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
|
80
|
+
}
|
81
|
+
|
82
|
+
#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
|
83
|
+
METHODDEF(void)
|
84
|
+
init_mem_destination(j_compress_ptr cinfo)
|
85
|
+
{
|
86
|
+
/* no work necessary here */
|
87
|
+
}
|
88
|
+
#endif
|
89
|
+
|
90
|
+
|
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
|
+
|
114
|
+
METHODDEF(boolean)
|
115
|
+
empty_output_buffer(j_compress_ptr cinfo)
|
116
|
+
{
|
117
|
+
my_dest_ptr dest = (my_dest_ptr)cinfo->dest;
|
118
|
+
|
119
|
+
if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) !=
|
120
|
+
(size_t)OUTPUT_BUF_SIZE)
|
121
|
+
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
|
+
|
129
|
+
#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
|
130
|
+
METHODDEF(boolean)
|
131
|
+
empty_mem_output_buffer(j_compress_ptr cinfo)
|
132
|
+
{
|
133
|
+
size_t nextsize;
|
134
|
+
JOCTET *nextbuffer;
|
135
|
+
my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest;
|
136
|
+
|
137
|
+
/* Try to allocate new buffer with double size */
|
138
|
+
nextsize = dest->bufsize * 2;
|
139
|
+
nextbuffer = (JOCTET *)malloc(nextsize);
|
140
|
+
|
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
|
+
}
|
159
|
+
#endif
|
160
|
+
|
161
|
+
|
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
|
+
|
171
|
+
METHODDEF(void)
|
172
|
+
term_destination(j_compress_ptr cinfo)
|
173
|
+
{
|
174
|
+
my_dest_ptr dest = (my_dest_ptr)cinfo->dest;
|
175
|
+
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
|
+
|
188
|
+
#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
|
189
|
+
METHODDEF(void)
|
190
|
+
term_mem_destination(j_compress_ptr cinfo)
|
191
|
+
{
|
192
|
+
my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest;
|
193
|
+
|
194
|
+
*dest->outbuffer = dest->buffer;
|
195
|
+
*dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
|
196
|
+
}
|
197
|
+
#endif
|
198
|
+
|
199
|
+
|
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
|
+
|
206
|
+
GLOBAL(void)
|
207
|
+
jpeg_stdio_dest(j_compress_ptr cinfo, FILE *outfile)
|
208
|
+
{
|
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.
|
213
|
+
*/
|
214
|
+
if (cinfo->dest == NULL) { /* first time for this JPEG object? */
|
215
|
+
cinfo->dest = (struct jpeg_destination_mgr *)
|
216
|
+
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
|
217
|
+
sizeof(my_destination_mgr));
|
218
|
+
} 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);
|
226
|
+
}
|
227
|
+
|
228
|
+
dest = (my_dest_ptr)cinfo->dest;
|
229
|
+
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
|
+
}
|
234
|
+
|
235
|
+
|
236
|
+
#if JPEG_LIB_VERSION >= 80 || defined(MEM_SRCDST_SUPPORTED)
|
237
|
+
/*
|
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.
|
246
|
+
* 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.
|
249
|
+
*/
|
250
|
+
|
251
|
+
GLOBAL(void)
|
252
|
+
jpeg_mem_dest(j_compress_ptr cinfo, unsigned char **outbuffer,
|
253
|
+
unsigned long *outsize)
|
254
|
+
{
|
255
|
+
my_mem_dest_ptr dest;
|
256
|
+
|
257
|
+
if (outbuffer == NULL || outsize == NULL) /* sanity check */
|
258
|
+
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
|
+
*/
|
263
|
+
if (cinfo->dest == NULL) { /* first time for this JPEG object? */
|
264
|
+
cinfo->dest = (struct jpeg_destination_mgr *)
|
265
|
+
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
|
266
|
+
sizeof(my_mem_destination_mgr));
|
267
|
+
} 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);
|
272
|
+
}
|
273
|
+
|
274
|
+
dest = (my_mem_dest_ptr)cinfo->dest;
|
275
|
+
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 */
|
284
|
+
dest->newbuffer = *outbuffer = (unsigned char *)malloc(OUTPUT_BUF_SIZE);
|
285
|
+
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
|
+
}
|
293
|
+
#endif
|
@@ -0,0 +1,194 @@
|
|
1
|
+
/*
|
2
|
+
* jdatasrc-tj.c
|
3
|
+
*
|
4
|
+
* This file was part of the Independent JPEG Group's software:
|
5
|
+
* Copyright (C) 1994-1996, Thomas G. Lane.
|
6
|
+
* Modified 2009-2011 by Guido Vollbeding.
|
7
|
+
* libjpeg-turbo Modifications:
|
8
|
+
* Copyright (C) 2011, 2016, 2019, D. R. Commander.
|
9
|
+
* For conditions of distribution and use, see the accompanying README.ijg
|
10
|
+
* file.
|
11
|
+
*
|
12
|
+
* This file contains decompression data source routines for the case of
|
13
|
+
* reading JPEG data from memory or from a file (or any stdio stream).
|
14
|
+
* While these routines are sufficient for most applications,
|
15
|
+
* some will want to use a different source manager.
|
16
|
+
* IMPORTANT: we assume that fread() will correctly transcribe an array of
|
17
|
+
* JOCTETs from 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
|
+
|
26
|
+
void jpeg_mem_src_tj(j_decompress_ptr cinfo, const unsigned char *inbuffer,
|
27
|
+
unsigned long insize);
|
28
|
+
|
29
|
+
|
30
|
+
/*
|
31
|
+
* Initialize source --- called by jpeg_read_header
|
32
|
+
* before any data is actually read.
|
33
|
+
*/
|
34
|
+
|
35
|
+
METHODDEF(void)
|
36
|
+
init_mem_source(j_decompress_ptr cinfo)
|
37
|
+
{
|
38
|
+
/* no work necessary here */
|
39
|
+
}
|
40
|
+
|
41
|
+
|
42
|
+
/*
|
43
|
+
* Fill the input buffer --- called whenever buffer is emptied.
|
44
|
+
*
|
45
|
+
* In typical applications, this should read fresh data into the buffer
|
46
|
+
* (ignoring the current state of next_input_byte & bytes_in_buffer),
|
47
|
+
* reset the pointer & count to the start of the buffer, and return TRUE
|
48
|
+
* indicating that the buffer has been reloaded. It is not necessary to
|
49
|
+
* fill the buffer entirely, only to obtain at least one more byte.
|
50
|
+
*
|
51
|
+
* There is no such thing as an EOF return. If the end of the file has been
|
52
|
+
* reached, the routine has a choice of ERREXIT() or inserting fake data into
|
53
|
+
* the buffer. In most cases, generating a warning message and inserting a
|
54
|
+
* fake EOI marker is the best course of action --- this will allow the
|
55
|
+
* decompressor to output however much of the image is there. However,
|
56
|
+
* the resulting error message is misleading if the real problem is an empty
|
57
|
+
* input file, so we handle that case specially.
|
58
|
+
*
|
59
|
+
* In applications that need to be able to suspend compression due to input
|
60
|
+
* not being available yet, a FALSE return indicates that no more data can be
|
61
|
+
* obtained right now, but more may be forthcoming later. In this situation,
|
62
|
+
* the decompressor will return to its caller (with an indication of the
|
63
|
+
* number of scanlines it has read, if any). The application should resume
|
64
|
+
* decompression after it has loaded more data into the input buffer. Note
|
65
|
+
* that there are substantial restrictions on the use of suspension --- see
|
66
|
+
* the documentation.
|
67
|
+
*
|
68
|
+
* When suspending, the decompressor will back up to a convenient restart point
|
69
|
+
* (typically the start of the current MCU). next_input_byte & bytes_in_buffer
|
70
|
+
* indicate where the restart point will be if the current call returns FALSE.
|
71
|
+
* Data beyond this point must be rescanned after resumption, so move it to
|
72
|
+
* the front of the buffer rather than discarding it.
|
73
|
+
*/
|
74
|
+
|
75
|
+
METHODDEF(boolean)
|
76
|
+
fill_mem_input_buffer(j_decompress_ptr cinfo)
|
77
|
+
{
|
78
|
+
static const JOCTET mybuffer[4] = {
|
79
|
+
(JOCTET)0xFF, (JOCTET)JPEG_EOI, 0, 0
|
80
|
+
};
|
81
|
+
|
82
|
+
/* The whole JPEG data is expected to reside in the supplied memory
|
83
|
+
* buffer, so any request for more data beyond the given buffer size
|
84
|
+
* is treated as an error.
|
85
|
+
*/
|
86
|
+
WARNMS(cinfo, JWRN_JPEG_EOF);
|
87
|
+
|
88
|
+
/* Insert a fake EOI marker */
|
89
|
+
|
90
|
+
cinfo->src->next_input_byte = mybuffer;
|
91
|
+
cinfo->src->bytes_in_buffer = 2;
|
92
|
+
|
93
|
+
return TRUE;
|
94
|
+
}
|
95
|
+
|
96
|
+
|
97
|
+
/*
|
98
|
+
* Skip data --- used to skip over a potentially large amount of
|
99
|
+
* uninteresting data (such as an APPn marker).
|
100
|
+
*
|
101
|
+
* Writers of suspendable-input applications must note that skip_input_data
|
102
|
+
* is not granted the right to give a suspension return. If the skip extends
|
103
|
+
* beyond the data currently in the buffer, the buffer can be marked empty so
|
104
|
+
* that the next read will cause a fill_input_buffer call that can suspend.
|
105
|
+
* Arranging for additional bytes to be discarded before reloading the input
|
106
|
+
* buffer is the application writer's problem.
|
107
|
+
*/
|
108
|
+
|
109
|
+
METHODDEF(void)
|
110
|
+
skip_input_data(j_decompress_ptr cinfo, long num_bytes)
|
111
|
+
{
|
112
|
+
struct jpeg_source_mgr *src = cinfo->src;
|
113
|
+
|
114
|
+
/* Just a dumb implementation for now. Could use fseek() except
|
115
|
+
* it doesn't work on pipes. Not clear that being smart is worth
|
116
|
+
* any trouble anyway --- large skips are infrequent.
|
117
|
+
*/
|
118
|
+
if (num_bytes > 0) {
|
119
|
+
while (num_bytes > (long)src->bytes_in_buffer) {
|
120
|
+
num_bytes -= (long)src->bytes_in_buffer;
|
121
|
+
(void)(*src->fill_input_buffer) (cinfo);
|
122
|
+
/* note we assume that fill_input_buffer will never return FALSE,
|
123
|
+
* so suspension need not be handled.
|
124
|
+
*/
|
125
|
+
}
|
126
|
+
src->next_input_byte += (size_t)num_bytes;
|
127
|
+
src->bytes_in_buffer -= (size_t)num_bytes;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
/*
|
133
|
+
* An additional method that can be provided by data source modules is the
|
134
|
+
* resync_to_restart method for error recovery in the presence of RST markers.
|
135
|
+
* For the moment, this source module just uses the default resync method
|
136
|
+
* provided by the JPEG library. That method assumes that no backtracking
|
137
|
+
* is possible.
|
138
|
+
*/
|
139
|
+
|
140
|
+
|
141
|
+
/*
|
142
|
+
* Terminate source --- called by jpeg_finish_decompress
|
143
|
+
* after all data has been read. Often a no-op.
|
144
|
+
*
|
145
|
+
* NB: *not* called by jpeg_abort or jpeg_destroy; surrounding
|
146
|
+
* application must deal with any cleanup that should happen even
|
147
|
+
* for error exit.
|
148
|
+
*/
|
149
|
+
|
150
|
+
METHODDEF(void)
|
151
|
+
term_source(j_decompress_ptr cinfo)
|
152
|
+
{
|
153
|
+
/* no work necessary here */
|
154
|
+
}
|
155
|
+
|
156
|
+
|
157
|
+
/*
|
158
|
+
* Prepare for input from a supplied memory buffer.
|
159
|
+
* The buffer must contain the whole JPEG data.
|
160
|
+
*/
|
161
|
+
|
162
|
+
GLOBAL(void)
|
163
|
+
jpeg_mem_src_tj(j_decompress_ptr cinfo, const unsigned char *inbuffer,
|
164
|
+
unsigned long insize)
|
165
|
+
{
|
166
|
+
struct jpeg_source_mgr *src;
|
167
|
+
|
168
|
+
if (inbuffer == NULL || insize == 0) /* Treat empty input as fatal error */
|
169
|
+
ERREXIT(cinfo, JERR_INPUT_EMPTY);
|
170
|
+
|
171
|
+
/* The source object is made permanent so that a series of JPEG images
|
172
|
+
* can be read from the same buffer by calling jpeg_mem_src only before
|
173
|
+
* the first one.
|
174
|
+
*/
|
175
|
+
if (cinfo->src == NULL) { /* first time for this JPEG object? */
|
176
|
+
cinfo->src = (struct jpeg_source_mgr *)
|
177
|
+
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
|
178
|
+
sizeof(struct jpeg_source_mgr));
|
179
|
+
} else if (cinfo->src->init_source != init_mem_source) {
|
180
|
+
/* It is unsafe to reuse the existing source manager unless it was created
|
181
|
+
* by this function.
|
182
|
+
*/
|
183
|
+
ERREXIT(cinfo, JERR_BUFFER_SIZE);
|
184
|
+
}
|
185
|
+
|
186
|
+
src = cinfo->src;
|
187
|
+
src->init_source = init_mem_source;
|
188
|
+
src->fill_input_buffer = fill_mem_input_buffer;
|
189
|
+
src->skip_input_data = skip_input_data;
|
190
|
+
src->resync_to_restart = jpeg_resync_to_restart; /* use default method */
|
191
|
+
src->term_source = term_source;
|
192
|
+
src->bytes_in_buffer = (size_t)insize;
|
193
|
+
src->next_input_byte = (const JOCTET *)inbuffer;
|
194
|
+
}
|