annotate simple_idct.c @ 396:fce0a2520551 libavcodec

removed useless header includes - use av memory functions
author glantau
date Sat, 18 May 2002 23:03:29 +0000
parents 5a8eb5cf9f92
children 718a22dc121f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
1 /*
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
2 Copyright (C) 2001 Michael Niedermayer (michaelni@gmx.at)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
3
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
6 the Free Software Foundation; either version 2 of the License, or
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
7 (at your option) any later version.
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
8
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
12 GNU General Public License for more details.
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
13
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
15 along with this program; if not, write to the Free Software
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
17 */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
18
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
19 /*
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
20 based upon some outcommented c code from mpeg2dec (idct_mmx.c written by Aaron Holtzman <aholtzma@ess.engr.uvic.ca>)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
21 */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
22
396
fce0a2520551 removed useless header includes - use av memory functions
glantau
parents: 352
diff changeset
23 #include "avcodec.h"
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
24
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
25 #include "simple_idct.h"
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
26
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
27 #if 0
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
28 #define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
29 #define W2 2676 /* 2048*sqrt (2)*cos (2*pi/16) */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
30 #define W3 2408 /* 2048*sqrt (2)*cos (3*pi/16) */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
31 #define W4 2048 /* 2048*sqrt (2)*cos (4*pi/16) */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
32 #define W5 1609 /* 2048*sqrt (2)*cos (5*pi/16) */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
33 #define W6 1108 /* 2048*sqrt (2)*cos (6*pi/16) */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
34 #define W7 565 /* 2048*sqrt (2)*cos (7*pi/16) */
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
35 #define ROW_SHIFT 8
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
36 #define COL_SHIFT 17
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
37 #else
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
38 #define W1 22725 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
39 #define W2 21407 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
40 #define W3 19266 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
352
5a8eb5cf9f92 C4=16383 for the c version too and even for some outcommented code
michaelni
parents: 215
diff changeset
41 #define W4 16383 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
42 #define W5 12873 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
43 #define W6 8867 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
44 #define W7 4520 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
45 #define ROW_SHIFT 11
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
46 #define COL_SHIFT 20 // 6
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
47 #endif
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
48
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
49 /* 8x8 Matrix used to do a trivial (slow) 8 point IDCT */
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
50 static int coeff[64]={
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
51 W4, W4, W4, W4, W4, W4, W4, W4,
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
52 W1, W3, W5, W7,-W7,-W5,-W3,-W1,
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
53 W2, W6,-W6,-W2,-W2,-W6, W6, W2,
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
54 W3,-W7,-W1,-W5, W5, W1, W7,-W3,
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
55 W4,-W4,-W4, W4, W4,-W4,-W4, W4,
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
56 W5,-W1, W7, W3,-W3,-W7, W1,-W5,
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
57 W6,-W2, W2,-W6,-W6, W2,-W2, W6,
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
58 W7,-W5, W3,-W1, W1,-W3, W5,-W7
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
59 };
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
60
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
61 static int inline idctRowCondZ (int16_t * row)
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
62 {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
63 int a0, a1, a2, a3, b0, b1, b2, b3;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
64
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
65 if( !( ((uint32_t*)row)[0]|((uint32_t*)row)[1] |((uint32_t*)row)[2] |((uint32_t*)row)[3])) {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
66 /* row[0] = row[1] = row[2] = row[3] = row[4] =
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
67 row[5] = row[6] = row[7] = 0;*/
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
68 return 0;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
69 }
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
70
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
71 if(!( ((uint32_t*)row)[2] |((uint32_t*)row)[3] )){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
72 a0 = W4*row[0] + W2*row[2] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
73 a1 = W4*row[0] + W6*row[2] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
74 a2 = W4*row[0] - W6*row[2] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
75 a3 = W4*row[0] - W2*row[2] + (1<<(ROW_SHIFT-1));
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
76
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
77 b0 = W1*row[1] + W3*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
78 b1 = W3*row[1] - W7*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
79 b2 = W5*row[1] - W1*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
80 b3 = W7*row[1] - W5*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
81 }else{
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
82 a0 = W4*row[0] + W2*row[2] + W4*row[4] + W6*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
83 a1 = W4*row[0] + W6*row[2] - W4*row[4] - W2*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
84 a2 = W4*row[0] - W6*row[2] - W4*row[4] + W2*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
85 a3 = W4*row[0] - W2*row[2] + W4*row[4] - W6*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
86
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
87 b0 = W1*row[1] + W3*row[3] + W5*row[5] + W7*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
88 b1 = W3*row[1] - W7*row[3] - W1*row[5] - W5*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
89 b2 = W5*row[1] - W1*row[3] + W7*row[5] + W3*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
90 b3 = W7*row[1] - W5*row[3] + W3*row[5] - W1*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
91 }
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
92
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
93 row[0] = (a0 + b0) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
94 row[1] = (a1 + b1) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
95 row[2] = (a2 + b2) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
96 row[3] = (a3 + b3) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
97 row[4] = (a3 - b3) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
98 row[5] = (a2 - b2) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
99 row[6] = (a1 - b1) >> ROW_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
100 row[7] = (a0 - b0) >> ROW_SHIFT;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
101
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
102 return 1;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
103 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
104
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
105 #ifdef ARCH_ALPHA
215
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
106 /* 0: all entries 0, 1: only first entry nonzero, 2: otherwise */
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
107 static int inline idctRowCondDC(int16_t *row)
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
108 {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
109 int_fast32_t a0, a1, a2, a3, b0, b1, b2, b3;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
110 uint64_t *lrow = (uint64_t *) row;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
111
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
112 if (lrow[1] == 0) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
113 if (lrow[0] == 0)
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
114 return 0;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
115 if ((lrow[0] & ~0xffffULL) == 0) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
116 uint64_t v;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
117
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
118 a0 = W4 * row[0];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
119 a0 += 1 << (ROW_SHIFT - 1);
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
120 a0 >>= ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
121 v = (uint16_t) a0;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
122 v += v << 16;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
123 v += v << 32;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
124 lrow[0] = v;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
125 lrow[1] = v;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
126
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
127 return 1;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
128 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
129 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
130
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
131 a0 = W4 * row[0];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
132 a1 = W4 * row[0];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
133 a2 = W4 * row[0];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
134 a3 = W4 * row[0];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
135
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
136 if (row[2]) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
137 a0 += W2 * row[2];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
138 a1 += W6 * row[2];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
139 a2 -= W6 * row[2];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
140 a3 -= W2 * row[2];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
141 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
142
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
143 if (row[4]) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
144 a0 += W4 * row[4];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
145 a1 -= W4 * row[4];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
146 a2 -= W4 * row[4];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
147 a3 += W4 * row[4];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
148 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
149
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
150 if (row[6]) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
151 a0 += W6 * row[6];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
152 a1 -= W2 * row[6];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
153 a2 += W2 * row[6];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
154 a3 -= W6 * row[6];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
155 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
156
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
157 a0 += 1 << (ROW_SHIFT - 1);
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
158 a1 += 1 << (ROW_SHIFT - 1);
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
159 a2 += 1 << (ROW_SHIFT - 1);
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
160 a3 += 1 << (ROW_SHIFT - 1);
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
161
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
162 if (row[1]) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
163 b0 = W1 * row[1];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
164 b1 = W3 * row[1];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
165 b2 = W5 * row[1];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
166 b3 = W7 * row[1];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
167 } else {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
168 b0 = 0;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
169 b1 = 0;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
170 b2 = 0;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
171 b3 = 0;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
172 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
173
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
174 if (row[3]) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
175 b0 += W3 * row[3];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
176 b1 -= W7 * row[3];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
177 b2 -= W1 * row[3];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
178 b3 -= W5 * row[3];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
179 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
180
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
181 if (row[5]) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
182 b0 += W5 * row[5];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
183 b1 -= W1 * row[5];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
184 b2 += W7 * row[5];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
185 b3 += W3 * row[5];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
186 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
187
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
188 if (row[7]) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
189 b0 += W7 * row[7];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
190 b1 -= W5 * row[7];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
191 b2 += W3 * row[7];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
192 b3 -= W1 * row[7];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
193 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
194
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
195 row[0] = (a0 + b0) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
196 row[1] = (a1 + b1) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
197 row[2] = (a2 + b2) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
198 row[3] = (a3 + b3) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
199 row[4] = (a3 - b3) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
200 row[5] = (a2 - b2) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
201 row[6] = (a1 - b1) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
202 row[7] = (a0 - b0) >> ROW_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
203
215
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
204 return 2;
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
205 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
206 #else /* not ARCH_ALPHA */
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
207 static int inline idctRowCondDC (int16_t * row)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
208 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
209 int a0, a1, a2, a3, b0, b1, b2, b3;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
210
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
211 if( !( ((uint32_t*)row)[1] |((uint32_t*)row)[2] |((uint32_t*)row)[3]| row[1])) {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
212 // row[0] = row[1] = row[2] = row[3] = row[4] = row[5] = row[6] = row[7] = row[0]<<3;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
213 uint16_t temp= row[0]<<3;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
214 ((uint32_t*)row)[0]=((uint32_t*)row)[1]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
215 ((uint32_t*)row)[2]=((uint32_t*)row)[3]= temp + (temp<<16);
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
216 return 0;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
217 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
218
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
219 if(!( ((uint32_t*)row)[2] |((uint32_t*)row)[3] )){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
220 a0 = W4*row[0] + W2*row[2] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
221 a1 = W4*row[0] + W6*row[2] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
222 a2 = W4*row[0] - W6*row[2] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
223 a3 = W4*row[0] - W2*row[2] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
224
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
225 b0 = W1*row[1] + W3*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
226 b1 = W3*row[1] - W7*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
227 b2 = W5*row[1] - W1*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
228 b3 = W7*row[1] - W5*row[3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
229 }else{
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
230 a0 = W4*row[0] + W2*row[2] + W4*row[4] + W6*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
231 a1 = W4*row[0] + W6*row[2] - W4*row[4] - W2*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
232 a2 = W4*row[0] - W6*row[2] - W4*row[4] + W2*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
233 a3 = W4*row[0] - W2*row[2] + W4*row[4] - W6*row[6] + (1<<(ROW_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
234
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
235 b0 = W1*row[1] + W3*row[3] + W5*row[5] + W7*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
236 b1 = W3*row[1] - W7*row[3] - W1*row[5] - W5*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
237 b2 = W5*row[1] - W1*row[3] + W7*row[5] + W3*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
238 b3 = W7*row[1] - W5*row[3] + W3*row[5] - W1*row[7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
239 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
240
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
241 row[0] = (a0 + b0) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
242 row[7] = (a0 - b0) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
243 row[1] = (a1 + b1) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
244 row[6] = (a1 - b1) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
245 row[2] = (a2 + b2) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
246 row[5] = (a2 - b2) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
247 row[3] = (a3 + b3) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
248 row[4] = (a3 - b3) >> ROW_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
249
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
250 return 1;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
251 }
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
252 #endif /* not ARCH_ALPHA */
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
253
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
254 static void inline idctCol (int16_t * col)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
255 {
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
256
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
257 /*
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
258 if( !(col[8*1] | col[8*2] |col[8*3] |col[8*4] |col[8*5] |col[8*6] | col[8*7])) {
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
259 col[8*0] = col[8*1] = col[8*2] = col[8*3] = col[8*4] =
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
260 col[8*5] = col[8*6] = col[8*7] = col[8*0]<<3;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
261 return;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
262 }*/
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
263
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
264 int a0, a1, a2, a3, b0, b1, b2, b3;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
265 col[0] += (1<<(COL_SHIFT-1))/W4;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
266 a0 = W4*col[8*0] + W2*col[8*2] + W4*col[8*4] + W6*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
267 a1 = W4*col[8*0] + W6*col[8*2] - W4*col[8*4] - W2*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
268 a2 = W4*col[8*0] - W6*col[8*2] - W4*col[8*4] + W2*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
269 a3 = W4*col[8*0] - W2*col[8*2] + W4*col[8*4] - W6*col[8*6];
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
270
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
271 b0 = W1*col[8*1] + W3*col[8*3] + W5*col[8*5] + W7*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
272 b1 = W3*col[8*1] - W7*col[8*3] - W1*col[8*5] - W5*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
273 b2 = W5*col[8*1] - W1*col[8*3] + W7*col[8*5] + W3*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
274 b3 = W7*col[8*1] - W5*col[8*3] + W3*col[8*5] - W1*col[8*7];
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
275
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
276 col[8*0] = (a0 + b0) >> COL_SHIFT;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
277 col[8*7] = (a0 - b0) >> COL_SHIFT;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
278 col[8*1] = (a1 + b1) >> COL_SHIFT;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
279 col[8*6] = (a1 - b1) >> COL_SHIFT;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
280 col[8*2] = (a2 + b2) >> COL_SHIFT;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
281 col[8*5] = (a2 - b2) >> COL_SHIFT;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
282 col[8*3] = (a3 + b3) >> COL_SHIFT;
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
283 col[8*4] = (a3 - b3) >> COL_SHIFT;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
284 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
285
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
286 static void inline idctSparseCol (int16_t * col)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
287 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
288 int a0, a1, a2, a3, b0, b1, b2, b3;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
289 col[0] += (1<<(COL_SHIFT-1))/W4;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
290 a0 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
291 a1 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
292 a2 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
293 a3 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
294
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
295 if(col[8*2]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
296 a0 += + W2*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
297 a1 += + W6*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
298 a2 += - W6*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
299 a3 += - W2*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
300 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
301
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
302 if(col[8*4]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
303 a0 += + W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
304 a1 += - W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
305 a2 += - W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
306 a3 += + W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
307 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
308
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
309 if(col[8*6]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
310 a0 += + W6*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
311 a1 += - W2*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
312 a2 += + W2*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
313 a3 += - W6*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
314 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
315
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
316 if(col[8*1]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
317 b0 = W1*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
318 b1 = W3*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
319 b2 = W5*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
320 b3 = W7*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
321 }else{
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
322 b0 =
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
323 b1 =
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
324 b2 =
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
325 b3 = 0;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
326 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
327
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
328 if(col[8*3]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
329 b0 += + W3*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
330 b1 += - W7*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
331 b2 += - W1*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
332 b3 += - W5*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
333 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
334
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
335 if(col[8*5]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
336 b0 += + W5*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
337 b1 += - W1*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
338 b2 += + W7*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
339 b3 += + W3*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
340 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
341
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
342 if(col[8*7]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
343 b0 += + W7*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
344 b1 += - W5*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
345 b2 += + W3*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
346 b3 += - W1*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
347 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
348
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
349 #ifndef ARCH_ALPHA
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
350 if(!(b0|b1|b2|b3)){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
351 col[8*0] = (a0) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
352 col[8*7] = (a0) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
353 col[8*1] = (a1) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
354 col[8*6] = (a1) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
355 col[8*2] = (a2) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
356 col[8*5] = (a2) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
357 col[8*3] = (a3) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
358 col[8*4] = (a3) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
359 }else{
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
360 #endif
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
361 col[8*0] = (a0 + b0) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
362 col[8*7] = (a0 - b0) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
363 col[8*1] = (a1 + b1) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
364 col[8*6] = (a1 - b1) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
365 col[8*2] = (a2 + b2) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
366 col[8*5] = (a2 - b2) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
367 col[8*3] = (a3 + b3) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
368 col[8*4] = (a3 - b3) >> COL_SHIFT;
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
369 #ifndef ARCH_ALPHA
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
370 }
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
371 #endif
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
372 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
373
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
374 static void inline idctSparse2Col (int16_t * col)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
375 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
376 int a0, a1, a2, a3, b0, b1, b2, b3;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
377 col[0] += (1<<(COL_SHIFT-1))/W4;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
378 a0 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
379 a1 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
380 a2 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
381 a3 = W4*col[8*0];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
382
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
383 if(col[8*2]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
384 a0 += + W2*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
385 a1 += + W6*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
386 a2 += - W6*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
387 a3 += - W2*col[8*2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
388 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
389
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
390 if(col[8*4]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
391 a0 += + W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
392 a1 += - W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
393 a2 += - W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
394 a3 += + W4*col[8*4];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
395 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
396
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
397 if(col[8*6]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
398 a0 += + W6*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
399 a1 += - W2*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
400 a2 += + W2*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
401 a3 += - W6*col[8*6];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
402 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
403
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
404 if(col[8*1] || 1){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
405 b0 = W1*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
406 b1 = W3*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
407 b2 = W5*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
408 b3 = W7*col[8*1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
409 }else{
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
410 b0 =
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
411 b1 =
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
412 b2 =
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
413 b3 = 0;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
414 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
415
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
416 if(col[8*3]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
417 b0 += + W3*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
418 b1 += - W7*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
419 b2 += - W1*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
420 b3 += - W5*col[8*3];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
421 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
422
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
423 if(col[8*5]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
424 b0 += + W5*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
425 b1 += - W1*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
426 b2 += + W7*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
427 b3 += + W3*col[8*5];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
428 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
429
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
430 if(col[8*7]){
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
431 b0 += + W7*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
432 b1 += - W5*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
433 b2 += + W3*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
434 b3 += - W1*col[8*7];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
435 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
436
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
437 col[8*0] = (a0 + b0) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
438 col[8*7] = (a0 - b0) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
439 col[8*1] = (a1 + b1) >> COL_SHIFT;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
440 col[8*6] = (a1 - b1) >> COL_SHIFT;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
441 col[8*2] = (a2 + b2) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
442 col[8*5] = (a2 - b2) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
443 col[8*3] = (a3 + b3) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
444 col[8*4] = (a3 - b3) >> COL_SHIFT;
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
445 }
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
446
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
447 #ifdef ARCH_ALPHA
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
448 /* If all rows but the first one are zero after row transformation,
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
449 all rows will be identical after column transformation. */
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
450 static inline void idctCol2(int16_t *col)
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
451 {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
452 int i;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
453 uint64_t l, r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
454 uint64_t *lcol = (uint64_t *) col;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
455
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
456 for (i = 0; i < 8; ++i) {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
457 int a0 = col[0] + (1 << (COL_SHIFT - 1)) / W4;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
458
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
459 a0 *= W4;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
460 col[0] = a0 >> COL_SHIFT;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
461 ++col;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
462 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
463
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
464 l = lcol[0];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
465 r = lcol[1];
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
466 lcol[ 2] = l; lcol[ 3] = r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
467 lcol[ 4] = l; lcol[ 5] = r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
468 lcol[ 6] = l; lcol[ 7] = r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
469 lcol[ 8] = l; lcol[ 9] = r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
470 lcol[10] = l; lcol[11] = r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
471 lcol[12] = l; lcol[13] = r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
472 lcol[14] = l; lcol[15] = r;
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
473 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
474 #endif
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
475
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
476 void simple_idct (short *block)
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
477 {
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
478
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
479 int i;
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
480
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
481 #if 0
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
482 int nonZero[8];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
483 int buffer[64];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
484 int nNonZero=0;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
485
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
486 idctRowCondDC(block);
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
487
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
488 for(i=1; i<8; i++)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
489 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
490 nonZero[nNonZero]=i;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
491 nNonZero+= idctRowCondZ(block + i*8);
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
492 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
493
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
494 if(nNonZero==0)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
495 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
496 for(i=0; i<8; i++)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
497 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
498 block[i ]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
499 block[i+8 ]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
500 block[i+16]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
501 block[i+24]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
502 block[i+32]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
503 block[i+40]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
504 block[i+48]=
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
505 block[i+56]= (W4*block[i] + (1<<(COL_SHIFT-1))) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
506 }
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
507 }
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
508 else if(nNonZero==1)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
509 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
510 int index= nonZero[0]*8;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
511 for(i=0; i<8; i++)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
512 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
513 int bias= W4*block[i] + (1<<(COL_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
514 int c= block[i + index];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
515 block[i ]= (c*coeff[index ] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
516 block[i+8 ]= (c*coeff[index+1] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
517 block[i+16]= (c*coeff[index+2] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
518 block[i+24]= (c*coeff[index+3] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
519 block[i+32]= (c*coeff[index+4] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
520 block[i+40]= (c*coeff[index+5] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
521 block[i+48]= (c*coeff[index+6] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
522 block[i+56]= (c*coeff[index+7] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
523 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
524 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
525 /* else if(nNonZero==2)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
526 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
527 int index1= nonZero[0]*8;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
528 int index2= nonZero[1]*8;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
529 for(i=0; i<8; i++)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
530 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
531 int bias= W4*block[i] + (1<<(COL_SHIFT-1));
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
532 int c1= block[i + index1];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
533 int c2= block[i + index2];
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
534 block[i ]= (c1*coeff[index1 ] + c2*coeff[index2 ] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
535 block[i+8 ]= (c1*coeff[index1+1] + c2*coeff[index2+1] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
536 block[i+16]= (c1*coeff[index1+2] + c2*coeff[index2+2] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
537 block[i+24]= (c1*coeff[index1+3] + c2*coeff[index2+3] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
538 block[i+32]= (c1*coeff[index1+4] + c2*coeff[index2+4] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
539 block[i+40]= (c1*coeff[index1+5] + c2*coeff[index2+5] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
540 block[i+48]= (c1*coeff[index1+6] + c2*coeff[index2+6] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
541 block[i+56]= (c1*coeff[index1+7] + c2*coeff[index2+7] + bias) >> COL_SHIFT;
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
542 }
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
543 }*/
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
544 else
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
545 {
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
546 for(i=0; i<8; i++)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
547 idctSparse2Col(block + i);
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
548 }
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
549 #elif defined(ARCH_ALPHA)
215
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
550 int rowsZero = 1; /* all rows except row 0 zero */
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
551 int rowsConstant = 1; /* all rows consist of a constant value */
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
552
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
553 for (i = 0; i < 8; i++) {
215
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
554 int sparseness = idctRowCondDC(block + 8 * i);
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
555
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
556 if (i > 0 && sparseness > 0)
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
557 rowsZero = 0;
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
558 if (sparseness == 2)
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
559 rowsConstant = 0;
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
560 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
561
215
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
562 if (rowsZero) {
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
563 idctCol2(block);
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
564 } else if (rowsConstant) {
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
565 uint64_t *lblock = (uint64_t *) block;
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
566
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
567 idctSparseCol(block);
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
568 for (i = 0; i < 8; i++) {
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
569 uint64_t v = (uint16_t) block[i * 8];
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
570
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
571 v += v << 16;
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
572 v += v << 32;
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
573 lblock[0] = v;
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
574 lblock[1] = v;
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
575 lblock += 2;
1fe6b64feefb Small simple idct improvement for Alpha by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 214
diff changeset
576 }
214
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
577 } else {
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
578 for (i = 0; i < 8; i++)
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
579 idctSparseCol(block + i);
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
580 }
73df666cacc7 Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents: 205
diff changeset
581 #else
205
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
582 for(i=0; i<8; i++)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
583 idctRowCondDC(block + i*8);
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
584
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
585 for(i=0; i<8; i++)
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
586 idctSparseCol(block + i);
ccf36af385f3 (commit by michael)
arpi_esp
parents: 175
diff changeset
587 #endif
175
bd77d3cbb233 new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
diff changeset
588 }