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