blob: 7610221b4d0735505c7331e1337f8e54b57bbf4b [file] [log] [blame]
DRC9b28def2011-05-21 14:37:15 +00001/*
DRCfd3aba32012-06-29 23:14:48 +00002 * Copyright (C)2009-2012 D. R. Commander. All Rights Reserved.
DRC2e7b76b2009-04-03 12:04:24 +00003 *
DRC9b28def2011-05-21 14:37:15 +00004 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
DRC2e7b76b2009-04-03 12:04:24 +00006 *
DRC9b28def2011-05-21 14:37:15 +00007 * - Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.
9 * - Redistributions in binary form must reproduce the above copyright notice,
10 * this list of conditions and the following disclaimer in the documentation
11 * and/or other materials provided with the distribution.
12 * - Neither the name of the libjpeg-turbo Project nor the names of its
13 * contributors may be used to endorse or promote products derived from this
14 * software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
DRC2e7b76b2009-04-03 12:04:24 +000027 */
28
DRC3a1bb352011-05-24 09:15:44 +000029#ifndef __TURBOJPEG_H__
30#define __TURBOJPEG_H__
31
DRC9b28def2011-05-21 14:37:15 +000032#if defined(_WIN32) && defined(DLLDEFINE)
DRC2e7b76b2009-04-03 12:04:24 +000033#define DLLEXPORT __declspec(dllexport)
34#else
35#define DLLEXPORT
36#endif
DRC2e7b76b2009-04-03 12:04:24 +000037#define DLLCALL
38
DRC2e7b76b2009-04-03 12:04:24 +000039
DRC9b28def2011-05-21 14:37:15 +000040/**
41 * @addtogroup TurboJPEG
42 * TurboJPEG API. This API provides an interface for generating, decoding, and
43 * transforming planar YUV and JPEG images in memory.
44 *
45 * @{
46 */
DRC2e7b76b2009-04-03 12:04:24 +000047
DRC0a325192011-03-02 09:22:41 +000048
DRC9b28def2011-05-21 14:37:15 +000049/**
50 * The number of chrominance subsampling options
51 */
52#define TJ_NUMSAMP 5
DRCfbb67472010-11-24 04:02:37 +000053
DRC9b28def2011-05-21 14:37:15 +000054/**
55 * Chrominance subsampling options.
DRC9b28def2011-05-21 14:37:15 +000056 * When an image is converted from the RGB to the YCbCr colorspace as part of
57 * the JPEG compression process, some of the Cb and Cr (chrominance) components
58 * can be discarded or averaged together to produce a smaller image with little
59 * perceptible loss of image clarity (the human eye is more sensitive to small
60 * changes in brightness than small changes in color.) This is called
61 * "chrominance subsampling".
62 */
DRC25b995a2011-05-21 15:34:54 +000063enum TJSAMP
DRC109a5782011-03-01 09:53:07 +000064{
DRC9b28def2011-05-21 14:37:15 +000065 /**
66 * 4:4:4 chrominance subsampling (no chrominance subsampling). The JPEG or
67 * YUV image will contain one chrominance component for every pixel in the
68 * source image.
69 */
DRC25b995a2011-05-21 15:34:54 +000070 TJSAMP_444=0,
DRC9b28def2011-05-21 14:37:15 +000071 /**
72 * 4:2:2 chrominance subsampling. The JPEG or YUV image will contain one
73 * chrominance component for every 2x1 block of pixels in the source image.
74 */
DRC25b995a2011-05-21 15:34:54 +000075 TJSAMP_422,
DRC9b28def2011-05-21 14:37:15 +000076 /**
77 * 4:2:0 chrominance subsampling. The JPEG or YUV image will contain one
78 * chrominance component for every 2x2 block of pixels in the source image.
79 */
DRC25b995a2011-05-21 15:34:54 +000080 TJSAMP_420,
DRC9b28def2011-05-21 14:37:15 +000081 /**
82 * Grayscale. The JPEG or YUV image will contain no chrominance components.
83 */
DRC25b995a2011-05-21 15:34:54 +000084 TJSAMP_GRAY,
DRC9b28def2011-05-21 14:37:15 +000085 /**
86 * 4:4:0 chrominance subsampling. The JPEG or YUV image will contain one
87 * chrominance component for every 1x2 block of pixels in the source image.
88 */
DRC25b995a2011-05-21 15:34:54 +000089 TJSAMP_440
DRC890f1e02011-02-26 22:02:37 +000090};
91
DRC9b28def2011-05-21 14:37:15 +000092/**
93 * MCU block width (in pixels) for a given level of chrominance subsampling.
94 * MCU block sizes:
95 * - 8x8 for no subsampling or grayscale
96 * - 16x8 for 4:2:2
97 * - 8x16 for 4:4:0
98 * - 16x16 for 4:2:0
99 */
100static const int tjMCUWidth[TJ_NUMSAMP] = {8, 16, 16, 8, 8};
DRC890f1e02011-02-26 22:02:37 +0000101
DRC9b28def2011-05-21 14:37:15 +0000102/**
103 * MCU block height (in pixels) for a given level of chrominance subsampling.
104 * MCU block sizes:
105 * - 8x8 for no subsampling or grayscale
106 * - 16x8 for 4:2:2
107 * - 8x16 for 4:4:0
108 * - 16x16 for 4:2:0
109 */
110static const int tjMCUHeight[TJ_NUMSAMP] = {8, 8, 16, 8, 16};
111
112
113/**
114 * The number of pixel formats
115 */
DRC67ce3b22011-12-19 02:21:03 +0000116#define TJ_NUMPF 11
DRC9b28def2011-05-21 14:37:15 +0000117
118/**
119 * Pixel formats
DRC9b28def2011-05-21 14:37:15 +0000120 */
DRC25b995a2011-05-21 15:34:54 +0000121enum TJPF
DRC9b28def2011-05-21 14:37:15 +0000122{
123 /**
124 * RGB pixel format. The red, green, and blue components in the image are
125 * stored in 3-byte pixels in the order R, G, B from lowest to highest byte
126 * address within each pixel.
127 */
DRC25b995a2011-05-21 15:34:54 +0000128 TJPF_RGB=0,
DRC9b28def2011-05-21 14:37:15 +0000129 /**
130 * BGR pixel format. The red, green, and blue components in the image are
131 * stored in 3-byte pixels in the order B, G, R from lowest to highest byte
132 * address within each pixel.
133 */
DRC25b995a2011-05-21 15:34:54 +0000134 TJPF_BGR,
DRC9b28def2011-05-21 14:37:15 +0000135 /**
136 * RGBX pixel format. The red, green, and blue components in the image are
137 * stored in 4-byte pixels in the order R, G, B from lowest to highest byte
DRC67ce3b22011-12-19 02:21:03 +0000138 * address within each pixel. The X component is ignored when compressing
139 * and undefined when decompressing.
DRC9b28def2011-05-21 14:37:15 +0000140 */
DRC25b995a2011-05-21 15:34:54 +0000141 TJPF_RGBX,
DRC9b28def2011-05-21 14:37:15 +0000142 /**
143 * BGRX pixel format. The red, green, and blue components in the image are
144 * stored in 4-byte pixels in the order B, G, R from lowest to highest byte
DRC67ce3b22011-12-19 02:21:03 +0000145 * address within each pixel. The X component is ignored when compressing
146 * and undefined when decompressing.
DRC9b28def2011-05-21 14:37:15 +0000147 */
DRC25b995a2011-05-21 15:34:54 +0000148 TJPF_BGRX,
DRC9b28def2011-05-21 14:37:15 +0000149 /**
150 * XBGR pixel format. The red, green, and blue components in the image are
151 * stored in 4-byte pixels in the order R, G, B from highest to lowest byte
DRC67ce3b22011-12-19 02:21:03 +0000152 * address within each pixel. The X component is ignored when compressing
153 * and undefined when decompressing.
DRC9b28def2011-05-21 14:37:15 +0000154 */
DRC25b995a2011-05-21 15:34:54 +0000155 TJPF_XBGR,
DRC9b28def2011-05-21 14:37:15 +0000156 /**
157 * XRGB pixel format. The red, green, and blue components in the image are
158 * stored in 4-byte pixels in the order B, G, R from highest to lowest byte
DRC67ce3b22011-12-19 02:21:03 +0000159 * address within each pixel. The X component is ignored when compressing
160 * and undefined when decompressing.
DRC9b28def2011-05-21 14:37:15 +0000161 */
DRC25b995a2011-05-21 15:34:54 +0000162 TJPF_XRGB,
DRC9b28def2011-05-21 14:37:15 +0000163 /**
164 * Grayscale pixel format. Each 1-byte pixel represents a luminance
165 * (brightness) level from 0 to 255.
166 */
DRC67ce3b22011-12-19 02:21:03 +0000167 TJPF_GRAY,
168 /**
169 * RGBA pixel format. This is the same as @ref TJPF_RGBX, except that when
170 * decompressing, the X component is guaranteed to be 0xFF, which can be
171 * interpreted as an opaque alpha channel.
172 */
173 TJPF_RGBA,
174 /**
175 * BGRA pixel format. This is the same as @ref TJPF_BGRX, except that when
176 * decompressing, the X component is guaranteed to be 0xFF, which can be
177 * interpreted as an opaque alpha channel.
178 */
179 TJPF_BGRA,
180 /**
181 * ABGR pixel format. This is the same as @ref TJPF_XBGR, except that when
182 * decompressing, the X component is guaranteed to be 0xFF, which can be
183 * interpreted as an opaque alpha channel.
184 */
185 TJPF_ABGR,
186 /**
187 * ARGB pixel format. This is the same as @ref TJPF_XRGB, except that when
188 * decompressing, the X component is guaranteed to be 0xFF, which can be
189 * interpreted as an opaque alpha channel.
190 */
191 TJPF_ARGB
DRC9b28def2011-05-21 14:37:15 +0000192};
193
194/**
195 * Red offset (in bytes) for a given pixel format. This specifies the number
196 * of bytes that the red component is offset from the start of the pixel. For
197 * instance, if a pixel of format TJ_BGRX is stored in <tt>char pixel[]</tt>,
198 * then the red component will be <tt>pixel[tjRedOffset[TJ_BGRX]]</tt>.
199 */
DRC67ce3b22011-12-19 02:21:03 +0000200static const int tjRedOffset[TJ_NUMPF] = {0, 2, 0, 2, 3, 1, 0, 0, 2, 3, 1};
DRC9b28def2011-05-21 14:37:15 +0000201/**
202 * Green offset (in bytes) for a given pixel format. This specifies the number
203 * of bytes that the green component is offset from the start of the pixel.
204 * For instance, if a pixel of format TJ_BGRX is stored in
205 * <tt>char pixel[]</tt>, then the green component will be
206 * <tt>pixel[tjGreenOffset[TJ_BGRX]]</tt>.
207 */
DRC67ce3b22011-12-19 02:21:03 +0000208static const int tjGreenOffset[TJ_NUMPF] = {1, 1, 1, 1, 2, 2, 0, 1, 1, 2, 2};
DRC9b28def2011-05-21 14:37:15 +0000209/**
210 * Blue offset (in bytes) for a given pixel format. This specifies the number
211 * of bytes that the Blue component is offset from the start of the pixel. For
212 * instance, if a pixel of format TJ_BGRX is stored in <tt>char pixel[]</tt>,
213 * then the blue component will be <tt>pixel[tjBlueOffset[TJ_BGRX]]</tt>.
214 */
DRC67ce3b22011-12-19 02:21:03 +0000215static const int tjBlueOffset[TJ_NUMPF] = {2, 0, 2, 0, 1, 3, 0, 2, 0, 1, 3};
DRC9b28def2011-05-21 14:37:15 +0000216
217/**
218 * Pixel size (in bytes) for a given pixel format.
219 */
DRC67ce3b22011-12-19 02:21:03 +0000220static const int tjPixelSize[TJ_NUMPF] = {3, 3, 4, 4, 4, 4, 1, 4, 4, 4, 4};
DRC9b28def2011-05-21 14:37:15 +0000221
222
223/**
DRC9b28def2011-05-21 14:37:15 +0000224 * The uncompressed source/destination image is stored in bottom-up (Windows,
225 * OpenGL) order, not top-down (X11) order.
226 */
DRC25b995a2011-05-21 15:34:54 +0000227#define TJFLAG_BOTTOMUP 2
DRC9b28def2011-05-21 14:37:15 +0000228/**
DRCfd3aba32012-06-29 23:14:48 +0000229 * Turn off CPU auto-detection and force TurboJPEG to use MMX code (if the
230 * underlying codec supports it.)
DRC9b28def2011-05-21 14:37:15 +0000231 */
DRC25b995a2011-05-21 15:34:54 +0000232#define TJFLAG_FORCEMMX 8
DRC9b28def2011-05-21 14:37:15 +0000233/**
DRCfd3aba32012-06-29 23:14:48 +0000234 * Turn off CPU auto-detection and force TurboJPEG to use SSE code (if the
235 * underlying codec supports it.)
DRC9b28def2011-05-21 14:37:15 +0000236 */
DRC25b995a2011-05-21 15:34:54 +0000237#define TJFLAG_FORCESSE 16
DRC9b28def2011-05-21 14:37:15 +0000238/**
DRCfd3aba32012-06-29 23:14:48 +0000239 * Turn off CPU auto-detection and force TurboJPEG to use SSE2 code (if the
240 * underlying codec supports it.)
DRC9b28def2011-05-21 14:37:15 +0000241 */
DRC25b995a2011-05-21 15:34:54 +0000242#define TJFLAG_FORCESSE2 32
DRC9b28def2011-05-21 14:37:15 +0000243/**
DRCfd3aba32012-06-29 23:14:48 +0000244 * Turn off CPU auto-detection and force TurboJPEG to use SSE3 code (if the
245 * underlying codec supports it.)
DRC9b28def2011-05-21 14:37:15 +0000246 */
DRC25b995a2011-05-21 15:34:54 +0000247#define TJFLAG_FORCESSE3 128
DRC9b28def2011-05-21 14:37:15 +0000248/**
DRCfd3aba32012-06-29 23:14:48 +0000249 * When decompressing, use the fastest chrominance upsampling algorithm
250 * available in the underlying codec. The default is to use smooth upsampling,
251 * which creates a smooth transition between neighboring chrominance components
252 * in order to reduce upsampling artifacts in the decompressed image.
DRC9b28def2011-05-21 14:37:15 +0000253 */
DRC25b995a2011-05-21 15:34:54 +0000254#define TJFLAG_FASTUPSAMPLE 256
DRC9b28def2011-05-21 14:37:15 +0000255/**
DRC25b995a2011-05-21 15:34:54 +0000256 * Disable buffer (re)allocation. If passed to #tjCompress2() or
257 * #tjTransform(), this flag will cause those functions to generate an error if
258 * the JPEG image buffer is invalid or too small rather than attempting to
259 * allocate or reallocate that buffer. This reproduces the behavior of earlier
260 * versions of TurboJPEG.
DRC9b28def2011-05-21 14:37:15 +0000261 */
DRC25b995a2011-05-21 15:34:54 +0000262#define TJFLAG_NOREALLOC 1024
DRCfd3aba32012-06-29 23:14:48 +0000263/**
264 * Use the fastest DCT/IDCT algorithm available in the underlying codec. The
265 * default if this flag is not specified is implementation-specific. The
266 * libjpeg implementation, for example, uses the fast algorithm by default when
267 * compressing, because this has been shown to have only a very slight effect
268 * on accuracy, but it uses the accurate algorithm when decompressing, because
269 * this has been shown to have a larger effect.
270 */
271#define TJFLAG_FASTDCT 2048
272/**
273 * Use the most accurate DCT/IDCT algorithm available in the underlying codec.
274 * The default if this flag is not specified is implementation-specific. The
275 * libjpeg implementation, for example, uses the fast algorithm by default when
276 * compressing, because this has been shown to have only a very slight effect
277 * on accuracy, but it uses the accurate algorithm when decompressing, because
278 * this has been shown to have a larger effect.
279 */
280#define TJFLAG_ACCURATEDCT 4096
DRC9b28def2011-05-21 14:37:15 +0000281
282
283/**
284 * Number of transform operations
285 */
DRC25b995a2011-05-21 15:34:54 +0000286#define TJ_NUMXOP 8
DRC9b28def2011-05-21 14:37:15 +0000287
288/**
DRC25b995a2011-05-21 15:34:54 +0000289 * Transform operations for #tjTransform()
DRC9b28def2011-05-21 14:37:15 +0000290 */
DRC25b995a2011-05-21 15:34:54 +0000291enum TJXOP
DRC9b28def2011-05-21 14:37:15 +0000292{
293 /**
294 * Do not transform the position of the image pixels
295 */
DRC25b995a2011-05-21 15:34:54 +0000296 TJXOP_NONE=0,
DRC9b28def2011-05-21 14:37:15 +0000297 /**
298 * Flip (mirror) image horizontally. This transform is imperfect if there
DRC25b995a2011-05-21 15:34:54 +0000299 * are any partial MCU blocks on the right edge (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000300 */
DRC25b995a2011-05-21 15:34:54 +0000301 TJXOP_HFLIP,
DRC9b28def2011-05-21 14:37:15 +0000302 /**
303 * Flip (mirror) image vertically. This transform is imperfect if there are
DRC25b995a2011-05-21 15:34:54 +0000304 * any partial MCU blocks on the bottom edge (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000305 */
DRC25b995a2011-05-21 15:34:54 +0000306 TJXOP_VFLIP,
DRC9b28def2011-05-21 14:37:15 +0000307 /**
308 * Transpose image (flip/mirror along upper left to lower right axis.) This
309 * transform is always perfect.
310 */
DRC25b995a2011-05-21 15:34:54 +0000311 TJXOP_TRANSPOSE,
DRC9b28def2011-05-21 14:37:15 +0000312 /**
313 * Transverse transpose image (flip/mirror along upper right to lower left
314 * axis.) This transform is imperfect if there are any partial MCU blocks in
DRC25b995a2011-05-21 15:34:54 +0000315 * the image (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000316 */
DRC25b995a2011-05-21 15:34:54 +0000317 TJXOP_TRANSVERSE,
DRC9b28def2011-05-21 14:37:15 +0000318 /**
319 * Rotate image clockwise by 90 degrees. This transform is imperfect if
320 * there are any partial MCU blocks on the bottom edge (see
DRC25b995a2011-05-21 15:34:54 +0000321 * #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000322 */
DRC25b995a2011-05-21 15:34:54 +0000323 TJXOP_ROT90,
DRC9b28def2011-05-21 14:37:15 +0000324 /**
325 * Rotate image 180 degrees. This transform is imperfect if there are any
DRC25b995a2011-05-21 15:34:54 +0000326 * partial MCU blocks in the image (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000327 */
DRC25b995a2011-05-21 15:34:54 +0000328 TJXOP_ROT180,
DRC9b28def2011-05-21 14:37:15 +0000329 /**
330 * Rotate image counter-clockwise by 90 degrees. This transform is imperfect
331 * if there are any partial MCU blocks on the right edge (see
DRC25b995a2011-05-21 15:34:54 +0000332 * #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000333 */
DRC25b995a2011-05-21 15:34:54 +0000334 TJXOP_ROT270
DRC9b28def2011-05-21 14:37:15 +0000335};
336
337
338/**
DRC25b995a2011-05-21 15:34:54 +0000339 * This option will cause #tjTransform() to return an error if the transform is
DRC9b28def2011-05-21 14:37:15 +0000340 * not perfect. Lossless transforms operate on MCU blocks, whose size depends
341 * on the level of chrominance subsampling used (see #tjMCUWidth
342 * and #tjMCUHeight.) If the image's width or height is not evenly divisible
343 * by the MCU block size, then there will be partial MCU blocks on the right
344 * and/or bottom edges. It is not possible to move these partial MCU blocks to
345 * the top or left of the image, so any transform that would require that is
346 * "imperfect." If this option is not specified, then any partial MCU blocks
347 * that cannot be transformed will be left in place, which will create
348 * odd-looking strips on the right or bottom edge of the image.
349 */
DRC25b995a2011-05-21 15:34:54 +0000350#define TJXOPT_PERFECT 1
DRC9b28def2011-05-21 14:37:15 +0000351/**
DRC25b995a2011-05-21 15:34:54 +0000352 * This option will cause #tjTransform() to discard any partial MCU blocks that
DRC9b28def2011-05-21 14:37:15 +0000353 * cannot be transformed.
354 */
DRC25b995a2011-05-21 15:34:54 +0000355#define TJXOPT_TRIM 2
DRC9b28def2011-05-21 14:37:15 +0000356/**
DRC25b995a2011-05-21 15:34:54 +0000357 * This option will enable lossless cropping. See #tjTransform() for more
DRC9b28def2011-05-21 14:37:15 +0000358 * information.
359 */
DRC25b995a2011-05-21 15:34:54 +0000360#define TJXOPT_CROP 4
DRC9b28def2011-05-21 14:37:15 +0000361/**
362 * This option will discard the color data in the input image and produce
363 * a grayscale output image.
DRC9b28def2011-05-21 14:37:15 +0000364 */
DRC25b995a2011-05-21 15:34:54 +0000365#define TJXOPT_GRAY 8
DRC7bf04d32011-09-17 00:18:31 +0000366/**
367 * This option will prevent #tjTransform() from outputting a JPEG image for
368 * this particular transform (this can be used in conjunction with a custom
369 * filter to capture the transformed DCT coefficients without transcoding
370 * them.)
371 */
372#define TJXOPT_NOOUTPUT 16
DRC9b28def2011-05-21 14:37:15 +0000373
374
375/**
376 * Scaling factor
377 */
DRC0a079692011-03-02 09:27:49 +0000378typedef struct
379{
DRC9b28def2011-05-21 14:37:15 +0000380 /**
381 * Numerator
382 */
383 int num;
384 /**
385 * Denominator
386 */
387 int denom;
388} tjscalingfactor;
389
390/**
391 * Cropping region
392 */
393typedef struct
394{
395 /**
396 * The left boundary of the cropping region. This must be evenly divisible
397 * by the MCU block width (see #tjMCUWidth.)
398 */
399 int x;
400 /**
401 * The upper boundary of the cropping region. This must be evenly divisible
402 * by the MCU block height (see #tjMCUHeight.)
403 */
404 int y;
405 /**
406 * The width of the cropping region. Setting this to 0 is the equivalent of
407 * setting it to the width of the source JPEG image - x.
408 */
409 int w;
410 /**
411 * The height of the cropping region. Setting this to 0 is the equivalent of
412 * setting it to the height of the source JPEG image - y.
413 */
414 int h;
DRC0a079692011-03-02 09:27:49 +0000415} tjregion;
416
DRC9b28def2011-05-21 14:37:15 +0000417/**
418 * Lossless transform
419 */
DRCf5467112011-09-20 05:02:19 +0000420typedef struct tjtransform
DRC0a079692011-03-02 09:27:49 +0000421{
DRC9b28def2011-05-21 14:37:15 +0000422 /**
423 * Cropping region
424 */
425 tjregion r;
426 /**
DRC25b995a2011-05-21 15:34:54 +0000427 * One of the @ref TJXOP "transform operations"
DRC9b28def2011-05-21 14:37:15 +0000428 */
429 int op;
430 /**
DRC25b995a2011-05-21 15:34:54 +0000431 * The bitwise OR of one of more of the @ref TJXOPT_CROP "transform options"
DRC9b28def2011-05-21 14:37:15 +0000432 */
433 int options;
DRC7bf04d32011-09-17 00:18:31 +0000434 /**
DRCf5467112011-09-20 05:02:19 +0000435 * Arbitrary data that can be accessed within the body of the callback
436 * function
437 */
438 void *data;
439 /**
DRC7bf04d32011-09-17 00:18:31 +0000440 * A callback function that can be used to modify the DCT coefficients
441 * after they are losslessly transformed but before they are transcoded to a
442 * new JPEG file. This allows for custom filters or other transformations to
443 * be applied in the frequency domain.
444 *
DRCf5467112011-09-20 05:02:19 +0000445 * @param coeffs pointer to an array of transformed DCT coefficients. (NOTE:
446 * this pointer is not guaranteed to be valid once the callback
447 * returns, so applications wishing to hand off the DCT coefficients
448 * to another function or library should make a copy of them within
449 * the body of the callback.)
450 * @param arrayRegion #tjregion structure containing the width and height of
DRCf69dc282011-09-20 18:20:43 +0000451 * the array pointed to by <tt>coeffs</tt> as well as its offset
452 * relative to the component plane. TurboJPEG implementations may
453 * choose to split each component plane into multiple DCT coefficient
454 * arrays and call the callback function once for each array.
DRCf5467112011-09-20 05:02:19 +0000455 * @param planeRegion #tjregion structure containing the width and height of
456 * the component plane to which <tt>coeffs</tt> belongs
457 * @param componentID ID number of the component plane to which
458 * <tt>coeffs</tt> belongs (Y, Cb, and Cr have, respectively, ID's of
459 * 0, 1, and 2 in typical JPEG images.)
460 * @param transformID ID number of the transformed image to which
461 * <tt>coeffs</tt> belongs. This is the same as the index of the
462 * transform in the transforms array that was passed to
463 * #tjTransform().
464 * @param transform a pointer to a #tjtransform structure that specifies the
465 * parameters and/or cropping region for this transform
DRC7bf04d32011-09-17 00:18:31 +0000466 *
467 * @return 0 if the callback was successful, or -1 if an error occurred.
468 */
469 int (*customFilter)(short *coeffs, tjregion arrayRegion,
DRCf5467112011-09-20 05:02:19 +0000470 tjregion planeRegion, int componentIndex, int transformIndex,
471 struct tjtransform *transform);
DRC0a079692011-03-02 09:27:49 +0000472} tjtransform;
473
DRC9b28def2011-05-21 14:37:15 +0000474/**
475 * TurboJPEG instance handle
476 */
DRC2e7b76b2009-04-03 12:04:24 +0000477typedef void* tjhandle;
478
DRC9b28def2011-05-21 14:37:15 +0000479
480/**
481 * Pad the given width to the nearest 32-bit boundary
482 */
483#define TJPAD(width) (((width)+3)&(~3))
484
485/**
DRC25b995a2011-05-21 15:34:54 +0000486 * Compute the scaled value of <tt>dimension</tt> using the given scaling
487 * factor. This macro performs the integer equivalent of <tt>ceil(dimension *
DRC9b28def2011-05-21 14:37:15 +0000488 * scalingFactor)</tt>.
489 */
490#define TJSCALED(dimension, scalingFactor) ((dimension * scalingFactor.num \
491 + scalingFactor.denom - 1) / scalingFactor.denom)
492
DRC2e7b76b2009-04-03 12:04:24 +0000493
494#ifdef __cplusplus
495extern "C" {
496#endif
497
DRC2e7b76b2009-04-03 12:04:24 +0000498
DRC9b28def2011-05-21 14:37:15 +0000499/**
500 * Create a TurboJPEG compressor instance.
501 *
502 * @return a handle to the newly-created instance, or NULL if an error
503 * occurred (see #tjGetErrorStr().)
504 */
DRC2e7b76b2009-04-03 12:04:24 +0000505DLLEXPORT tjhandle DLLCALL tjInitCompress(void);
506
507
DRC9b28def2011-05-21 14:37:15 +0000508/**
509 * Compress an RGB or grayscale image into a JPEG image.
510 *
511 * @param handle a handle to a TurboJPEG compressor or transformer instance
512 * @param srcBuf pointer to an image buffer containing RGB or grayscale pixels
513 * to be compressed
514 * @param width width (in pixels) of the source image
515 * @param pitch bytes per line of the source image. Normally, this should be
516 * <tt>width * #tjPixelSize[pixelFormat]</tt> if the image is unpadded,
517 * or <tt>#TJPAD(width * #tjPixelSize[pixelFormat])</tt> if each line of
518 * the image is padded to the nearest 32-bit boundary, as is the case
519 * for Windows bitmaps. You can also be clever and use this parameter
520 * to skip lines, etc. Setting this parameter to 0 is the equivalent of
521 * setting it to <tt>width * #tjPixelSize[pixelFormat]</tt>.
522 * @param height height (in pixels) of the source image
DRC25b995a2011-05-21 15:34:54 +0000523 * @param pixelFormat pixel format of the source image (see @ref TJPF
DRC9b28def2011-05-21 14:37:15 +0000524 * "Pixel formats".)
525 * @param jpegBuf address of a pointer to an image buffer that will receive the
526 * JPEG image. TurboJPEG has the ability to reallocate the JPEG buffer
527 * to accommodate the size of the JPEG image. Thus, you can choose to:
DRC6b76f752011-05-24 16:52:47 +0000528 * -# pre-allocate the JPEG buffer with an arbitrary size using
529 * #tjAlloc() and let TurboJPEG grow the buffer as needed,
DRC9b28def2011-05-21 14:37:15 +0000530 * -# set <tt>*jpegBuf</tt> to NULL to tell TurboJPEG to allocate the
531 * buffer for you, or
532 * -# pre-allocate the buffer to a "worst case" size determined by
DRC9b49f0e2011-07-12 03:17:23 +0000533 * calling #tjBufSize(). This should ensure that the buffer never has
DRC25b995a2011-05-21 15:34:54 +0000534 * to be re-allocated (setting #TJFLAG_NOREALLOC guarantees this.)
DRC9b28def2011-05-21 14:37:15 +0000535 * .
DRCff78e372011-05-24 10:17:32 +0000536 * If you choose option 1, <tt>*jpegSize</tt> should be set to the
DRC9b28def2011-05-21 14:37:15 +0000537 * size of your pre-allocated buffer. In any case, unless you have
DRC25b995a2011-05-21 15:34:54 +0000538 * set #TJFLAG_NOREALLOC, you should always check <tt>*jpegBuf</tt> upon
539 * return from this function, as it may have changed.
DRC80803ae2011-12-15 13:12:59 +0000540 * @param jpegSize pointer to an unsigned long variable that holds the size of
DRC9b28def2011-05-21 14:37:15 +0000541 * the JPEG image buffer. If <tt>*jpegBuf</tt> points to a
542 * pre-allocated buffer, then <tt>*jpegSize</tt> should be set to the
543 * size of the buffer. Upon return, <tt>*jpegSize</tt> will contain the
544 * size of the JPEG image (in bytes.)
545 * @param jpegSubsamp the level of chrominance subsampling to be used when
DRC25b995a2011-05-21 15:34:54 +0000546 * generating the JPEG image (see @ref TJSAMP
DRC9b28def2011-05-21 14:37:15 +0000547 * "Chrominance subsampling options".)
548 * @param jpegQual the image quality of the generated JPEG image (1 = worst,
549 100 = best)
DRC25b995a2011-05-21 15:34:54 +0000550 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
551 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000552 *
553 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
DRC2e7b76b2009-04-03 12:04:24 +0000554*/
DRC9b28def2011-05-21 14:37:15 +0000555DLLEXPORT int DLLCALL tjCompress2(tjhandle handle, unsigned char *srcBuf,
556 int width, int pitch, int height, int pixelFormat, unsigned char **jpegBuf,
557 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags);
DRC2e7b76b2009-04-03 12:04:24 +0000558
DRCb28fc572011-02-22 06:41:29 +0000559
DRC9b28def2011-05-21 14:37:15 +0000560/**
561 * The maximum size of the buffer (in bytes) required to hold a JPEG image with
DRC9b49f0e2011-07-12 03:17:23 +0000562 * the given parameters. The number of bytes returned by this function is
563 * larger than the size of the uncompressed source image. The reason for this
564 * is that the JPEG format uses 16-bit coefficients, and it is thus possible
565 * for a very high-quality JPEG image with very high frequency content to
566 * expand rather than compress when converted to the JPEG format. Such images
567 * represent a very rare corner case, but since there is no way to predict the
568 * size of a JPEG image prior to compression, the corner case has to be
569 * handled.
DRC9b28def2011-05-21 14:37:15 +0000570 *
571 * @param width width of the image (in pixels)
572 * @param height height of the image (in pixels)
DRC9b49f0e2011-07-12 03:17:23 +0000573 * @param jpegSubsamp the level of chrominance subsampling to be used when
574 * generating the JPEG image (see @ref TJSAMP
575 * "Chrominance subsampling options".)
DRC9b28def2011-05-21 14:37:15 +0000576 *
577 * @return the maximum size of the buffer (in bytes) required to hold the
578 * image, or -1 if the arguments are out of bounds.
579 */
DRC9b49f0e2011-07-12 03:17:23 +0000580DLLEXPORT unsigned long DLLCALL tjBufSize(int width, int height,
581 int jpegSubsamp);
DRC2e7b76b2009-04-03 12:04:24 +0000582
DRCb28fc572011-02-22 06:41:29 +0000583
DRC9b28def2011-05-21 14:37:15 +0000584/**
585 * The size of the buffer (in bytes) required to hold a YUV planar image with
586 * the given parameters.
587 *
588 * @param width width of the image (in pixels)
589 * @param height height of the image (in pixels)
DRC9b49f0e2011-07-12 03:17:23 +0000590 * @param subsamp level of chrominance subsampling in the image (see
DRC25b995a2011-05-21 15:34:54 +0000591 * @ref TJSAMP "Chrominance subsampling options".)
DRC9b28def2011-05-21 14:37:15 +0000592 *
593 * @return the size of the buffer (in bytes) required to hold the image, or
594 * -1 if the arguments are out of bounds.
595 */
DRC9b49f0e2011-07-12 03:17:23 +0000596DLLEXPORT unsigned long DLLCALL tjBufSizeYUV(int width, int height,
597 int subsamp);
DRCf3cf9732011-02-22 00:16:14 +0000598
DRCb28fc572011-02-22 06:41:29 +0000599
DRC9b28def2011-05-21 14:37:15 +0000600/**
601 * Encode an RGB or grayscale image into a YUV planar image. This function
602 * uses the accelerated color conversion routines in TurboJPEG's underlying
603 * codec to produce a planar YUV image that is suitable for X Video.
604 * Specifically, if the chrominance components are subsampled along the
605 * horizontal dimension, then the width of the luminance plane is padded to 2
606 * in the output image (same goes for the height of the luminance plane, if the
607 * chrominance components are subsampled along the vertical dimension.) Also,
608 * each line of each plane in the output image is padded to 4 bytes. Although
609 * this will work with any subsampling option, it is really only useful in
610 * combination with TJ_420, which produces an image compatible with the I420
611 * (AKA "YUV420P") format.
612 *
613 * @param handle a handle to a TurboJPEG compressor or transformer instance
614 * @param srcBuf pointer to an image buffer containing RGB or grayscale pixels
615 * to be encoded
616 * @param width width (in pixels) of the source image
617 * @param pitch bytes per line of the source image. Normally, this should be
618 * <tt>width * #tjPixelSize[pixelFormat]</tt> if the image is unpadded,
619 * or <tt>#TJPAD(width * #tjPixelSize[pixelFormat])</tt> if each line of
620 * the image is padded to the nearest 32-bit boundary, as is the case
621 * for Windows bitmaps. You can also be clever and use this parameter
622 * to skip lines, etc. Setting this parameter to 0 is the equivalent of
623 * setting it to <tt>width * #tjPixelSize[pixelFormat]</tt>.
624 * @param height height (in pixels) of the source image
DRC25b995a2011-05-21 15:34:54 +0000625 * @param pixelFormat pixel format of the source image (see @ref TJPF
DRC9b28def2011-05-21 14:37:15 +0000626 * "Pixel formats".)
DRC80803ae2011-12-15 13:12:59 +0000627 * @param dstBuf pointer to an image buffer that will receive the YUV image.
DRC9b49f0e2011-07-12 03:17:23 +0000628 * Use #tjBufSizeYUV() to determine the appropriate size for this buffer
DRC9b28def2011-05-21 14:37:15 +0000629 * based on the image width, height, and level of chrominance
630 * subsampling.
631 * @param subsamp the level of chrominance subsampling to be used when
DRC25b995a2011-05-21 15:34:54 +0000632 * generating the YUV image (see @ref TJSAMP
DRC9b28def2011-05-21 14:37:15 +0000633 * "Chrominance subsampling options".)
DRC25b995a2011-05-21 15:34:54 +0000634 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
635 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000636 *
637 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
DRC84241602011-02-25 02:08:23 +0000638*/
DRC9b28def2011-05-21 14:37:15 +0000639DLLEXPORT int DLLCALL tjEncodeYUV2(tjhandle handle,
640 unsigned char *srcBuf, int width, int pitch, int height, int pixelFormat,
641 unsigned char *dstBuf, int subsamp, int flags);
DRC84241602011-02-25 02:08:23 +0000642
643
DRC9b28def2011-05-21 14:37:15 +0000644/**
645 * Create a TurboJPEG decompressor instance.
646 *
647 * @return a handle to the newly-created instance, or NULL if an error
648 * occurred (see #tjGetErrorStr().)
DRC2e7b76b2009-04-03 12:04:24 +0000649*/
650DLLEXPORT tjhandle DLLCALL tjInitDecompress(void);
651
652
DRC9b28def2011-05-21 14:37:15 +0000653/**
654 * Retrieve information about a JPEG image without decompressing it.
655 *
656 * @param handle a handle to a TurboJPEG decompressor or transformer instance
657 * @param jpegBuf pointer to a buffer containing a JPEG image
658 * @param jpegSize size of the JPEG image (in bytes)
DRC80803ae2011-12-15 13:12:59 +0000659 * @param width pointer to an integer variable that will receive the width (in
DRC9b28def2011-05-21 14:37:15 +0000660 * pixels) of the JPEG image
DRC80803ae2011-12-15 13:12:59 +0000661 * @param height pointer to an integer variable that will receive the height
DRC9b28def2011-05-21 14:37:15 +0000662 * (in pixels) of the JPEG image
DRC80803ae2011-12-15 13:12:59 +0000663 * @param jpegSubsamp pointer to an integer variable that will receive the
DRC9b28def2011-05-21 14:37:15 +0000664 * level of chrominance subsampling used when compressing the JPEG image
DRC25b995a2011-05-21 15:34:54 +0000665 * (see @ref TJSAMP "Chrominance subsampling options".)
DRC9b28def2011-05-21 14:37:15 +0000666 *
667 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
DRC2e7b76b2009-04-03 12:04:24 +0000668*/
DRC9b28def2011-05-21 14:37:15 +0000669DLLEXPORT int DLLCALL tjDecompressHeader2(tjhandle handle,
670 unsigned char *jpegBuf, unsigned long jpegSize, int *width, int *height,
671 int *jpegSubsamp);
DRC2e7b76b2009-04-03 12:04:24 +0000672
673
DRC9b28def2011-05-21 14:37:15 +0000674/**
675 * Returns a list of fractional scaling factors that the JPEG decompressor in
676 * this implementation of TurboJPEG supports.
677 *
678 * @param numscalingfactors pointer to an integer variable that will receive
679 * the number of elements in the list
680 *
681 * @return a pointer to a list of fractional scaling factors, or NULL if an
682 * error is encountered (see #tjGetErrorStr().)
DRCb28fc572011-02-22 06:41:29 +0000683*/
DRC109a5782011-03-01 09:53:07 +0000684DLLEXPORT tjscalingfactor* DLLCALL tjGetScalingFactors(int *numscalingfactors);
DRCb28fc572011-02-22 06:41:29 +0000685
686
DRC9b28def2011-05-21 14:37:15 +0000687/**
688 * Decompress a JPEG image to an RGB or grayscale image.
689 *
690 * @param handle a handle to a TurboJPEG decompressor or transformer instance
691 * @param jpegBuf pointer to a buffer containing the JPEG image to decompress
692 * @param jpegSize size of the JPEG image (in bytes)
DRC80803ae2011-12-15 13:12:59 +0000693 * @param dstBuf pointer to an image buffer that will receive the decompressed
DRC9b28def2011-05-21 14:37:15 +0000694 * image. This buffer should normally be <tt>pitch * scaledHeight</tt>
695 * bytes in size, where <tt>scaledHeight</tt> can be determined by
696 * calling #TJSCALED() with the JPEG image height and one of the scaling
697 * factors returned by #tjGetScalingFactors(). The dstBuf pointer may
698 * also be used to decompress into a specific region of a larger buffer.
699 * @param width desired width (in pixels) of the destination image. If this is
700 * smaller than the width of the JPEG image being decompressed, then
701 * TurboJPEG will use scaling in the JPEG decompressor to generate the
702 * largest possible image that will fit within the desired width. If
703 * width is set to 0, then only the height will be considered when
704 * determining the scaled image size.
705 * @param pitch bytes per line of the destination image. Normally, this is
706 * <tt>scaledWidth * #tjPixelSize[pixelFormat]</tt> if the decompressed
707 * image is unpadded, else <tt>#TJPAD(scaledWidth *
708 * #tjPixelSize[pixelFormat])</tt> if each line of the decompressed
709 * image is padded to the nearest 32-bit boundary, as is the case for
710 * Windows bitmaps. (NOTE: <tt>scaledWidth</tt> can be determined by
711 * calling #TJSCALED() with the JPEG image width and one of the scaling
712 * factors returned by #tjGetScalingFactors().) You can also be clever
713 * and use the pitch parameter to skip lines, etc. Setting this
714 * parameter to 0 is the equivalent of setting it to <tt>scaledWidth
715 * * #tjPixelSize[pixelFormat]</tt>.
716 * @param height desired height (in pixels) of the destination image. If this
717 * is smaller than the height of the JPEG image being decompressed, then
718 * TurboJPEG will use scaling in the JPEG decompressor to generate the
719 * largest possible image that will fit within the desired height. If
720 * height is set to 0, then only the width will be considered when
721 * determining the scaled image size.
722 * @param pixelFormat pixel format of the destination image (see @ref
DRC25b995a2011-05-21 15:34:54 +0000723 * TJPF "Pixel formats".)
724 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
725 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000726 *
727 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
728 */
729DLLEXPORT int DLLCALL tjDecompress2(tjhandle handle,
730 unsigned char *jpegBuf, unsigned long jpegSize, unsigned char *dstBuf,
731 int width, int pitch, int height, int pixelFormat, int flags);
DRC2e7b76b2009-04-03 12:04:24 +0000732
733
DRC9b28def2011-05-21 14:37:15 +0000734/**
735 * Decompress a JPEG image to a YUV planar image. This function performs JPEG
736 * decompression but leaves out the color conversion step, so a planar YUV
737 * image is generated instead of an RGB image. The padding of the planes in
738 * this image is the same as the images generated by #tjEncodeYUV2(). Note
739 * that, if the width or height of the image is not an even multiple of the MCU
740 * block size (see #tjMCUWidth and #tjMCUHeight), then an intermediate buffer
741 * copy will be performed within TurboJPEG.
742 *
743 * @param handle a handle to a TurboJPEG decompressor or transformer instance
744 * @param jpegBuf pointer to a buffer containing the JPEG image to decompress
745 * @param jpegSize size of the JPEG image (in bytes)
DRC80803ae2011-12-15 13:12:59 +0000746 * @param dstBuf pointer to an image buffer that will receive the YUV image.
DRC9b49f0e2011-07-12 03:17:23 +0000747 * Use #tjBufSizeYUV to determine the appropriate size for this buffer
DRC9b28def2011-05-21 14:37:15 +0000748 * based on the image width, height, and level of subsampling.
DRC25b995a2011-05-21 15:34:54 +0000749 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
750 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000751 *
752 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
753 */
754DLLEXPORT int DLLCALL tjDecompressToYUV(tjhandle handle,
755 unsigned char *jpegBuf, unsigned long jpegSize, unsigned char *dstBuf,
756 int flags);
DRC84241602011-02-25 02:08:23 +0000757
758
DRC9b28def2011-05-21 14:37:15 +0000759/**
760 * Create a new TurboJPEG transformer instance.
761 *
762 * @return a handle to the newly-created instance, or NULL if an error
763 * occurred (see #tjGetErrorStr().)
764 */
DRC890f1e02011-02-26 22:02:37 +0000765DLLEXPORT tjhandle DLLCALL tjInitTransform(void);
766
767
DRC9b28def2011-05-21 14:37:15 +0000768/**
769 * Losslessly transform a JPEG image into another JPEG image. Lossless
770 * transforms work by moving the raw coefficients from one JPEG image structure
771 * to another without altering the values of the coefficients. While this is
772 * typically faster than decompressing the image, transforming it, and
773 * re-compressing it, lossless transforms are not free. Each lossless
774 * transform requires reading and Huffman decoding all of the coefficients in
775 * the source image, regardless of the size of the destination image. Thus,
776 * this function provides a means of generating multiple transformed images
777 * from the same source or of applying multiple transformations simultaneously,
778 * in order to eliminate the need to read the source coefficients multiple
779 * times.
780 *
781 * @param handle a handle to a TurboJPEG transformer instance
782 * @param jpegBuf pointer to a buffer containing the JPEG image to transform
783 * @param jpegSize size of the JPEG image (in bytes)
784 * @param n the number of transformed JPEG images to generate
785 * @param dstBufs pointer to an array of n image buffers. <tt>dstBufs[i]</tt>
786 * will receive a JPEG image that has been transformed using the
787 * parameters in <tt>transforms[i]</tt>. TurboJPEG has the ability to
788 * reallocate the JPEG buffer to accommodate the size of the JPEG image.
789 * Thus, you can choose to:
DRC6b76f752011-05-24 16:52:47 +0000790 * -# pre-allocate the JPEG buffer with an arbitrary size using
791 * #tjAlloc() and let TurboJPEG grow the buffer as needed,
DRC9b28def2011-05-21 14:37:15 +0000792 * -# set <tt>dstBufs[i]</tt> to NULL to tell TurboJPEG to allocate the
793 * buffer for you, or
794 * -# pre-allocate the buffer to a "worst case" size determined by
DRC9b49f0e2011-07-12 03:17:23 +0000795 * calling #tjBufSize() with the cropped width and height. This should
DRC25b995a2011-05-21 15:34:54 +0000796 * ensure that the buffer never has to be re-allocated (setting
797 * #TJFLAG_NOREALLOC guarantees this.)
DRC9b28def2011-05-21 14:37:15 +0000798 * .
DRCff78e372011-05-24 10:17:32 +0000799 * If you choose option 1, <tt>dstSizes[i]</tt> should be set to
DRC9b28def2011-05-21 14:37:15 +0000800 * the size of your pre-allocated buffer. In any case, unless you have
DRC25b995a2011-05-21 15:34:54 +0000801 * set #TJFLAG_NOREALLOC, you should always check <tt>dstBufs[i]</tt>
802 * upon return from this function, as it may have changed.
DRC80803ae2011-12-15 13:12:59 +0000803 * @param dstSizes pointer to an array of n unsigned long variables that will
DRC9b28def2011-05-21 14:37:15 +0000804 * receive the actual sizes (in bytes) of each transformed JPEG image.
805 * If <tt>dstBufs[i]</tt> points to a pre-allocated buffer, then
806 * <tt>dstSizes[i]</tt> should be set to the size of the buffer. Upon
807 * return, <tt>dstSizes[i]</tt> will contain the size of the JPEG image
808 * (in bytes.)
809 * @param transforms pointer to an array of n tjtransform structures, each of
810 * which specifies the transform parameters and/or cropping region for
811 * the corresponding transformed output image.
DRC25b995a2011-05-21 15:34:54 +0000812 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
813 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000814 *
815 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
816 */
817DLLEXPORT int DLLCALL tjTransform(tjhandle handle, unsigned char *jpegBuf,
818 unsigned long jpegSize, int n, unsigned char **dstBufs,
819 unsigned long *dstSizes, tjtransform *transforms, int flags);
DRC890f1e02011-02-26 22:02:37 +0000820
821
DRC9b28def2011-05-21 14:37:15 +0000822/**
823 * Destroy a TurboJPEG compressor, decompressor, or transformer instance.
824 *
825 * @param handle a handle to a TurboJPEG compressor, decompressor or
826 * transformer instance
827 *
828 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
829 */
830DLLEXPORT int DLLCALL tjDestroy(tjhandle handle);
DRC2e7b76b2009-04-03 12:04:24 +0000831
832
DRC9b28def2011-05-21 14:37:15 +0000833/**
DRC6b76f752011-05-24 16:52:47 +0000834 * Allocate an image buffer for use with TurboJPEG. You should always use
835 * this function to allocate the JPEG destination buffer(s) for #tjCompress2()
836 * and #tjTransform() unless you are disabling automatic buffer
837 * (re)allocation (by setting #TJFLAG_NOREALLOC.)
838 *
839 * @param bytes the number of bytes to allocate
840 *
841 * @return a pointer to a newly-allocated buffer with the specified number of
842 * bytes
DRCd4411072011-05-24 17:00:15 +0000843 *
844 * @sa tjFree()
DRC6b76f752011-05-24 16:52:47 +0000845 */
846DLLEXPORT unsigned char* DLLCALL tjAlloc(int bytes);
847
848
849/**
850 * Free an image buffer previously allocated by TurboJPEG. You should always
851 * use this function to free JPEG destination buffer(s) that were automatically
852 * (re)allocated by #tjCompress2() or #tjTransform() or that were manually
853 * allocated using #tjAlloc().
854 *
855 * @param buffer address of the buffer to free
DRCd4411072011-05-24 17:00:15 +0000856 *
857 * @sa tjAlloc()
DRC6b76f752011-05-24 16:52:47 +0000858 */
859DLLEXPORT void DLLCALL tjFree(unsigned char *buffer);
860
861
862/**
DRC9b28def2011-05-21 14:37:15 +0000863 * Returns a descriptive error message explaining why the last command failed.
864 *
865 * @return a descriptive error message explaining why the last command failed.
866 */
DRC2e7b76b2009-04-03 12:04:24 +0000867DLLEXPORT char* DLLCALL tjGetErrorStr(void);
868
DRC9b28def2011-05-21 14:37:15 +0000869
870/* Backward compatibility functions and macros (nothing to see here) */
871#define NUMSUBOPT TJ_NUMSAMP
DRC25b995a2011-05-21 15:34:54 +0000872#define TJ_444 TJSAMP_444
873#define TJ_422 TJSAMP_422
874#define TJ_420 TJSAMP_420
875#define TJ_411 TJSAMP_420
876#define TJ_GRAYSCALE TJSAMP_GRAY
DRC9b28def2011-05-21 14:37:15 +0000877
DRC25b995a2011-05-21 15:34:54 +0000878#define TJ_BGR 1
879#define TJ_BOTTOMUP TJFLAG_BOTTOMUP
880#define TJ_FORCEMMX TJFLAG_FORCEMMX
881#define TJ_FORCESSE TJFLAG_FORCESSE
882#define TJ_FORCESSE2 TJFLAG_FORCESSE2
DRC9b28def2011-05-21 14:37:15 +0000883#define TJ_ALPHAFIRST 64
DRC25b995a2011-05-21 15:34:54 +0000884#define TJ_FORCESSE3 TJFLAG_FORCESSE3
885#define TJ_FASTUPSAMPLE TJFLAG_FASTUPSAMPLE
DRC9b28def2011-05-21 14:37:15 +0000886#define TJ_YUV 512
887
DRC9b49f0e2011-07-12 03:17:23 +0000888DLLEXPORT unsigned long DLLCALL TJBUFSIZE(int width, int height);
889
890DLLEXPORT unsigned long DLLCALL TJBUFSIZEYUV(int width, int height,
891 int jpegSubsamp);
892
DRC9b28def2011-05-21 14:37:15 +0000893DLLEXPORT int DLLCALL tjCompress(tjhandle handle, unsigned char *srcBuf,
894 int width, int pitch, int height, int pixelSize, unsigned char *dstBuf,
895 unsigned long *compressedSize, int jpegSubsamp, int jpegQual, int flags);
896
897DLLEXPORT int DLLCALL tjEncodeYUV(tjhandle handle,
898 unsigned char *srcBuf, int width, int pitch, int height, int pixelSize,
899 unsigned char *dstBuf, int subsamp, int flags);
900
901DLLEXPORT int DLLCALL tjDecompressHeader(tjhandle handle,
902 unsigned char *jpegBuf, unsigned long jpegSize, int *width, int *height);
903
904DLLEXPORT int DLLCALL tjDecompress(tjhandle handle,
905 unsigned char *jpegBuf, unsigned long jpegSize, unsigned char *dstBuf,
906 int width, int pitch, int height, int pixelSize, int flags);
907
908
909/**
910 * @}
911 */
912
DRC2e7b76b2009-04-03 12:04:24 +0000913#ifdef __cplusplus
914}
915#endif
DRC3a1bb352011-05-24 09:15:44 +0000916
917#endif