685a9f888435a9953b76eb5e884ae6f6797c7d92
[openjpeg.git] / src / lib / openjp3d / mct.c
1 /*
2  * The copyright in this software is being made available under the 2-clauses 
3  * BSD License, included below. This software may be subject to other third 
4  * party and contributor rights, including patent rights, and no such rights
5  * are granted under this license.
6  *
7  * Copyright (c) 2001-2003, David Janssens
8  * Copyright (c) 2002-2003, Yannick Verschueren
9  * Copyright (c) 2003-2005, Francois Devaux and Antonin Descampe
10  * Copyright (c) 2005, Herve Drolon, FreeImage Team
11  * Copyright (c) 2002-2005, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
12  * All rights reserved.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions
16  * are met:
17  * 1. Redistributions of source code must retain the above copyright
18  *    notice, this list of conditions and the following disclaimer.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
24  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  */
35
36 #include "opj_includes.h"
37
38 /* <summary> */
39 /* This table contains the norms of the basis function of the reversible MCT. */
40 /* </summary> */
41 static const double mct_norms[3] = { 1.732, .8292, .8292 };
42
43 /* <summary> */
44 /* This table contains the norms of the basis function of the irreversible MCT. */
45 /* </summary> */
46 static const double mct_norms_real[3] = { 1.732, 1.805, 1.573 };
47
48 /* <summary> */
49 /* Forward reversible MCT. */
50 /* </summary> */
51 void mct_encode(int *c0, int *c1, int *c2, int n) {
52         int i;
53         for (i = 0; i < n; i++) {
54                 int r, g, b, y, u, v;
55                 r = c0[i];
56                 g = c1[i];
57                 b = c2[i];
58                 y = (r + (g << 1) + b) >> 2;
59                 u = b - g;
60                 v = r - g;
61                 c0[i] = y;
62                 c1[i] = u;
63                 c2[i] = v;
64         }
65 }
66
67 /* <summary> */
68 /* Inverse reversible MCT. */
69 /* </summary> */
70 void mct_decode(int *c0, int *c1, int *c2, int n) {
71         int i;
72         for (i = 0; i < n; i++) {
73                 int y, u, v, r, g, b;
74                 y = c0[i];
75                 u = c1[i];
76                 v = c2[i];
77                 g = y - ((u + v) >> 2);
78                 r = v + g;
79                 b = u + g;
80                 c0[i] = r;
81                 c1[i] = g;
82                 c2[i] = b;
83         }
84 }
85
86 /* <summary> */
87 /* Get norm of basis function of reversible MCT. */
88 /* </summary> */
89 double mct_getnorm(int compno) {
90         return mct_norms[compno];
91 }
92
93 /* <summary> */
94 /* Forward irreversible MCT. */
95 /* </summary> */
96 void mct_encode_real(int *c0, int *c1, int *c2, int n) {
97         int i;
98         for (i = 0; i < n; i++) {
99                 int r, g, b, y, u, v;
100                 r = c0[i];
101                 g = c1[i];
102                 b = c2[i];
103                 y = fix_mul(r, 2449) + fix_mul(g, 4809) + fix_mul(b, 934);
104                 u = -fix_mul(r, 1382) - fix_mul(g, 2714) + fix_mul(b, 4096);
105                 v = fix_mul(r, 4096) - fix_mul(g, 3430) - fix_mul(b, 666);
106                 c0[i] = y;
107                 c1[i] = u;
108                 c2[i] = v;
109         }
110 }
111
112 /* <summary> */
113 /* Inverse irreversible MCT. */
114 /* </summary> */
115 void mct_decode_real(int *c0, int *c1, int *c2, int n) {
116         int i;
117         for (i = 0; i < n; i++) {
118                 int y, u, v, r, g, b;
119                 y = c0[i];
120                 u = c1[i];
121                 v = c2[i];
122                 r = y + fix_mul(v, 11485);
123                 g = y - fix_mul(u, 2819) - fix_mul(v, 5850);
124                 b = y + fix_mul(u, 14516);
125                 c0[i] = r;
126                 c1[i] = g;
127                 c2[i] = b;
128         }
129 }
130
131 /* <summary> */
132 /* Get norm of basis function of irreversible MCT. */
133 /* </summary> */
134 double mct_getnorm_real(int compno) {
135         return mct_norms_real[compno];
136 }