Minor cleanup patch, that gets rid of a bunch of "old style declaration" warnings...
[openjpeg.git] / libopenjpeg / mct.c
1 /*
2  * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
3  * Copyright (c) 2002-2007, Professor Benoit Macq
4  * Copyright (c) 2001-2003, David Janssens
5  * Copyright (c) 2002-2003, Yannick Verschueren
6  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7  * Copyright (c) 2005, Herve Drolon, FreeImage Team
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include "opj_includes.h"
33
34 /* <summary> */
35 /* This table contains the norms of the basis function of the reversible MCT. */
36 /* </summary> */
37 static const double mct_norms[3] = { 1.732, .8292, .8292 };
38
39 /* <summary> */
40 /* This table contains the norms of the basis function of the irreversible MCT. */
41 /* </summary> */
42 static const double mct_norms_real[3] = { 1.732, 1.805, 1.573 };
43
44 /* <summary> */
45 /* Foward reversible MCT. */
46 /* </summary> */
47 void mct_encode(int *c0, int *c1, int *c2, int n) {
48         int i;
49         for (i = 0; i < n; i++) {
50                 int r, g, b, y, u, v;
51                 r = c0[i];
52                 g = c1[i];
53                 b = c2[i];
54                 y = (r + (g << 1) + b) >> 2;
55                 u = b - g;
56                 v = r - g;
57                 c0[i] = y;
58                 c1[i] = u;
59                 c2[i] = v;
60         }
61 }
62
63 /* <summary> */
64 /* Inverse reversible MCT. */
65 /* </summary> */
66 void mct_decode(int *c0, int *c1, int *c2, int n) {
67         int i;
68         for (i = 0; i < n; i++) {
69                 int y, u, v, r, g, b;
70                 y = c0[i];
71                 u = c1[i];
72                 v = c2[i];
73                 g = y - ((u + v) >> 2);
74                 r = v + g;
75                 b = u + g;
76                 c0[i] = r;
77                 c1[i] = g;
78                 c2[i] = b;
79         }
80 }
81
82 /* <summary> */
83 /* Get norm of basis function of reversible MCT. */
84 /* </summary> */
85 double mct_getnorm(int compno) {
86         return mct_norms[compno];
87 }
88
89 /* <summary> */
90 /* Foward irreversible MCT. */
91 /* </summary> */
92 void mct_encode_real(int *c0, int *c1, int *c2, int n) {
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         int i;
113         for (i = 0; i < n; i++) {
114                 int y, u, v, r, g, b;
115                 y = c0[i];
116                 u = c1[i];
117                 v = c2[i];
118                 r = y + fix_mul(v, 11485);
119                 g = y - fix_mul(u, 2819) - fix_mul(v, 5850);
120                 b = y + fix_mul(u, 14516);
121                 c0[i] = r;
122                 c1[i] = g;
123                 c2[i] = b;
124         }
125 }
126
127 /* <summary> */
128 /* Get norm of basis function of irreversible MCT. */
129 /* </summary> */
130 double mct_getnorm_real(int compno) {
131         return mct_norms_real[compno];
132 }