blob: 343788a06b5e773ed9576ede94afae1c65d8b7e1 [file] [log] [blame]
DRC9b28def2011-05-21 14:37:15 +00001/*
2 * Copyright (C)2009-2011 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/**
DRC25b995a2011-05-21 15:34:54 +0000229 * Turn off CPU auto-detection and force TurboJPEG to use MMX code (IPP and
230 * 32-bit libjpeg-turbo versions only.)
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/**
DRC25b995a2011-05-21 15:34:54 +0000234 * Turn off CPU auto-detection and force TurboJPEG to use SSE code (32-bit IPP
235 * and 32-bit libjpeg-turbo versions only)
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/**
DRC25b995a2011-05-21 15:34:54 +0000239 * Turn off CPU auto-detection and force TurboJPEG to use SSE2 code (32-bit IPP
240 * and 32-bit libjpeg-turbo versions only)
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/**
DRC25b995a2011-05-21 15:34:54 +0000244 * Turn off CPU auto-detection and force TurboJPEG to use SSE3 code (64-bit IPP
245 * version only)
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/**
DRC25b995a2011-05-21 15:34:54 +0000249 * Use fast, inaccurate chrominance upsampling routines in the JPEG
250 * decompressor (libjpeg and libjpeg-turbo versions only)
DRC9b28def2011-05-21 14:37:15 +0000251 */
DRC25b995a2011-05-21 15:34:54 +0000252#define TJFLAG_FASTUPSAMPLE 256
DRC9b28def2011-05-21 14:37:15 +0000253/**
DRC25b995a2011-05-21 15:34:54 +0000254 * Disable buffer (re)allocation. If passed to #tjCompress2() or
255 * #tjTransform(), this flag will cause those functions to generate an error if
256 * the JPEG image buffer is invalid or too small rather than attempting to
257 * allocate or reallocate that buffer. This reproduces the behavior of earlier
258 * versions of TurboJPEG.
DRC9b28def2011-05-21 14:37:15 +0000259 */
DRC25b995a2011-05-21 15:34:54 +0000260#define TJFLAG_NOREALLOC 1024
DRC9b28def2011-05-21 14:37:15 +0000261
262
263/**
264 * Number of transform operations
265 */
DRC25b995a2011-05-21 15:34:54 +0000266#define TJ_NUMXOP 8
DRC9b28def2011-05-21 14:37:15 +0000267
268/**
DRC25b995a2011-05-21 15:34:54 +0000269 * Transform operations for #tjTransform()
DRC9b28def2011-05-21 14:37:15 +0000270 */
DRC25b995a2011-05-21 15:34:54 +0000271enum TJXOP
DRC9b28def2011-05-21 14:37:15 +0000272{
273 /**
274 * Do not transform the position of the image pixels
275 */
DRC25b995a2011-05-21 15:34:54 +0000276 TJXOP_NONE=0,
DRC9b28def2011-05-21 14:37:15 +0000277 /**
278 * Flip (mirror) image horizontally. This transform is imperfect if there
DRC25b995a2011-05-21 15:34:54 +0000279 * are any partial MCU blocks on the right edge (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000280 */
DRC25b995a2011-05-21 15:34:54 +0000281 TJXOP_HFLIP,
DRC9b28def2011-05-21 14:37:15 +0000282 /**
283 * Flip (mirror) image vertically. This transform is imperfect if there are
DRC25b995a2011-05-21 15:34:54 +0000284 * any partial MCU blocks on the bottom edge (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000285 */
DRC25b995a2011-05-21 15:34:54 +0000286 TJXOP_VFLIP,
DRC9b28def2011-05-21 14:37:15 +0000287 /**
288 * Transpose image (flip/mirror along upper left to lower right axis.) This
289 * transform is always perfect.
290 */
DRC25b995a2011-05-21 15:34:54 +0000291 TJXOP_TRANSPOSE,
DRC9b28def2011-05-21 14:37:15 +0000292 /**
293 * Transverse transpose image (flip/mirror along upper right to lower left
294 * axis.) This transform is imperfect if there are any partial MCU blocks in
DRC25b995a2011-05-21 15:34:54 +0000295 * the image (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000296 */
DRC25b995a2011-05-21 15:34:54 +0000297 TJXOP_TRANSVERSE,
DRC9b28def2011-05-21 14:37:15 +0000298 /**
299 * Rotate image clockwise by 90 degrees. This transform is imperfect if
300 * there are any partial MCU blocks on the bottom edge (see
DRC25b995a2011-05-21 15:34:54 +0000301 * #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000302 */
DRC25b995a2011-05-21 15:34:54 +0000303 TJXOP_ROT90,
DRC9b28def2011-05-21 14:37:15 +0000304 /**
305 * Rotate image 180 degrees. This transform is imperfect if there are any
DRC25b995a2011-05-21 15:34:54 +0000306 * partial MCU blocks in the image (see #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000307 */
DRC25b995a2011-05-21 15:34:54 +0000308 TJXOP_ROT180,
DRC9b28def2011-05-21 14:37:15 +0000309 /**
310 * Rotate image counter-clockwise by 90 degrees. This transform is imperfect
311 * if there are any partial MCU blocks on the right edge (see
DRC25b995a2011-05-21 15:34:54 +0000312 * #TJXOPT_PERFECT.)
DRC9b28def2011-05-21 14:37:15 +0000313 */
DRC25b995a2011-05-21 15:34:54 +0000314 TJXOP_ROT270
DRC9b28def2011-05-21 14:37:15 +0000315};
316
317
318/**
DRC25b995a2011-05-21 15:34:54 +0000319 * This option will cause #tjTransform() to return an error if the transform is
DRC9b28def2011-05-21 14:37:15 +0000320 * not perfect. Lossless transforms operate on MCU blocks, whose size depends
321 * on the level of chrominance subsampling used (see #tjMCUWidth
322 * and #tjMCUHeight.) If the image's width or height is not evenly divisible
323 * by the MCU block size, then there will be partial MCU blocks on the right
324 * and/or bottom edges. It is not possible to move these partial MCU blocks to
325 * the top or left of the image, so any transform that would require that is
326 * "imperfect." If this option is not specified, then any partial MCU blocks
327 * that cannot be transformed will be left in place, which will create
328 * odd-looking strips on the right or bottom edge of the image.
329 */
DRC25b995a2011-05-21 15:34:54 +0000330#define TJXOPT_PERFECT 1
DRC9b28def2011-05-21 14:37:15 +0000331/**
DRC25b995a2011-05-21 15:34:54 +0000332 * This option will cause #tjTransform() to discard any partial MCU blocks that
DRC9b28def2011-05-21 14:37:15 +0000333 * cannot be transformed.
334 */
DRC25b995a2011-05-21 15:34:54 +0000335#define TJXOPT_TRIM 2
DRC9b28def2011-05-21 14:37:15 +0000336/**
DRC25b995a2011-05-21 15:34:54 +0000337 * This option will enable lossless cropping. See #tjTransform() for more
DRC9b28def2011-05-21 14:37:15 +0000338 * information.
339 */
DRC25b995a2011-05-21 15:34:54 +0000340#define TJXOPT_CROP 4
DRC9b28def2011-05-21 14:37:15 +0000341/**
342 * This option will discard the color data in the input image and produce
343 * a grayscale output image.
DRC9b28def2011-05-21 14:37:15 +0000344 */
DRC25b995a2011-05-21 15:34:54 +0000345#define TJXOPT_GRAY 8
DRC7bf04d32011-09-17 00:18:31 +0000346/**
347 * This option will prevent #tjTransform() from outputting a JPEG image for
348 * this particular transform (this can be used in conjunction with a custom
349 * filter to capture the transformed DCT coefficients without transcoding
350 * them.)
351 */
352#define TJXOPT_NOOUTPUT 16
DRC9b28def2011-05-21 14:37:15 +0000353
354
355/**
356 * Scaling factor
357 */
DRC0a079692011-03-02 09:27:49 +0000358typedef struct
359{
DRC9b28def2011-05-21 14:37:15 +0000360 /**
361 * Numerator
362 */
363 int num;
364 /**
365 * Denominator
366 */
367 int denom;
368} tjscalingfactor;
369
370/**
371 * Cropping region
372 */
373typedef struct
374{
375 /**
376 * The left boundary of the cropping region. This must be evenly divisible
377 * by the MCU block width (see #tjMCUWidth.)
378 */
379 int x;
380 /**
381 * The upper boundary of the cropping region. This must be evenly divisible
382 * by the MCU block height (see #tjMCUHeight.)
383 */
384 int y;
385 /**
386 * The width of the cropping region. Setting this to 0 is the equivalent of
387 * setting it to the width of the source JPEG image - x.
388 */
389 int w;
390 /**
391 * The height of the cropping region. Setting this to 0 is the equivalent of
392 * setting it to the height of the source JPEG image - y.
393 */
394 int h;
DRC0a079692011-03-02 09:27:49 +0000395} tjregion;
396
DRC9b28def2011-05-21 14:37:15 +0000397/**
398 * Lossless transform
399 */
DRCf5467112011-09-20 05:02:19 +0000400typedef struct tjtransform
DRC0a079692011-03-02 09:27:49 +0000401{
DRC9b28def2011-05-21 14:37:15 +0000402 /**
403 * Cropping region
404 */
405 tjregion r;
406 /**
DRC25b995a2011-05-21 15:34:54 +0000407 * One of the @ref TJXOP "transform operations"
DRC9b28def2011-05-21 14:37:15 +0000408 */
409 int op;
410 /**
DRC25b995a2011-05-21 15:34:54 +0000411 * The bitwise OR of one of more of the @ref TJXOPT_CROP "transform options"
DRC9b28def2011-05-21 14:37:15 +0000412 */
413 int options;
DRC7bf04d32011-09-17 00:18:31 +0000414 /**
DRCf5467112011-09-20 05:02:19 +0000415 * Arbitrary data that can be accessed within the body of the callback
416 * function
417 */
418 void *data;
419 /**
DRC7bf04d32011-09-17 00:18:31 +0000420 * A callback function that can be used to modify the DCT coefficients
421 * after they are losslessly transformed but before they are transcoded to a
422 * new JPEG file. This allows for custom filters or other transformations to
423 * be applied in the frequency domain.
424 *
DRCf5467112011-09-20 05:02:19 +0000425 * @param coeffs pointer to an array of transformed DCT coefficients. (NOTE:
426 * this pointer is not guaranteed to be valid once the callback
427 * returns, so applications wishing to hand off the DCT coefficients
428 * to another function or library should make a copy of them within
429 * the body of the callback.)
430 * @param arrayRegion #tjregion structure containing the width and height of
DRCf69dc282011-09-20 18:20:43 +0000431 * the array pointed to by <tt>coeffs</tt> as well as its offset
432 * relative to the component plane. TurboJPEG implementations may
433 * choose to split each component plane into multiple DCT coefficient
434 * arrays and call the callback function once for each array.
DRCf5467112011-09-20 05:02:19 +0000435 * @param planeRegion #tjregion structure containing the width and height of
436 * the component plane to which <tt>coeffs</tt> belongs
437 * @param componentID ID number of the component plane to which
438 * <tt>coeffs</tt> belongs (Y, Cb, and Cr have, respectively, ID's of
439 * 0, 1, and 2 in typical JPEG images.)
440 * @param transformID ID number of the transformed image to which
441 * <tt>coeffs</tt> belongs. This is the same as the index of the
442 * transform in the transforms array that was passed to
443 * #tjTransform().
444 * @param transform a pointer to a #tjtransform structure that specifies the
445 * parameters and/or cropping region for this transform
DRC7bf04d32011-09-17 00:18:31 +0000446 *
447 * @return 0 if the callback was successful, or -1 if an error occurred.
448 */
449 int (*customFilter)(short *coeffs, tjregion arrayRegion,
DRCf5467112011-09-20 05:02:19 +0000450 tjregion planeRegion, int componentIndex, int transformIndex,
451 struct tjtransform *transform);
DRC0a079692011-03-02 09:27:49 +0000452} tjtransform;
453
DRC9b28def2011-05-21 14:37:15 +0000454/**
455 * TurboJPEG instance handle
456 */
DRC2e7b76b2009-04-03 12:04:24 +0000457typedef void* tjhandle;
458
DRC9b28def2011-05-21 14:37:15 +0000459
460/**
461 * Pad the given width to the nearest 32-bit boundary
462 */
463#define TJPAD(width) (((width)+3)&(~3))
464
465/**
DRC25b995a2011-05-21 15:34:54 +0000466 * Compute the scaled value of <tt>dimension</tt> using the given scaling
467 * factor. This macro performs the integer equivalent of <tt>ceil(dimension *
DRC9b28def2011-05-21 14:37:15 +0000468 * scalingFactor)</tt>.
469 */
470#define TJSCALED(dimension, scalingFactor) ((dimension * scalingFactor.num \
471 + scalingFactor.denom - 1) / scalingFactor.denom)
472
DRC2e7b76b2009-04-03 12:04:24 +0000473
474#ifdef __cplusplus
475extern "C" {
476#endif
477
DRC2e7b76b2009-04-03 12:04:24 +0000478
DRC9b28def2011-05-21 14:37:15 +0000479/**
480 * Create a TurboJPEG compressor instance.
481 *
482 * @return a handle to the newly-created instance, or NULL if an error
483 * occurred (see #tjGetErrorStr().)
484 */
DRC2e7b76b2009-04-03 12:04:24 +0000485DLLEXPORT tjhandle DLLCALL tjInitCompress(void);
486
487
DRC9b28def2011-05-21 14:37:15 +0000488/**
489 * Compress an RGB or grayscale image into a JPEG image.
490 *
491 * @param handle a handle to a TurboJPEG compressor or transformer instance
492 * @param srcBuf pointer to an image buffer containing RGB or grayscale pixels
493 * to be compressed
494 * @param width width (in pixels) of the source image
495 * @param pitch bytes per line of the source image. Normally, this should be
496 * <tt>width * #tjPixelSize[pixelFormat]</tt> if the image is unpadded,
497 * or <tt>#TJPAD(width * #tjPixelSize[pixelFormat])</tt> if each line of
498 * the image is padded to the nearest 32-bit boundary, as is the case
499 * for Windows bitmaps. You can also be clever and use this parameter
500 * to skip lines, etc. Setting this parameter to 0 is the equivalent of
501 * setting it to <tt>width * #tjPixelSize[pixelFormat]</tt>.
502 * @param height height (in pixels) of the source image
DRC25b995a2011-05-21 15:34:54 +0000503 * @param pixelFormat pixel format of the source image (see @ref TJPF
DRC9b28def2011-05-21 14:37:15 +0000504 * "Pixel formats".)
505 * @param jpegBuf address of a pointer to an image buffer that will receive the
506 * JPEG image. TurboJPEG has the ability to reallocate the JPEG buffer
507 * to accommodate the size of the JPEG image. Thus, you can choose to:
DRC6b76f752011-05-24 16:52:47 +0000508 * -# pre-allocate the JPEG buffer with an arbitrary size using
509 * #tjAlloc() and let TurboJPEG grow the buffer as needed,
DRC9b28def2011-05-21 14:37:15 +0000510 * -# set <tt>*jpegBuf</tt> to NULL to tell TurboJPEG to allocate the
511 * buffer for you, or
512 * -# pre-allocate the buffer to a "worst case" size determined by
DRC9b49f0e2011-07-12 03:17:23 +0000513 * calling #tjBufSize(). This should ensure that the buffer never has
DRC25b995a2011-05-21 15:34:54 +0000514 * to be re-allocated (setting #TJFLAG_NOREALLOC guarantees this.)
DRC9b28def2011-05-21 14:37:15 +0000515 * .
DRCff78e372011-05-24 10:17:32 +0000516 * If you choose option 1, <tt>*jpegSize</tt> should be set to the
DRC9b28def2011-05-21 14:37:15 +0000517 * size of your pre-allocated buffer. In any case, unless you have
DRC25b995a2011-05-21 15:34:54 +0000518 * set #TJFLAG_NOREALLOC, you should always check <tt>*jpegBuf</tt> upon
519 * return from this function, as it may have changed.
DRC80803ae2011-12-15 13:12:59 +0000520 * @param jpegSize pointer to an unsigned long variable that holds the size of
DRC9b28def2011-05-21 14:37:15 +0000521 * the JPEG image buffer. If <tt>*jpegBuf</tt> points to a
522 * pre-allocated buffer, then <tt>*jpegSize</tt> should be set to the
523 * size of the buffer. Upon return, <tt>*jpegSize</tt> will contain the
524 * size of the JPEG image (in bytes.)
525 * @param jpegSubsamp the level of chrominance subsampling to be used when
DRC25b995a2011-05-21 15:34:54 +0000526 * generating the JPEG image (see @ref TJSAMP
DRC9b28def2011-05-21 14:37:15 +0000527 * "Chrominance subsampling options".)
528 * @param jpegQual the image quality of the generated JPEG image (1 = worst,
529 100 = best)
DRC25b995a2011-05-21 15:34:54 +0000530 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
531 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000532 *
533 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
DRC2e7b76b2009-04-03 12:04:24 +0000534*/
DRC9b28def2011-05-21 14:37:15 +0000535DLLEXPORT int DLLCALL tjCompress2(tjhandle handle, unsigned char *srcBuf,
536 int width, int pitch, int height, int pixelFormat, unsigned char **jpegBuf,
537 unsigned long *jpegSize, int jpegSubsamp, int jpegQual, int flags);
DRC2e7b76b2009-04-03 12:04:24 +0000538
DRCb28fc572011-02-22 06:41:29 +0000539
DRC9b28def2011-05-21 14:37:15 +0000540/**
541 * The maximum size of the buffer (in bytes) required to hold a JPEG image with
DRC9b49f0e2011-07-12 03:17:23 +0000542 * the given parameters. The number of bytes returned by this function is
543 * larger than the size of the uncompressed source image. The reason for this
544 * is that the JPEG format uses 16-bit coefficients, and it is thus possible
545 * for a very high-quality JPEG image with very high frequency content to
546 * expand rather than compress when converted to the JPEG format. Such images
547 * represent a very rare corner case, but since there is no way to predict the
548 * size of a JPEG image prior to compression, the corner case has to be
549 * handled.
DRC9b28def2011-05-21 14:37:15 +0000550 *
551 * @param width width of the image (in pixels)
552 * @param height height of the image (in pixels)
DRC9b49f0e2011-07-12 03:17:23 +0000553 * @param jpegSubsamp the level of chrominance subsampling to be used when
554 * generating the JPEG image (see @ref TJSAMP
555 * "Chrominance subsampling options".)
DRC9b28def2011-05-21 14:37:15 +0000556 *
557 * @return the maximum size of the buffer (in bytes) required to hold the
558 * image, or -1 if the arguments are out of bounds.
559 */
DRC9b49f0e2011-07-12 03:17:23 +0000560DLLEXPORT unsigned long DLLCALL tjBufSize(int width, int height,
561 int jpegSubsamp);
DRC2e7b76b2009-04-03 12:04:24 +0000562
DRCb28fc572011-02-22 06:41:29 +0000563
DRC9b28def2011-05-21 14:37:15 +0000564/**
565 * The size of the buffer (in bytes) required to hold a YUV planar image with
566 * the given parameters.
567 *
568 * @param width width of the image (in pixels)
569 * @param height height of the image (in pixels)
DRC9b49f0e2011-07-12 03:17:23 +0000570 * @param subsamp level of chrominance subsampling in the image (see
DRC25b995a2011-05-21 15:34:54 +0000571 * @ref TJSAMP "Chrominance subsampling options".)
DRC9b28def2011-05-21 14:37:15 +0000572 *
573 * @return the size of the buffer (in bytes) required to hold the image, or
574 * -1 if the arguments are out of bounds.
575 */
DRC9b49f0e2011-07-12 03:17:23 +0000576DLLEXPORT unsigned long DLLCALL tjBufSizeYUV(int width, int height,
577 int subsamp);
DRCf3cf9732011-02-22 00:16:14 +0000578
DRCb28fc572011-02-22 06:41:29 +0000579
DRC9b28def2011-05-21 14:37:15 +0000580/**
581 * Encode an RGB or grayscale image into a YUV planar image. This function
582 * uses the accelerated color conversion routines in TurboJPEG's underlying
583 * codec to produce a planar YUV image that is suitable for X Video.
584 * Specifically, if the chrominance components are subsampled along the
585 * horizontal dimension, then the width of the luminance plane is padded to 2
586 * in the output image (same goes for the height of the luminance plane, if the
587 * chrominance components are subsampled along the vertical dimension.) Also,
588 * each line of each plane in the output image is padded to 4 bytes. Although
589 * this will work with any subsampling option, it is really only useful in
590 * combination with TJ_420, which produces an image compatible with the I420
591 * (AKA "YUV420P") format.
592 *
593 * @param handle a handle to a TurboJPEG compressor or transformer instance
594 * @param srcBuf pointer to an image buffer containing RGB or grayscale pixels
595 * to be encoded
596 * @param width width (in pixels) of the source image
597 * @param pitch bytes per line of the source image. Normally, this should be
598 * <tt>width * #tjPixelSize[pixelFormat]</tt> if the image is unpadded,
599 * or <tt>#TJPAD(width * #tjPixelSize[pixelFormat])</tt> if each line of
600 * the image is padded to the nearest 32-bit boundary, as is the case
601 * for Windows bitmaps. You can also be clever and use this parameter
602 * to skip lines, etc. Setting this parameter to 0 is the equivalent of
603 * setting it to <tt>width * #tjPixelSize[pixelFormat]</tt>.
604 * @param height height (in pixels) of the source image
DRC25b995a2011-05-21 15:34:54 +0000605 * @param pixelFormat pixel format of the source image (see @ref TJPF
DRC9b28def2011-05-21 14:37:15 +0000606 * "Pixel formats".)
DRC80803ae2011-12-15 13:12:59 +0000607 * @param dstBuf pointer to an image buffer that will receive the YUV image.
DRC9b49f0e2011-07-12 03:17:23 +0000608 * Use #tjBufSizeYUV() to determine the appropriate size for this buffer
DRC9b28def2011-05-21 14:37:15 +0000609 * based on the image width, height, and level of chrominance
610 * subsampling.
611 * @param subsamp the level of chrominance subsampling to be used when
DRC25b995a2011-05-21 15:34:54 +0000612 * generating the YUV image (see @ref TJSAMP
DRC9b28def2011-05-21 14:37:15 +0000613 * "Chrominance subsampling options".)
DRC25b995a2011-05-21 15:34:54 +0000614 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
615 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000616 *
617 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
DRC84241602011-02-25 02:08:23 +0000618*/
DRC9b28def2011-05-21 14:37:15 +0000619DLLEXPORT int DLLCALL tjEncodeYUV2(tjhandle handle,
620 unsigned char *srcBuf, int width, int pitch, int height, int pixelFormat,
621 unsigned char *dstBuf, int subsamp, int flags);
DRC84241602011-02-25 02:08:23 +0000622
623
DRC9b28def2011-05-21 14:37:15 +0000624/**
625 * Create a TurboJPEG decompressor instance.
626 *
627 * @return a handle to the newly-created instance, or NULL if an error
628 * occurred (see #tjGetErrorStr().)
DRC2e7b76b2009-04-03 12:04:24 +0000629*/
630DLLEXPORT tjhandle DLLCALL tjInitDecompress(void);
631
632
DRC9b28def2011-05-21 14:37:15 +0000633/**
634 * Retrieve information about a JPEG image without decompressing it.
635 *
636 * @param handle a handle to a TurboJPEG decompressor or transformer instance
637 * @param jpegBuf pointer to a buffer containing a JPEG image
638 * @param jpegSize size of the JPEG image (in bytes)
DRC80803ae2011-12-15 13:12:59 +0000639 * @param width pointer to an integer variable that will receive the width (in
DRC9b28def2011-05-21 14:37:15 +0000640 * pixels) of the JPEG image
DRC80803ae2011-12-15 13:12:59 +0000641 * @param height pointer to an integer variable that will receive the height
DRC9b28def2011-05-21 14:37:15 +0000642 * (in pixels) of the JPEG image
DRC80803ae2011-12-15 13:12:59 +0000643 * @param jpegSubsamp pointer to an integer variable that will receive the
DRC9b28def2011-05-21 14:37:15 +0000644 * level of chrominance subsampling used when compressing the JPEG image
DRC25b995a2011-05-21 15:34:54 +0000645 * (see @ref TJSAMP "Chrominance subsampling options".)
DRC9b28def2011-05-21 14:37:15 +0000646 *
647 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
DRC2e7b76b2009-04-03 12:04:24 +0000648*/
DRC9b28def2011-05-21 14:37:15 +0000649DLLEXPORT int DLLCALL tjDecompressHeader2(tjhandle handle,
650 unsigned char *jpegBuf, unsigned long jpegSize, int *width, int *height,
651 int *jpegSubsamp);
DRC2e7b76b2009-04-03 12:04:24 +0000652
653
DRC9b28def2011-05-21 14:37:15 +0000654/**
655 * Returns a list of fractional scaling factors that the JPEG decompressor in
656 * this implementation of TurboJPEG supports.
657 *
658 * @param numscalingfactors pointer to an integer variable that will receive
659 * the number of elements in the list
660 *
661 * @return a pointer to a list of fractional scaling factors, or NULL if an
662 * error is encountered (see #tjGetErrorStr().)
DRCb28fc572011-02-22 06:41:29 +0000663*/
DRC109a5782011-03-01 09:53:07 +0000664DLLEXPORT tjscalingfactor* DLLCALL tjGetScalingFactors(int *numscalingfactors);
DRCb28fc572011-02-22 06:41:29 +0000665
666
DRC9b28def2011-05-21 14:37:15 +0000667/**
668 * Decompress a JPEG image to an RGB or grayscale image.
669 *
670 * @param handle a handle to a TurboJPEG decompressor or transformer instance
671 * @param jpegBuf pointer to a buffer containing the JPEG image to decompress
672 * @param jpegSize size of the JPEG image (in bytes)
DRC80803ae2011-12-15 13:12:59 +0000673 * @param dstBuf pointer to an image buffer that will receive the decompressed
DRC9b28def2011-05-21 14:37:15 +0000674 * image. This buffer should normally be <tt>pitch * scaledHeight</tt>
675 * bytes in size, where <tt>scaledHeight</tt> can be determined by
676 * calling #TJSCALED() with the JPEG image height and one of the scaling
677 * factors returned by #tjGetScalingFactors(). The dstBuf pointer may
678 * also be used to decompress into a specific region of a larger buffer.
679 * @param width desired width (in pixels) of the destination image. If this is
680 * smaller than the width of the JPEG image being decompressed, then
681 * TurboJPEG will use scaling in the JPEG decompressor to generate the
682 * largest possible image that will fit within the desired width. If
683 * width is set to 0, then only the height will be considered when
684 * determining the scaled image size.
685 * @param pitch bytes per line of the destination image. Normally, this is
686 * <tt>scaledWidth * #tjPixelSize[pixelFormat]</tt> if the decompressed
687 * image is unpadded, else <tt>#TJPAD(scaledWidth *
688 * #tjPixelSize[pixelFormat])</tt> if each line of the decompressed
689 * image is padded to the nearest 32-bit boundary, as is the case for
690 * Windows bitmaps. (NOTE: <tt>scaledWidth</tt> can be determined by
691 * calling #TJSCALED() with the JPEG image width and one of the scaling
692 * factors returned by #tjGetScalingFactors().) You can also be clever
693 * and use the pitch parameter to skip lines, etc. Setting this
694 * parameter to 0 is the equivalent of setting it to <tt>scaledWidth
695 * * #tjPixelSize[pixelFormat]</tt>.
696 * @param height desired height (in pixels) of the destination image. If this
697 * is smaller than the height of the JPEG image being decompressed, then
698 * TurboJPEG will use scaling in the JPEG decompressor to generate the
699 * largest possible image that will fit within the desired height. If
700 * height is set to 0, then only the width will be considered when
701 * determining the scaled image size.
702 * @param pixelFormat pixel format of the destination image (see @ref
DRC25b995a2011-05-21 15:34:54 +0000703 * TJPF "Pixel formats".)
704 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
705 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000706 *
707 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
708 */
709DLLEXPORT int DLLCALL tjDecompress2(tjhandle handle,
710 unsigned char *jpegBuf, unsigned long jpegSize, unsigned char *dstBuf,
711 int width, int pitch, int height, int pixelFormat, int flags);
DRC2e7b76b2009-04-03 12:04:24 +0000712
713
DRC9b28def2011-05-21 14:37:15 +0000714/**
715 * Decompress a JPEG image to a YUV planar image. This function performs JPEG
716 * decompression but leaves out the color conversion step, so a planar YUV
717 * image is generated instead of an RGB image. The padding of the planes in
718 * this image is the same as the images generated by #tjEncodeYUV2(). Note
719 * that, if the width or height of the image is not an even multiple of the MCU
720 * block size (see #tjMCUWidth and #tjMCUHeight), then an intermediate buffer
721 * copy will be performed within TurboJPEG.
722 *
723 * @param handle a handle to a TurboJPEG decompressor or transformer instance
724 * @param jpegBuf pointer to a buffer containing the JPEG image to decompress
725 * @param jpegSize size of the JPEG image (in bytes)
DRC80803ae2011-12-15 13:12:59 +0000726 * @param dstBuf pointer to an image buffer that will receive the YUV image.
DRC9b49f0e2011-07-12 03:17:23 +0000727 * Use #tjBufSizeYUV to determine the appropriate size for this buffer
DRC9b28def2011-05-21 14:37:15 +0000728 * based on the image width, height, and level of subsampling.
DRC25b995a2011-05-21 15:34:54 +0000729 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
730 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000731 *
732 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
733 */
734DLLEXPORT int DLLCALL tjDecompressToYUV(tjhandle handle,
735 unsigned char *jpegBuf, unsigned long jpegSize, unsigned char *dstBuf,
736 int flags);
DRC84241602011-02-25 02:08:23 +0000737
738
DRC9b28def2011-05-21 14:37:15 +0000739/**
740 * Create a new TurboJPEG transformer instance.
741 *
742 * @return a handle to the newly-created instance, or NULL if an error
743 * occurred (see #tjGetErrorStr().)
744 */
DRC890f1e02011-02-26 22:02:37 +0000745DLLEXPORT tjhandle DLLCALL tjInitTransform(void);
746
747
DRC9b28def2011-05-21 14:37:15 +0000748/**
749 * Losslessly transform a JPEG image into another JPEG image. Lossless
750 * transforms work by moving the raw coefficients from one JPEG image structure
751 * to another without altering the values of the coefficients. While this is
752 * typically faster than decompressing the image, transforming it, and
753 * re-compressing it, lossless transforms are not free. Each lossless
754 * transform requires reading and Huffman decoding all of the coefficients in
755 * the source image, regardless of the size of the destination image. Thus,
756 * this function provides a means of generating multiple transformed images
757 * from the same source or of applying multiple transformations simultaneously,
758 * in order to eliminate the need to read the source coefficients multiple
759 * times.
760 *
761 * @param handle a handle to a TurboJPEG transformer instance
762 * @param jpegBuf pointer to a buffer containing the JPEG image to transform
763 * @param jpegSize size of the JPEG image (in bytes)
764 * @param n the number of transformed JPEG images to generate
765 * @param dstBufs pointer to an array of n image buffers. <tt>dstBufs[i]</tt>
766 * will receive a JPEG image that has been transformed using the
767 * parameters in <tt>transforms[i]</tt>. TurboJPEG has the ability to
768 * reallocate the JPEG buffer to accommodate the size of the JPEG image.
769 * Thus, you can choose to:
DRC6b76f752011-05-24 16:52:47 +0000770 * -# pre-allocate the JPEG buffer with an arbitrary size using
771 * #tjAlloc() and let TurboJPEG grow the buffer as needed,
DRC9b28def2011-05-21 14:37:15 +0000772 * -# set <tt>dstBufs[i]</tt> to NULL to tell TurboJPEG to allocate the
773 * buffer for you, or
774 * -# pre-allocate the buffer to a "worst case" size determined by
DRC9b49f0e2011-07-12 03:17:23 +0000775 * calling #tjBufSize() with the cropped width and height. This should
DRC25b995a2011-05-21 15:34:54 +0000776 * ensure that the buffer never has to be re-allocated (setting
777 * #TJFLAG_NOREALLOC guarantees this.)
DRC9b28def2011-05-21 14:37:15 +0000778 * .
DRCff78e372011-05-24 10:17:32 +0000779 * If you choose option 1, <tt>dstSizes[i]</tt> should be set to
DRC9b28def2011-05-21 14:37:15 +0000780 * the size of your pre-allocated buffer. In any case, unless you have
DRC25b995a2011-05-21 15:34:54 +0000781 * set #TJFLAG_NOREALLOC, you should always check <tt>dstBufs[i]</tt>
782 * upon return from this function, as it may have changed.
DRC80803ae2011-12-15 13:12:59 +0000783 * @param dstSizes pointer to an array of n unsigned long variables that will
DRC9b28def2011-05-21 14:37:15 +0000784 * receive the actual sizes (in bytes) of each transformed JPEG image.
785 * If <tt>dstBufs[i]</tt> points to a pre-allocated buffer, then
786 * <tt>dstSizes[i]</tt> should be set to the size of the buffer. Upon
787 * return, <tt>dstSizes[i]</tt> will contain the size of the JPEG image
788 * (in bytes.)
789 * @param transforms pointer to an array of n tjtransform structures, each of
790 * which specifies the transform parameters and/or cropping region for
791 * the corresponding transformed output image.
DRC25b995a2011-05-21 15:34:54 +0000792 * @param flags the bitwise OR of one or more of the @ref TJFLAG_BOTTOMUP
793 * "flags".
DRC9b28def2011-05-21 14:37:15 +0000794 *
795 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
796 */
797DLLEXPORT int DLLCALL tjTransform(tjhandle handle, unsigned char *jpegBuf,
798 unsigned long jpegSize, int n, unsigned char **dstBufs,
799 unsigned long *dstSizes, tjtransform *transforms, int flags);
DRC890f1e02011-02-26 22:02:37 +0000800
801
DRC9b28def2011-05-21 14:37:15 +0000802/**
803 * Destroy a TurboJPEG compressor, decompressor, or transformer instance.
804 *
805 * @param handle a handle to a TurboJPEG compressor, decompressor or
806 * transformer instance
807 *
808 * @return 0 if successful, or -1 if an error occurred (see #tjGetErrorStr().)
809 */
810DLLEXPORT int DLLCALL tjDestroy(tjhandle handle);
DRC2e7b76b2009-04-03 12:04:24 +0000811
812
DRC9b28def2011-05-21 14:37:15 +0000813/**
DRC6b76f752011-05-24 16:52:47 +0000814 * Allocate an image buffer for use with TurboJPEG. You should always use
815 * this function to allocate the JPEG destination buffer(s) for #tjCompress2()
816 * and #tjTransform() unless you are disabling automatic buffer
817 * (re)allocation (by setting #TJFLAG_NOREALLOC.)
818 *
819 * @param bytes the number of bytes to allocate
820 *
821 * @return a pointer to a newly-allocated buffer with the specified number of
822 * bytes
DRCd4411072011-05-24 17:00:15 +0000823 *
824 * @sa tjFree()
DRC6b76f752011-05-24 16:52:47 +0000825 */
826DLLEXPORT unsigned char* DLLCALL tjAlloc(int bytes);
827
828
829/**
830 * Free an image buffer previously allocated by TurboJPEG. You should always
831 * use this function to free JPEG destination buffer(s) that were automatically
832 * (re)allocated by #tjCompress2() or #tjTransform() or that were manually
833 * allocated using #tjAlloc().
834 *
835 * @param buffer address of the buffer to free
DRCd4411072011-05-24 17:00:15 +0000836 *
837 * @sa tjAlloc()
DRC6b76f752011-05-24 16:52:47 +0000838 */
839DLLEXPORT void DLLCALL tjFree(unsigned char *buffer);
840
841
842/**
DRC9b28def2011-05-21 14:37:15 +0000843 * Returns a descriptive error message explaining why the last command failed.
844 *
845 * @return a descriptive error message explaining why the last command failed.
846 */
DRC2e7b76b2009-04-03 12:04:24 +0000847DLLEXPORT char* DLLCALL tjGetErrorStr(void);
848
DRC9b28def2011-05-21 14:37:15 +0000849
850/* Backward compatibility functions and macros (nothing to see here) */
851#define NUMSUBOPT TJ_NUMSAMP
DRC25b995a2011-05-21 15:34:54 +0000852#define TJ_444 TJSAMP_444
853#define TJ_422 TJSAMP_422
854#define TJ_420 TJSAMP_420
855#define TJ_411 TJSAMP_420
856#define TJ_GRAYSCALE TJSAMP_GRAY
DRC9b28def2011-05-21 14:37:15 +0000857
DRC25b995a2011-05-21 15:34:54 +0000858#define TJ_BGR 1
859#define TJ_BOTTOMUP TJFLAG_BOTTOMUP
860#define TJ_FORCEMMX TJFLAG_FORCEMMX
861#define TJ_FORCESSE TJFLAG_FORCESSE
862#define TJ_FORCESSE2 TJFLAG_FORCESSE2
DRC9b28def2011-05-21 14:37:15 +0000863#define TJ_ALPHAFIRST 64
DRC25b995a2011-05-21 15:34:54 +0000864#define TJ_FORCESSE3 TJFLAG_FORCESSE3
865#define TJ_FASTUPSAMPLE TJFLAG_FASTUPSAMPLE
DRC9b28def2011-05-21 14:37:15 +0000866#define TJ_YUV 512
867
DRC9b49f0e2011-07-12 03:17:23 +0000868DLLEXPORT unsigned long DLLCALL TJBUFSIZE(int width, int height);
869
870DLLEXPORT unsigned long DLLCALL TJBUFSIZEYUV(int width, int height,
871 int jpegSubsamp);
872
DRC9b28def2011-05-21 14:37:15 +0000873DLLEXPORT int DLLCALL tjCompress(tjhandle handle, unsigned char *srcBuf,
874 int width, int pitch, int height, int pixelSize, unsigned char *dstBuf,
875 unsigned long *compressedSize, int jpegSubsamp, int jpegQual, int flags);
876
877DLLEXPORT int DLLCALL tjEncodeYUV(tjhandle handle,
878 unsigned char *srcBuf, int width, int pitch, int height, int pixelSize,
879 unsigned char *dstBuf, int subsamp, int flags);
880
881DLLEXPORT int DLLCALL tjDecompressHeader(tjhandle handle,
882 unsigned char *jpegBuf, unsigned long jpegSize, int *width, int *height);
883
884DLLEXPORT int DLLCALL tjDecompress(tjhandle handle,
885 unsigned char *jpegBuf, unsigned long jpegSize, unsigned char *dstBuf,
886 int width, int pitch, int height, int pixelSize, int flags);
887
888
889/**
890 * @}
891 */
892
DRC2e7b76b2009-04-03 12:04:24 +0000893#ifdef __cplusplus
894}
895#endif
DRC3a1bb352011-05-24 09:15:44 +0000896
897#endif