Add undefine macro.
[plumiferos.git] / extern / ffmpeg / libavcodec / vp3dsp.c
blob0cbe8d551605ffea653c39ae1fe9c7e18858061b
1 /*
2 * Copyright (C) 2004 the ffmpeg project
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 /**
20 * @file vp3dsp.c
21 * Standard C DSP-oriented functions cribbed from the original VP3
22 * source code.
25 #include "common.h"
26 #include "avcodec.h"
27 #include "dsputil.h"
29 #define IdctAdjustBeforeShift 8
30 #define xC1S7 64277
31 #define xC2S6 60547
32 #define xC3S5 54491
33 #define xC4S4 46341
34 #define xC5S3 36410
35 #define xC6S2 25080
36 #define xC7S1 12785
38 static always_inline void idct(uint8_t *dst, int stride, int16_t *input, int type)
40 int16_t *ip = input;
41 uint8_t *cm = cropTbl + MAX_NEG_CROP;
43 int A_, B_, C_, D_, _Ad, _Bd, _Cd, _Dd, E_, F_, G_, H_;
44 int _Ed, _Gd, _Add, _Bdd, _Fd, _Hd;
45 int t1, t2;
47 int i;
49 /* Inverse DCT on the rows now */
50 for (i = 0; i < 8; i++) {
51 /* Check for non-zero values */
52 if ( ip[0] | ip[1] | ip[2] | ip[3] | ip[4] | ip[5] | ip[6] | ip[7] ) {
53 t1 = (int32_t)(xC1S7 * ip[1]);
54 t2 = (int32_t)(xC7S1 * ip[7]);
55 t1 >>= 16;
56 t2 >>= 16;
57 A_ = t1 + t2;
59 t1 = (int32_t)(xC7S1 * ip[1]);
60 t2 = (int32_t)(xC1S7 * ip[7]);
61 t1 >>= 16;
62 t2 >>= 16;
63 B_ = t1 - t2;
65 t1 = (int32_t)(xC3S5 * ip[3]);
66 t2 = (int32_t)(xC5S3 * ip[5]);
67 t1 >>= 16;
68 t2 >>= 16;
69 C_ = t1 + t2;
71 t1 = (int32_t)(xC3S5 * ip[5]);
72 t2 = (int32_t)(xC5S3 * ip[3]);
73 t1 >>= 16;
74 t2 >>= 16;
75 D_ = t1 - t2;
78 t1 = (int32_t)(xC4S4 * (A_ - C_));
79 t1 >>= 16;
80 _Ad = t1;
82 t1 = (int32_t)(xC4S4 * (B_ - D_));
83 t1 >>= 16;
84 _Bd = t1;
87 _Cd = A_ + C_;
88 _Dd = B_ + D_;
90 t1 = (int32_t)(xC4S4 * (ip[0] + ip[4]));
91 t1 >>= 16;
92 E_ = t1;
94 t1 = (int32_t)(xC4S4 * (ip[0] - ip[4]));
95 t1 >>= 16;
96 F_ = t1;
98 t1 = (int32_t)(xC2S6 * ip[2]);
99 t2 = (int32_t)(xC6S2 * ip[6]);
100 t1 >>= 16;
101 t2 >>= 16;
102 G_ = t1 + t2;
104 t1 = (int32_t)(xC6S2 * ip[2]);
105 t2 = (int32_t)(xC2S6 * ip[6]);
106 t1 >>= 16;
107 t2 >>= 16;
108 H_ = t1 - t2;
111 _Ed = E_ - G_;
112 _Gd = E_ + G_;
114 _Add = F_ + _Ad;
115 _Bdd = _Bd - H_;
117 _Fd = F_ - _Ad;
118 _Hd = _Bd + H_;
120 /* Final sequence of operations over-write original inputs. */
121 ip[0] = _Gd + _Cd ;
122 ip[7] = _Gd - _Cd ;
124 ip[1] = _Add + _Hd;
125 ip[2] = _Add - _Hd;
127 ip[3] = _Ed + _Dd ;
128 ip[4] = _Ed - _Dd ;
130 ip[5] = _Fd + _Bdd;
131 ip[6] = _Fd - _Bdd;
135 ip += 8; /* next row */
138 ip = input;
140 for ( i = 0; i < 8; i++) {
141 /* Check for non-zero values (bitwise or faster than ||) */
142 if ( ip[1 * 8] | ip[2 * 8] | ip[3 * 8] |
143 ip[4 * 8] | ip[5 * 8] | ip[6 * 8] | ip[7 * 8] ) {
145 t1 = (int32_t)(xC1S7 * ip[1*8]);
146 t2 = (int32_t)(xC7S1 * ip[7*8]);
147 t1 >>= 16;
148 t2 >>= 16;
149 A_ = t1 + t2;
151 t1 = (int32_t)(xC7S1 * ip[1*8]);
152 t2 = (int32_t)(xC1S7 * ip[7*8]);
153 t1 >>= 16;
154 t2 >>= 16;
155 B_ = t1 - t2;
157 t1 = (int32_t)(xC3S5 * ip[3*8]);
158 t2 = (int32_t)(xC5S3 * ip[5*8]);
159 t1 >>= 16;
160 t2 >>= 16;
161 C_ = t1 + t2;
163 t1 = (int32_t)(xC3S5 * ip[5*8]);
164 t2 = (int32_t)(xC5S3 * ip[3*8]);
165 t1 >>= 16;
166 t2 >>= 16;
167 D_ = t1 - t2;
170 t1 = (int32_t)(xC4S4 * (A_ - C_));
171 t1 >>= 16;
172 _Ad = t1;
174 t1 = (int32_t)(xC4S4 * (B_ - D_));
175 t1 >>= 16;
176 _Bd = t1;
179 _Cd = A_ + C_;
180 _Dd = B_ + D_;
182 t1 = (int32_t)(xC4S4 * (ip[0*8] + ip[4*8]));
183 t1 >>= 16;
184 E_ = t1;
186 t1 = (int32_t)(xC4S4 * (ip[0*8] - ip[4*8]));
187 t1 >>= 16;
188 F_ = t1;
190 t1 = (int32_t)(xC2S6 * ip[2*8]);
191 t2 = (int32_t)(xC6S2 * ip[6*8]);
192 t1 >>= 16;
193 t2 >>= 16;
194 G_ = t1 + t2;
196 t1 = (int32_t)(xC6S2 * ip[2*8]);
197 t2 = (int32_t)(xC2S6 * ip[6*8]);
198 t1 >>= 16;
199 t2 >>= 16;
200 H_ = t1 - t2;
203 _Ed = E_ - G_;
204 _Gd = E_ + G_;
206 _Add = F_ + _Ad;
207 _Bdd = _Bd - H_;
209 _Fd = F_ - _Ad;
210 _Hd = _Bd + H_;
212 if(type==1){ //HACK
213 _Gd += 16*128;
214 _Add+= 16*128;
215 _Ed += 16*128;
216 _Fd += 16*128;
218 _Gd += IdctAdjustBeforeShift;
219 _Add += IdctAdjustBeforeShift;
220 _Ed += IdctAdjustBeforeShift;
221 _Fd += IdctAdjustBeforeShift;
223 /* Final sequence of operations over-write original inputs. */
224 if(type==0){
225 ip[0*8] = (_Gd + _Cd ) >> 4;
226 ip[7*8] = (_Gd - _Cd ) >> 4;
228 ip[1*8] = (_Add + _Hd ) >> 4;
229 ip[2*8] = (_Add - _Hd ) >> 4;
231 ip[3*8] = (_Ed + _Dd ) >> 4;
232 ip[4*8] = (_Ed - _Dd ) >> 4;
234 ip[5*8] = (_Fd + _Bdd ) >> 4;
235 ip[6*8] = (_Fd - _Bdd ) >> 4;
236 }else if(type==1){
237 dst[0*stride] = cm[(_Gd + _Cd ) >> 4];
238 dst[7*stride] = cm[(_Gd - _Cd ) >> 4];
240 dst[1*stride] = cm[(_Add + _Hd ) >> 4];
241 dst[2*stride] = cm[(_Add - _Hd ) >> 4];
243 dst[3*stride] = cm[(_Ed + _Dd ) >> 4];
244 dst[4*stride] = cm[(_Ed - _Dd ) >> 4];
246 dst[5*stride] = cm[(_Fd + _Bdd ) >> 4];
247 dst[6*stride] = cm[(_Fd - _Bdd ) >> 4];
248 }else{
249 dst[0*stride] = cm[dst[0*stride] + ((_Gd + _Cd ) >> 4)];
250 dst[7*stride] = cm[dst[7*stride] + ((_Gd - _Cd ) >> 4)];
252 dst[1*stride] = cm[dst[1*stride] + ((_Add + _Hd ) >> 4)];
253 dst[2*stride] = cm[dst[2*stride] + ((_Add - _Hd ) >> 4)];
255 dst[3*stride] = cm[dst[3*stride] + ((_Ed + _Dd ) >> 4)];
256 dst[4*stride] = cm[dst[4*stride] + ((_Ed - _Dd ) >> 4)];
258 dst[5*stride] = cm[dst[5*stride] + ((_Fd + _Bdd ) >> 4)];
259 dst[6*stride] = cm[dst[6*stride] + ((_Fd - _Bdd ) >> 4)];
262 } else {
263 if(type==0){
264 ip[0*8] =
265 ip[1*8] =
266 ip[2*8] =
267 ip[3*8] =
268 ip[4*8] =
269 ip[5*8] =
270 ip[6*8] =
271 ip[7*8] = ((xC4S4 * ip[0*8] + (IdctAdjustBeforeShift<<16))>>20);
272 }else if(type==1){
273 dst[0*stride]=
274 dst[1*stride]=
275 dst[2*stride]=
276 dst[3*stride]=
277 dst[4*stride]=
278 dst[5*stride]=
279 dst[6*stride]=
280 dst[7*stride]= 128 + ((xC4S4 * ip[0*8] + (IdctAdjustBeforeShift<<16))>>20);
281 }else{
282 if(ip[0*8]){
283 int v= ((xC4S4 * ip[0*8] + (IdctAdjustBeforeShift<<16))>>20);
284 dst[0*stride] = cm[dst[0*stride] + v];
285 dst[1*stride] = cm[dst[1*stride] + v];
286 dst[2*stride] = cm[dst[2*stride] + v];
287 dst[3*stride] = cm[dst[3*stride] + v];
288 dst[4*stride] = cm[dst[4*stride] + v];
289 dst[5*stride] = cm[dst[5*stride] + v];
290 dst[6*stride] = cm[dst[6*stride] + v];
291 dst[7*stride] = cm[dst[7*stride] + v];
296 ip++; /* next column */
297 dst++;
301 void ff_vp3_idct_c(DCTELEM *block/* align 16*/){
302 idct(NULL, 0, block, 0);
305 void ff_vp3_idct_put_c(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/){
306 idct(dest, line_size, block, 1);
309 void ff_vp3_idct_add_c(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/){
310 idct(dest, line_size, block, 2);