2 * Small jpeg decoder library
4 * Copyright (c) 2006, Luc Saillard <luc@saillard.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
9 * - Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
16 * - Neither the name of the author nor the names of its contributors may be
17 * used to endorse or promote products derived from this software without
18 * specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
40 #include "tinyjpeg-internal.h"
42 /*******************************************************************************
44 * Colorspace conversion routine
48 * YCbCr is defined per CCIR 601-1, except that Cb and Cr are
49 * normalized to the range 0..MAXJSAMPLE rather than -0.5 .. 0.5.
50 * The conversion equations to be implemented are therefore
51 * R = Y + 1.40200 * Cr
52 * G = Y - 0.34414 * Cb - 0.71414 * Cr
53 * B = Y + 1.77200 * Cb
55 ******************************************************************************/
56 static unsigned char clamp(int i
)
67 * YCrCb -> RGB24 (1x1)
72 static void YCrCB_to_RGB24_1x1(struct jdec_private
*priv
)
74 const unsigned char *Y
, *Cb
, *Cr
;
77 int offset_to_next_row
;
80 #define ONE_HALF (1UL << (SCALEBITS-1))
81 #define FIX(x) ((int)((x) * (1UL<<SCALEBITS) + 0.5))
87 offset_to_next_row
= priv
->bytes_per_row
[0] - 8*3;
93 int add_r
, add_g
, add_b
;
96 y
= (*Y
++) << SCALEBITS
;
99 add_r
= FIX(1.40200) * cr
+ ONE_HALF
;
100 add_g
= - FIX(0.34414) * cb
- FIX(0.71414) * cr
+ ONE_HALF
;
101 add_b
= FIX(1.77200) * cb
+ ONE_HALF
;
103 r
= (y
+ add_r
) >> SCALEBITS
;
105 g
= (y
+ add_g
) >> SCALEBITS
;
107 b
= (y
+ add_b
) >> SCALEBITS
;
112 p
+= offset_to_next_row
;
122 * YCrCb -> RGB24 (2x1)
127 static void YCrCB_to_RGB24_2x1(struct jdec_private
*priv
)
129 const unsigned char *Y
, *Cb
, *Cr
;
132 int offset_to_next_row
;
135 #define ONE_HALF (1UL << (SCALEBITS-1))
136 #define FIX(x) ((int)((x) * (1UL<<SCALEBITS) + 0.5))
142 offset_to_next_row
= priv
->bytes_per_row
[0] - 16*3;
143 for (i
=0; i
<8; i
++) {
145 for (j
=0; j
<8; j
++) {
148 int add_r
, add_g
, add_b
;
151 y
= (*Y
++) << SCALEBITS
;
154 add_r
= FIX(1.40200) * cr
+ ONE_HALF
;
155 add_g
= - FIX(0.34414) * cb
- FIX(0.71414) * cr
+ ONE_HALF
;
156 add_b
= FIX(1.77200) * cb
+ ONE_HALF
;
158 r
= (y
+ add_r
) >> SCALEBITS
;
160 g
= (y
+ add_g
) >> SCALEBITS
;
162 b
= (y
+ add_b
) >> SCALEBITS
;
165 y
= (*Y
++) << SCALEBITS
;
166 r
= (y
+ add_r
) >> SCALEBITS
;
168 g
= (y
+ add_g
) >> SCALEBITS
;
170 b
= (y
+ add_b
) >> SCALEBITS
;
175 p
+= offset_to_next_row
;
186 * YCrCb -> RGB24 (1x2)
193 static void YCrCB_to_RGB24_1x2(struct jdec_private
*priv
)
195 const unsigned char *Y
, *Cb
, *Cr
;
196 unsigned char *p
, *p2
;
198 int offset_to_next_row
;
201 #define ONE_HALF (1UL << (SCALEBITS-1))
202 #define FIX(x) ((int)((x) * (1UL<<SCALEBITS) + 0.5))
205 p2
= priv
->plane
[0] + priv
->bytes_per_row
[0];
209 offset_to_next_row
= 2*priv
->bytes_per_row
[0] - 8*3;
210 for (i
=0; i
<8; i
++) {
212 for (j
=0; j
<8; j
++) {
215 int add_r
, add_g
, add_b
;
220 add_r
= FIX(1.40200) * cr
+ ONE_HALF
;
221 add_g
= - FIX(0.34414) * cb
- FIX(0.71414) * cr
+ ONE_HALF
;
222 add_b
= FIX(1.77200) * cb
+ ONE_HALF
;
224 y
= (*Y
++) << SCALEBITS
;
225 r
= (y
+ add_r
) >> SCALEBITS
;
227 g
= (y
+ add_g
) >> SCALEBITS
;
229 b
= (y
+ add_b
) >> SCALEBITS
;
232 y
= (Y
[8-1]) << SCALEBITS
;
233 r
= (y
+ add_r
) >> SCALEBITS
;
235 g
= (y
+ add_g
) >> SCALEBITS
;
237 b
= (y
+ add_b
) >> SCALEBITS
;
242 p
+= offset_to_next_row
;
243 p2
+= offset_to_next_row
;
253 * YCrCb -> RGB24 (2x2)
260 static void YCrCB_to_RGB24_2x2(struct jdec_private
*priv
)
262 const unsigned char *Y
, *Cb
, *Cr
;
263 unsigned char *p
, *p2
;
265 int offset_to_next_row
;
268 #define ONE_HALF (1UL << (SCALEBITS-1))
269 #define FIX(x) ((int)((x) * (1UL<<SCALEBITS) + 0.5))
272 p2
= priv
->plane
[0] + priv
->bytes_per_row
[0];
276 offset_to_next_row
= 2*priv
->bytes_per_row
[0] - 16*3;
277 for (i
=0; i
<8; i
++) {
282 int add_r
, add_g
, add_b
;
287 add_r
= FIX(1.40200) * cr
+ ONE_HALF
;
288 add_g
= - FIX(0.34414) * cb
- FIX(0.71414) * cr
+ ONE_HALF
;
289 add_b
= FIX(1.77200) * cb
+ ONE_HALF
;
291 y
= (*Y
++) << SCALEBITS
;
292 r
= (y
+ add_r
) >> SCALEBITS
;
294 g
= (y
+ add_g
) >> SCALEBITS
;
296 b
= (y
+ add_b
) >> SCALEBITS
;
299 y
= (*Y
++) << SCALEBITS
;
300 r
= (y
+ add_r
) >> SCALEBITS
;
302 g
= (y
+ add_g
) >> SCALEBITS
;
304 b
= (y
+ add_b
) >> SCALEBITS
;
307 y
= (Y
[16-2]) << SCALEBITS
;
308 r
= (y
+ add_r
) >> SCALEBITS
;
310 g
= (y
+ add_g
) >> SCALEBITS
;
312 b
= (y
+ add_b
) >> SCALEBITS
;
315 y
= (Y
[16-1]) << SCALEBITS
;
316 r
= (y
+ add_r
) >> SCALEBITS
;
318 g
= (y
+ add_g
) >> SCALEBITS
;
320 b
= (y
+ add_b
) >> SCALEBITS
;
324 p
+= offset_to_next_row
;
325 p2
+= offset_to_next_row
;
334 static int initialize_rgb24(struct jdec_private
*priv
,
335 unsigned int *bytes_per_blocklines
,
336 unsigned int *bytes_per_mcu
)
338 if (priv
->components
[0] == NULL
)
339 priv
->components
[0] = (uint8_t *)malloc(priv
->width
* priv
->height
* 3);
340 if (!priv
->bytes_per_row
[0])
341 priv
->bytes_per_row
[0] = priv
->width
* 3;
343 bytes_per_blocklines
[0] = priv
->bytes_per_row
[0];
344 bytes_per_mcu
[0] = 3*8;
346 return !priv
->components
[0];
349 static const struct tinyjpeg_colorspace format_rgb24
=
357 tinyjpeg_decode_mcu_3comp_table
,
361 const tinyjpeg_colorspace_t TINYJPEG_FMT_RGB24
= &format_rgb24
;