annotate i386/idct_mmx_xvid.c @ 6693:6f13852a9161 libavcodec

Skip blocks in B-frames reuse motion vectors from next reference frame. So if referenced blocks is 16x8, 8x16 or 8x8 partitions, skip block will have them too.
author kostya
date Sat, 26 Apr 2008 13:09:36 +0000
parents c0ef7b5d4a4f
children f7cbb7733146
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5214
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
1 /*
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
2 * XVID MPEG-4 VIDEO CODEC
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
3 * - MMX and XMM forward discrete cosine transform -
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
4 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
5 * Copyright(C) 2001 Peter Ross <pross@xvid.org>
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
6 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
7 * Originally provided by Intel at AP-922
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
8 * http://developer.intel.com/vtune/cbts/strmsimd/922down.htm
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
9 * (See more app notes at http://developer.intel.com/vtune/cbts/strmsimd/appnotes.htm)
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
10 * but in a limited edition.
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
11 * New macro implements a column part for precise iDCT
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
12 * The routine precision now satisfies IEEE standard 1180-1990.
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
13 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
14 * Copyright(C) 2000-2001 Peter Gubanov <peter@elecard.net.ru>
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
15 * Rounding trick Copyright(C) 2000 Michel Lespinasse <walken@zoy.org>
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
16 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
17 * http://www.elecard.com/peter/idct.html
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
18 * http://www.linuxvideo.org/mpeg2dec/
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
19 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
20 * These examples contain code fragments for first stage iDCT 8x8
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
21 * (for rows) and first stage DCT 8x8 (for columns)
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
22 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
23 * conversion to gcc syntax by Michael Niedermayer
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
24 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
25 * This file is part of FFmpeg.
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
26 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
27 * FFmpeg is free software; you can redistribute it and/or
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
28 * modify it under the terms of the GNU Lesser General Public
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
29 * License as published by the Free Software Foundation; either
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
30 * version 2.1 of the License, or (at your option) any later version.
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
31 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
32 * FFmpeg is distributed in the hope that it will be useful,
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
35 * Lesser General Public License for more details.
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
36 *
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
37 * You should have received a copy of the GNU Lesser General Public License
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
38 * along with FFmpeg; if not, write to the Free Software Foundation,
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
39 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
470601203f44 Group all copyright and author notices together.
diego
parents: 5010
diff changeset
40 */
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
41
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
42 #include <inttypes.h>
5010
d5ba514e3f4a Add libavcodec to compiler include flags in order to simplify header
diego
parents: 3947
diff changeset
43 #include "avcodec.h"
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
44
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
45 //=============================================================================
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
46 // Macros and other preprocessor constants
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
47 //=============================================================================
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
48
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
49 #define BITS_INV_ACC 5 // 4 or 5 for IEEE
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
50 #define SHIFT_INV_ROW (16 - BITS_INV_ACC) //11
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
51 #define SHIFT_INV_COL (1 + BITS_INV_ACC) //6
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
52 #define RND_INV_ROW (1024 * (6 - BITS_INV_ACC))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
53 #define RND_INV_COL (16 * (BITS_INV_ACC - 3))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
54 #define RND_INV_CORR (RND_INV_COL - 1)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
55
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
56 #define BITS_FRW_ACC 3 // 2 or 3 for accuracy
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
57 #define SHIFT_FRW_COL BITS_FRW_ACC
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
58 #define SHIFT_FRW_ROW (BITS_FRW_ACC + 17)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
59 #define RND_FRW_ROW (262144*(BITS_FRW_ACC - 1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
60
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
61
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
62 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
63 // Various memory constants (trigonometric values or rounding values)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
64 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
65
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
66
6188
c0ef7b5d4a4f Use DECLARE_ALIGNED and remove unneeded attribute_used
reimar
parents: 5214
diff changeset
67 DECLARE_ALIGNED(8, static const int16_t, tg_1_16[4*4]) = {
2870
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
68 13036,13036,13036,13036, // tg * (2<<16) + 0.5
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
69 27146,27146,27146,27146, // tg * (2<<16) + 0.5
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
70 -21746,-21746,-21746,-21746, // tg * (2<<16) + 0.5
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
71 23170,23170,23170,23170}; // cos * (2<<15) + 0.5
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
72
6188
c0ef7b5d4a4f Use DECLARE_ALIGNED and remove unneeded attribute_used
reimar
parents: 5214
diff changeset
73 DECLARE_ALIGNED(8, static const int32_t, rounder_0[2*8]) = {
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
74 65536,65536,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
75 3597,3597,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
76 2260,2260,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
77 1203,1203,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
78 0,0,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
79 120,120,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
80 512,512,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
81 512,512};
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
82
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
83 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
84 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
85 // The first stage iDCT 8x8 - inverse DCTs of rows
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
86 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
87 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
88 // The 8-point inverse DCT direct algorithm
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
89 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
90 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
91 // static const short w[32] = {
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
92 // FIX(cos_4_16), FIX(cos_2_16), FIX(cos_4_16), FIX(cos_6_16),
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
93 // FIX(cos_4_16), FIX(cos_6_16), -FIX(cos_4_16), -FIX(cos_2_16),
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
94 // FIX(cos_4_16), -FIX(cos_6_16), -FIX(cos_4_16), FIX(cos_2_16),
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
95 // FIX(cos_4_16), -FIX(cos_2_16), FIX(cos_4_16), -FIX(cos_6_16),
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
96 // FIX(cos_1_16), FIX(cos_3_16), FIX(cos_5_16), FIX(cos_7_16),
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
97 // FIX(cos_3_16), -FIX(cos_7_16), -FIX(cos_1_16), -FIX(cos_5_16),
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
98 // FIX(cos_5_16), -FIX(cos_1_16), FIX(cos_7_16), FIX(cos_3_16),
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
99 // FIX(cos_7_16), -FIX(cos_5_16), FIX(cos_3_16), -FIX(cos_1_16) };
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
100 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
101 // #define DCT_8_INV_ROW(x, y)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
102 // {
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
103 // int a0, a1, a2, a3, b0, b1, b2, b3;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
104 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
105 // a0 =x[0]*w[0]+x[2]*w[1]+x[4]*w[2]+x[6]*w[3];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
106 // a1 =x[0]*w[4]+x[2]*w[5]+x[4]*w[6]+x[6]*w[7];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
107 // a2 = x[0] * w[ 8] + x[2] * w[ 9] + x[4] * w[10] + x[6] * w[11];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
108 // a3 = x[0] * w[12] + x[2] * w[13] + x[4] * w[14] + x[6] * w[15];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
109 // b0 = x[1] * w[16] + x[3] * w[17] + x[5] * w[18] + x[7] * w[19];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
110 // b1 = x[1] * w[20] + x[3] * w[21] + x[5] * w[22] + x[7] * w[23];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
111 // b2 = x[1] * w[24] + x[3] * w[25] + x[5] * w[26] + x[7] * w[27];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
112 // b3 = x[1] * w[28] + x[3] * w[29] + x[5] * w[30] + x[7] * w[31];
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
113 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
114 // y[0] = SHIFT_ROUND ( a0 + b0 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
115 // y[1] = SHIFT_ROUND ( a1 + b1 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
116 // y[2] = SHIFT_ROUND ( a2 + b2 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
117 // y[3] = SHIFT_ROUND ( a3 + b3 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
118 // y[4] = SHIFT_ROUND ( a3 - b3 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
119 // y[5] = SHIFT_ROUND ( a2 - b2 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
120 // y[6] = SHIFT_ROUND ( a1 - b1 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
121 // y[7] = SHIFT_ROUND ( a0 - b0 );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
122 // }
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
123 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
124 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
125 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
126 // In this implementation the outputs of the iDCT-1D are multiplied
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
127 // for rows 0,4 - by cos_4_16,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
128 // for rows 1,7 - by cos_1_16,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
129 // for rows 2,6 - by cos_2_16,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
130 // for rows 3,5 - by cos_3_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
131 // and are shifted to the left for better accuracy
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
132 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
133 // For the constants used,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
134 // FIX(float_const) = (short) (float_const * (1<<15) + 0.5)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
135 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
136 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
137
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
138 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
139 // Tables for mmx processors
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
140 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
141
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
142 // Table for rows 0,4 - constants are multiplied by cos_4_16
6188
c0ef7b5d4a4f Use DECLARE_ALIGNED and remove unneeded attribute_used
reimar
parents: 5214
diff changeset
143 DECLARE_ALIGNED(8, static const int16_t, tab_i_04_mmx[32*4]) = {
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
144 16384,16384,16384,-16384, // movq-> w06 w04 w02 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
145 21407,8867,8867,-21407, // w07 w05 w03 w01
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
146 16384,-16384,16384,16384, // w14 w12 w10 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
147 -8867,21407,-21407,-8867, // w15 w13 w11 w09
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
148 22725,12873,19266,-22725, // w22 w20 w18 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
149 19266,4520,-4520,-12873, // w23 w21 w19 w17
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
150 12873,4520,4520,19266, // w30 w28 w26 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
151 -22725,19266,-12873,-22725, // w31 w29 w27 w25
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
152 // Table for rows 1,7 - constants are multiplied by cos_1_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
153 22725,22725,22725,-22725, // movq-> w06 w04 w02 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
154 29692,12299,12299,-29692, // w07 w05 w03 w01
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
155 22725,-22725,22725,22725, // w14 w12 w10 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
156 -12299,29692,-29692,-12299, // w15 w13 w11 w09
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
157 31521,17855,26722,-31521, // w22 w20 w18 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
158 26722,6270,-6270,-17855, // w23 w21 w19 w17
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
159 17855,6270,6270,26722, // w30 w28 w26 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
160 -31521,26722,-17855,-31521, // w31 w29 w27 w25
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
161 // Table for rows 2,6 - constants are multiplied by cos_2_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
162 21407,21407,21407,-21407, // movq-> w06 w04 w02 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
163 27969,11585,11585,-27969, // w07 w05 w03 w01
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
164 21407,-21407,21407,21407, // w14 w12 w10 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
165 -11585,27969,-27969,-11585, // w15 w13 w11 w09
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
166 29692,16819,25172,-29692, // w22 w20 w18 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
167 25172,5906,-5906,-16819, // w23 w21 w19 w17
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
168 16819,5906,5906,25172, // w30 w28 w26 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
169 -29692,25172,-16819,-29692, // w31 w29 w27 w25
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
170 // Table for rows 3,5 - constants are multiplied by cos_3_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
171 19266,19266,19266,-19266, // movq-> w06 w04 w02 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
172 25172,10426,10426,-25172, // w07 w05 w03 w01
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
173 19266,-19266,19266,19266, // w14 w12 w10 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
174 -10426,25172,-25172,-10426, // w15 w13 w11 w09
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
175 26722,15137,22654,-26722, // w22 w20 w18 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
176 22654,5315,-5315,-15137, // w23 w21 w19 w17
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
177 15137,5315,5315,22654, // w30 w28 w26 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
178 -26722,22654,-15137,-26722, // w31 w29 w27 w25
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
179 };
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
180 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
181 // Tables for xmm processors
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
182 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
183
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
184 // %3 for rows 0,4 - constants are multiplied by cos_4_16
6188
c0ef7b5d4a4f Use DECLARE_ALIGNED and remove unneeded attribute_used
reimar
parents: 5214
diff changeset
185 DECLARE_ALIGNED(8, static const int16_t, tab_i_04_xmm[32*4]) = {
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
186 16384,21407,16384,8867, // movq-> w05 w04 w01 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
187 16384,8867,-16384,-21407, // w07 w06 w03 w02
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
188 16384,-8867,16384,-21407, // w13 w12 w09 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
189 -16384,21407,16384,-8867, // w15 w14 w11 w10
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
190 22725,19266,19266,-4520, // w21 w20 w17 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
191 12873,4520,-22725,-12873, // w23 w22 w19 w18
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
192 12873,-22725,4520,-12873, // w29 w28 w25 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
193 4520,19266,19266,-22725, // w31 w30 w27 w26
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
194 // %3 for rows 1,7 - constants are multiplied by cos_1_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
195 22725,29692,22725,12299, // movq-> w05 w04 w01 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
196 22725,12299,-22725,-29692, // w07 w06 w03 w02
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
197 22725,-12299,22725,-29692, // w13 w12 w09 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
198 -22725,29692,22725,-12299, // w15 w14 w11 w10
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
199 31521,26722,26722,-6270, // w21 w20 w17 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
200 17855,6270,-31521,-17855, // w23 w22 w19 w18
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
201 17855,-31521,6270,-17855, // w29 w28 w25 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
202 6270,26722,26722,-31521, // w31 w30 w27 w26
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
203 // %3 for rows 2,6 - constants are multiplied by cos_2_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
204 21407,27969,21407,11585, // movq-> w05 w04 w01 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
205 21407,11585,-21407,-27969, // w07 w06 w03 w02
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
206 21407,-11585,21407,-27969, // w13 w12 w09 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
207 -21407,27969,21407,-11585, // w15 w14 w11 w10
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
208 29692,25172,25172,-5906, // w21 w20 w17 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
209 16819,5906,-29692,-16819, // w23 w22 w19 w18
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
210 16819,-29692,5906,-16819, // w29 w28 w25 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
211 5906,25172,25172,-29692, // w31 w30 w27 w26
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
212 // %3 for rows 3,5 - constants are multiplied by cos_3_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
213 19266,25172,19266,10426, // movq-> w05 w04 w01 w00
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
214 19266,10426,-19266,-25172, // w07 w06 w03 w02
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
215 19266,-10426,19266,-25172, // w13 w12 w09 w08
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
216 -19266,25172,19266,-10426, // w15 w14 w11 w10
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
217 26722,22654,22654,-5315, // w21 w20 w17 w16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
218 15137,5315,-26722,-15137, // w23 w22 w19 w18
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
219 15137,-26722,5315,-15137, // w29 w28 w25 w24
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
220 5315,22654,22654,-26722, // w31 w30 w27 w26
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
221 };
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
222 //=============================================================================
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
223 // Helper macros for the code
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
224 //=============================================================================
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
225
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
226 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
227 // DCT_8_INV_ROW_MMX( INP, OUT, TABLE, ROUNDER
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
228 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
229
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
230 #define DCT_8_INV_ROW_MMX(A1,A2,A3,A4)\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
231 "movq " #A1 ",%%mm0 \n\t"/* 0 ; x3 x2 x1 x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
232 "movq 8+" #A1 ",%%mm1 \n\t"/* 1 ; x7 x6 x5 x4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
233 "movq %%mm0,%%mm2 \n\t"/* 2 ; x3 x2 x1 x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
234 "movq " #A3 ",%%mm3 \n\t"/* 3 ; w06 w04 w02 w00*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
235 "punpcklwd %%mm1,%%mm0 \n\t"/* x5 x1 x4 x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
236 "movq %%mm0,%%mm5 \n\t"/* 5 ; x5 x1 x4 x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
237 "punpckldq %%mm0,%%mm0 \n\t"/* x4 x0 x4 x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
238 "movq 8+" #A3 ",%%mm4 \n\t"/* 4 ; w07 w05 w03 w01*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
239 "punpckhwd %%mm1,%%mm2 \n\t"/* 1 ; x7 x3 x6 x2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
240 "pmaddwd %%mm0,%%mm3 \n\t"/* x4*w06+x0*w04 x4*w02+x0*w00*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
241 "movq %%mm2,%%mm6 \n\t"/* 6 ; x7 x3 x6 x2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
242 "movq 32+" #A3 ",%%mm1 \n\t"/* 1 ; w22 w20 w18 w16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
243 "punpckldq %%mm2,%%mm2 \n\t"/* x6 x2 x6 x2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
244 "pmaddwd %%mm2,%%mm4 \n\t"/* x6*w07+x2*w05 x6*w03+x2*w01*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
245 "punpckhdq %%mm5,%%mm5 \n\t"/* x5 x1 x5 x1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
246 "pmaddwd 16+" #A3 ",%%mm0 \n\t"/* x4*w14+x0*w12 x4*w10+x0*w08*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
247 "punpckhdq %%mm6,%%mm6 \n\t"/* x7 x3 x7 x3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
248 "movq 40+" #A3 ",%%mm7 \n\t"/* 7 ; w23 w21 w19 w17*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
249 "pmaddwd %%mm5,%%mm1 \n\t"/* x5*w22+x1*w20 x5*w18+x1*w16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
250 "paddd " #A4 ",%%mm3 \n\t"/* +%4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
251 "pmaddwd %%mm6,%%mm7 \n\t"/* x7*w23+x3*w21 x7*w19+x3*w17*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
252 "pmaddwd 24+" #A3 ",%%mm2 \n\t"/* x6*w15+x2*w13 x6*w11+x2*w09*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
253 "paddd %%mm4,%%mm3 \n\t"/* 4 ; a1=sum(even1) a0=sum(even0)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
254 "pmaddwd 48+" #A3 ",%%mm5 \n\t"/* x5*w30+x1*w28 x5*w26+x1*w24*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
255 "movq %%mm3,%%mm4 \n\t"/* 4 ; a1 a0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
256 "pmaddwd 56+" #A3 ",%%mm6 \n\t"/* x7*w31+x3*w29 x7*w27+x3*w25*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
257 "paddd %%mm7,%%mm1 \n\t"/* 7 ; b1=sum(odd1) b0=sum(odd0)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
258 "paddd " #A4 ",%%mm0 \n\t"/* +%4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
259 "psubd %%mm1,%%mm3 \n\t"/* a1-b1 a0-b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
260 "psrad $11,%%mm3 \n\t"/* y6=a1-b1 y7=a0-b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
261 "paddd %%mm4,%%mm1 \n\t"/* 4 ; a1+b1 a0+b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
262 "paddd %%mm2,%%mm0 \n\t"/* 2 ; a3=sum(even3) a2=sum(even2)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
263 "psrad $11,%%mm1 \n\t"/* y1=a1+b1 y0=a0+b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
264 "paddd %%mm6,%%mm5 \n\t"/* 6 ; b3=sum(odd3) b2=sum(odd2)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
265 "movq %%mm0,%%mm4 \n\t"/* 4 ; a3 a2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
266 "paddd %%mm5,%%mm0 \n\t"/* a3+b3 a2+b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
267 "psubd %%mm5,%%mm4 \n\t"/* 5 ; a3-b3 a2-b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
268 "psrad $11,%%mm0 \n\t"/* y3=a3+b3 y2=a2+b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
269 "psrad $11,%%mm4 \n\t"/* y4=a3-b3 y5=a2-b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
270 "packssdw %%mm0,%%mm1 \n\t"/* 0 ; y3 y2 y1 y0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
271 "packssdw %%mm3,%%mm4 \n\t"/* 3 ; y6 y7 y4 y5*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
272 "movq %%mm4,%%mm7 \n\t"/* 7 ; y6 y7 y4 y5*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
273 "psrld $16,%%mm4 \n\t"/* 0 y6 0 y4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
274 "pslld $16,%%mm7 \n\t"/* y7 0 y5 0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
275 "movq %%mm1," #A2 " \n\t"/* 1 ; save y3 y2 y1 y0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
276 "por %%mm4,%%mm7 \n\t"/* 4 ; y7 y6 y5 y4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
277 "movq %%mm7,8 +" #A2 "\n\t"/* 7 ; save y7 y6 y5 y4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
278
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
279
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
280 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
281 // DCT_8_INV_ROW_XMM( INP, OUT, TABLE, ROUNDER
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
282 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
283
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
284 #define DCT_8_INV_ROW_XMM(A1,A2,A3,A4)\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
285 "movq " #A1 ",%%mm0 \n\t"/* 0 ; x3 x2 x1 x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
286 "movq 8+" #A1 ",%%mm1 \n\t"/* 1 ; x7 x6 x5 x4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
287 "movq %%mm0,%%mm2 \n\t"/* 2 ; x3 x2 x1 x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
288 "movq " #A3 ",%%mm3 \n\t"/* 3 ; w05 w04 w01 w00*/\
3563
a3db61f32f5a Support for Mac OS X Intel, part 3: binary integer constants:
gpoirier
parents: 3036
diff changeset
289 "pshufw $0x88,%%mm0,%%mm0 \n\t"/* x2 x0 x2 x0*/\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
290 "movq 8+" #A3 ",%%mm4 \n\t"/* 4 ; w07 w06 w03 w02*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
291 "movq %%mm1,%%mm5 \n\t"/* 5 ; x7 x6 x5 x4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
292 "pmaddwd %%mm0,%%mm3 \n\t"/* x2*w05+x0*w04 x2*w01+x0*w00*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
293 "movq 32+" #A3 ",%%mm6 \n\t"/* 6 ; w21 w20 w17 w16*/\
3563
a3db61f32f5a Support for Mac OS X Intel, part 3: binary integer constants:
gpoirier
parents: 3036
diff changeset
294 "pshufw $0x88,%%mm1,%%mm1 \n\t"/* x6 x4 x6 x4*/\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
295 "pmaddwd %%mm1,%%mm4 \n\t"/* x6*w07+x4*w06 x6*w03+x4*w02*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
296 "movq 40+" #A3 ",%%mm7 \n\t"/* 7 ; w23 w22 w19 w18*/\
3563
a3db61f32f5a Support for Mac OS X Intel, part 3: binary integer constants:
gpoirier
parents: 3036
diff changeset
297 "pshufw $0xdd,%%mm2,%%mm2 \n\t"/* x3 x1 x3 x1*/\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
298 "pmaddwd %%mm2,%%mm6 \n\t"/* x3*w21+x1*w20 x3*w17+x1*w16*/\
3563
a3db61f32f5a Support for Mac OS X Intel, part 3: binary integer constants:
gpoirier
parents: 3036
diff changeset
299 "pshufw $0xdd,%%mm5,%%mm5 \n\t"/* x7 x5 x7 x5*/\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
300 "pmaddwd %%mm5,%%mm7 \n\t"/* x7*w23+x5*w22 x7*w19+x5*w18*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
301 "paddd " #A4 ",%%mm3 \n\t"/* +%4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
302 "pmaddwd 16+" #A3 ",%%mm0 \n\t"/* x2*w13+x0*w12 x2*w09+x0*w08*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
303 "paddd %%mm4,%%mm3 \n\t"/* 4 ; a1=sum(even1) a0=sum(even0)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
304 "pmaddwd 24+" #A3 ",%%mm1 \n\t"/* x6*w15+x4*w14 x6*w11+x4*w10*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
305 "movq %%mm3,%%mm4 \n\t"/* 4 ; a1 a0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
306 "pmaddwd 48+" #A3 ",%%mm2 \n\t"/* x3*w29+x1*w28 x3*w25+x1*w24*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
307 "paddd %%mm7,%%mm6 \n\t"/* 7 ; b1=sum(odd1) b0=sum(odd0)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
308 "pmaddwd 56+" #A3 ",%%mm5 \n\t"/* x7*w31+x5*w30 x7*w27+x5*w26*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
309 "paddd %%mm6,%%mm3 \n\t"/* a1+b1 a0+b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
310 "paddd " #A4 ",%%mm0 \n\t"/* +%4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
311 "psrad $11,%%mm3 \n\t"/* y1=a1+b1 y0=a0+b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
312 "paddd %%mm1,%%mm0 \n\t"/* 1 ; a3=sum(even3) a2=sum(even2)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
313 "psubd %%mm6,%%mm4 \n\t"/* 6 ; a1-b1 a0-b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
314 "movq %%mm0,%%mm7 \n\t"/* 7 ; a3 a2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
315 "paddd %%mm5,%%mm2 \n\t"/* 5 ; b3=sum(odd3) b2=sum(odd2)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
316 "paddd %%mm2,%%mm0 \n\t"/* a3+b3 a2+b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
317 "psrad $11,%%mm4 \n\t"/* y6=a1-b1 y7=a0-b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
318 "psubd %%mm2,%%mm7 \n\t"/* 2 ; a3-b3 a2-b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
319 "psrad $11,%%mm0 \n\t"/* y3=a3+b3 y2=a2+b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
320 "psrad $11,%%mm7 \n\t"/* y4=a3-b3 y5=a2-b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
321 "packssdw %%mm0,%%mm3 \n\t"/* 0 ; y3 y2 y1 y0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
322 "packssdw %%mm4,%%mm7 \n\t"/* 4 ; y6 y7 y4 y5*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
323 "movq %%mm3, " #A2 " \n\t"/* 3 ; save y3 y2 y1 y0*/\
3563
a3db61f32f5a Support for Mac OS X Intel, part 3: binary integer constants:
gpoirier
parents: 3036
diff changeset
324 "pshufw $0xb1,%%mm7,%%mm7 \n\t"/* y7 y6 y5 y4*/\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
325 "movq %%mm7,8 +" #A2 "\n\t"/* 7 ; save y7 y6 y5 y4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
326
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
327
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
328 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
329 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
330 // The first stage DCT 8x8 - forward DCTs of columns
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
331 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
332 // The %2puts are multiplied
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
333 // for rows 0,4 - on cos_4_16,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
334 // for rows 1,7 - on cos_1_16,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
335 // for rows 2,6 - on cos_2_16,
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
336 // for rows 3,5 - on cos_3_16
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
337 // and are shifted to the left for rise of accuracy
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
338 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
339 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
340 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
341 // The 8-point scaled forward DCT algorithm (26a8m)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
342 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
343 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
344 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
345 // #define DCT_8_FRW_COL(x, y)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
346 //{
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
347 // short t0, t1, t2, t3, t4, t5, t6, t7;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
348 // short tp03, tm03, tp12, tm12, tp65, tm65;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
349 // short tp465, tm465, tp765, tm765;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
350 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
351 // t0 = LEFT_SHIFT ( x[0] + x[7] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
352 // t1 = LEFT_SHIFT ( x[1] + x[6] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
353 // t2 = LEFT_SHIFT ( x[2] + x[5] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
354 // t3 = LEFT_SHIFT ( x[3] + x[4] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
355 // t4 = LEFT_SHIFT ( x[3] - x[4] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
356 // t5 = LEFT_SHIFT ( x[2] - x[5] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
357 // t6 = LEFT_SHIFT ( x[1] - x[6] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
358 // t7 = LEFT_SHIFT ( x[0] - x[7] );
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
359 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
360 // tp03 = t0 + t3;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
361 // tm03 = t0 - t3;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
362 // tp12 = t1 + t2;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
363 // tm12 = t1 - t2;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
364 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
365 // y[0] = tp03 + tp12;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
366 // y[4] = tp03 - tp12;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
367 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
368 // y[2] = tm03 + tm12 * tg_2_16;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
369 // y[6] = tm03 * tg_2_16 - tm12;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
370 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
371 // tp65 =(t6 +t5 )*cos_4_16;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
372 // tm65 =(t6 -t5 )*cos_4_16;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
373 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
374 // tp765 = t7 + tp65;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
375 // tm765 = t7 - tp65;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
376 // tp465 = t4 + tm65;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
377 // tm465 = t4 - tm65;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
378 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
379 // y[1] = tp765 + tp465 * tg_1_16;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
380 // y[7] = tp765 * tg_1_16 - tp465;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
381 // y[5] = tm765 * tg_3_16 + tm465;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
382 // y[3] = tm765 - tm465 * tg_3_16;
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
383 //}
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
384 //
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
385 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
386
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
387 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
388 // DCT_8_INV_COL_4 INP,OUT
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
389 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
390
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
391 #define DCT_8_INV_COL(A1,A2)\
2870
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
392 "movq 2*8(%3),%%mm0\n\t"\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
393 "movq 16*3+" #A1 ",%%mm3\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
394 "movq %%mm0,%%mm1 \n\t"/* tg_3_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
395 "movq 16*5+" #A1 ",%%mm5\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
396 "pmulhw %%mm3,%%mm0 \n\t"/* x3*(tg_3_16-1)*/\
2870
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
397 "movq (%3),%%mm4\n\t"\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
398 "pmulhw %%mm5,%%mm1 \n\t"/* x5*(tg_3_16-1)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
399 "movq 16*7+" #A1 ",%%mm7\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
400 "movq %%mm4,%%mm2 \n\t"/* tg_1_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
401 "movq 16*1+" #A1 ",%%mm6\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
402 "pmulhw %%mm7,%%mm4 \n\t"/* x7*tg_1_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
403 "paddsw %%mm3,%%mm0 \n\t"/* x3*tg_3_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
404 "pmulhw %%mm6,%%mm2 \n\t"/* x1*tg_1_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
405 "paddsw %%mm3,%%mm1 \n\t"/* x3+x5*(tg_3_16-1)*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
406 "psubsw %%mm5,%%mm0 \n\t"/* x3*tg_3_16-x5 = tm35*/\
2870
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
407 "movq 3*8(%3),%%mm3\n\t"\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
408 "paddsw %%mm5,%%mm1 \n\t"/* x3+x5*tg_3_16 = tp35*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
409 "paddsw %%mm6,%%mm4 \n\t"/* x1+tg_1_16*x7 = tp17*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
410 "psubsw %%mm7,%%mm2 \n\t"/* x1*tg_1_16-x7 = tm17*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
411 "movq %%mm4,%%mm5 \n\t"/* tp17*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
412 "movq %%mm2,%%mm6 \n\t"/* tm17*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
413 "paddsw %%mm1,%%mm5 \n\t"/* tp17+tp35 = b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
414 "psubsw %%mm0,%%mm6 \n\t"/* tm17-tm35 = b3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
415 "psubsw %%mm1,%%mm4 \n\t"/* tp17-tp35 = t1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
416 "paddsw %%mm0,%%mm2 \n\t"/* tm17+tm35 = t2*/\
2870
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
417 "movq 1*8(%3),%%mm7\n\t"\
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
418 "movq %%mm4,%%mm1 \n\t"/* t1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
419 "movq %%mm5,3*16 +" #A2 "\n\t"/* save b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
420 "paddsw %%mm2,%%mm1 \n\t"/* t1+t2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
421 "movq %%mm6,5*16 +" #A2 "\n\t"/* save b3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
422 "psubsw %%mm2,%%mm4 \n\t"/* t1-t2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
423 "movq 2*16+" #A1 ",%%mm5\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
424 "movq %%mm7,%%mm0 \n\t"/* tg_2_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
425 "movq 6*16+" #A1 ",%%mm6\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
426 "pmulhw %%mm5,%%mm0 \n\t"/* x2*tg_2_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
427 "pmulhw %%mm6,%%mm7 \n\t"/* x6*tg_2_16*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
428 "pmulhw %%mm3,%%mm1 \n\t"/* ocos_4_16*(t1+t2) = b1/2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
429 "movq 0*16+" #A1 ",%%mm2\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
430 "pmulhw %%mm3,%%mm4 \n\t"/* ocos_4_16*(t1-t2) = b2/2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
431 "psubsw %%mm6,%%mm0 \n\t"/* t2*tg_2_16-x6 = tm26*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
432 "movq %%mm2,%%mm3 \n\t"/* x0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
433 "movq 4*16+" #A1 ",%%mm6\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
434 "paddsw %%mm5,%%mm7 \n\t"/* x2+x6*tg_2_16 = tp26*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
435 "paddsw %%mm6,%%mm2 \n\t"/* x0+x4 = tp04*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
436 "psubsw %%mm6,%%mm3 \n\t"/* x0-x4 = tm04*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
437 "movq %%mm2,%%mm5 \n\t"/* tp04*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
438 "movq %%mm3,%%mm6 \n\t"/* tm04*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
439 "psubsw %%mm7,%%mm2 \n\t"/* tp04-tp26 = a3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
440 "paddsw %%mm0,%%mm3 \n\t"/* tm04+tm26 = a1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
441 "paddsw %%mm1,%%mm1 \n\t"/* b1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
442 "paddsw %%mm4,%%mm4 \n\t"/* b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
443 "paddsw %%mm7,%%mm5 \n\t"/* tp04+tp26 = a0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
444 "psubsw %%mm0,%%mm6 \n\t"/* tm04-tm26 = a2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
445 "movq %%mm3,%%mm7 \n\t"/* a1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
446 "movq %%mm6,%%mm0 \n\t"/* a2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
447 "paddsw %%mm1,%%mm3 \n\t"/* a1+b1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
448 "paddsw %%mm4,%%mm6 \n\t"/* a2+b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
449 "psraw $6,%%mm3 \n\t"/* dst1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
450 "psubsw %%mm1,%%mm7 \n\t"/* a1-b1*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
451 "psraw $6,%%mm6 \n\t"/* dst2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
452 "psubsw %%mm4,%%mm0 \n\t"/* a2-b2*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
453 "movq 3*16+" #A2 ",%%mm1 \n\t"/* load b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
454 "psraw $6,%%mm7 \n\t"/* dst6*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
455 "movq %%mm5,%%mm4 \n\t"/* a0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
456 "psraw $6,%%mm0 \n\t"/* dst5*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
457 "movq %%mm3,1*16+" #A2 "\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
458 "paddsw %%mm1,%%mm5 \n\t"/* a0+b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
459 "movq %%mm6,2*16+" #A2 "\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
460 "psubsw %%mm1,%%mm4 \n\t"/* a0-b0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
461 "movq 5*16+" #A2 ",%%mm3 \n\t"/* load b3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
462 "psraw $6,%%mm5 \n\t"/* dst0*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
463 "movq %%mm2,%%mm6 \n\t"/* a3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
464 "psraw $6,%%mm4 \n\t"/* dst7*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
465 "movq %%mm0,5*16+" #A2 "\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
466 "paddsw %%mm3,%%mm2 \n\t"/* a3+b3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
467 "movq %%mm7,6*16+" #A2 "\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
468 "psubsw %%mm3,%%mm6 \n\t"/* a3-b3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
469 "movq %%mm5,0*16+" #A2 "\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
470 "psraw $6,%%mm2 \n\t"/* dst3*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
471 "movq %%mm4,7*16+" #A2 "\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
472 "psraw $6,%%mm6 \n\t"/* dst4*/\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
473 "movq %%mm2,3*16+" #A2 "\n\t"\
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
474 "movq %%mm6,4*16+" #A2 "\n\t"
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
475
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
476 //=============================================================================
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
477 // Code
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
478 //=============================================================================
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
479
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
480 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
481 // void idct_mmx(uint16_t block[64]);
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
482 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
483
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
484
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
485 void ff_idct_xvid_mmx(short *block){
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
486 asm volatile(
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
487 //# Process each row
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
488 DCT_8_INV_ROW_MMX(0*16(%0), 0*16(%0), 64*0(%2), 8*0(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
489 DCT_8_INV_ROW_MMX(1*16(%0), 1*16(%0), 64*1(%2), 8*1(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
490 DCT_8_INV_ROW_MMX(2*16(%0), 2*16(%0), 64*2(%2), 8*2(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
491 DCT_8_INV_ROW_MMX(3*16(%0), 3*16(%0), 64*3(%2), 8*3(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
492 DCT_8_INV_ROW_MMX(4*16(%0), 4*16(%0), 64*0(%2), 8*4(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
493 DCT_8_INV_ROW_MMX(5*16(%0), 5*16(%0), 64*3(%2), 8*5(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
494 DCT_8_INV_ROW_MMX(6*16(%0), 6*16(%0), 64*2(%2), 8*6(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
495 DCT_8_INV_ROW_MMX(7*16(%0), 7*16(%0), 64*1(%2), 8*7(%1))
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2870
diff changeset
496
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
497 //# Process the columns (4 at a time)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
498 DCT_8_INV_COL(0(%0), 0(%0))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
499 DCT_8_INV_COL(8(%0), 8(%0))
2870
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
500 :: "r"(block), "r"(rounder_0), "r"(tab_i_04_mmx), "r"(tg_1_16));
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
501 }
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
502
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
503 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
504 // void idct_xmm(uint16_t block[64]);
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
505 //-----------------------------------------------------------------------------
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
506
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
507
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
508 void ff_idct_xvid_mmx2(short *block){
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
509 asm volatile(
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
510 //# Process each row
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
511 DCT_8_INV_ROW_XMM(0*16(%0), 0*16(%0), 64*0(%2), 8*0(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
512 DCT_8_INV_ROW_XMM(1*16(%0), 1*16(%0), 64*1(%2), 8*1(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
513 DCT_8_INV_ROW_XMM(2*16(%0), 2*16(%0), 64*2(%2), 8*2(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
514 DCT_8_INV_ROW_XMM(3*16(%0), 3*16(%0), 64*3(%2), 8*3(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
515 DCT_8_INV_ROW_XMM(4*16(%0), 4*16(%0), 64*0(%2), 8*4(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
516 DCT_8_INV_ROW_XMM(5*16(%0), 5*16(%0), 64*3(%2), 8*5(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
517 DCT_8_INV_ROW_XMM(6*16(%0), 6*16(%0), 64*2(%2), 8*6(%1))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
518 DCT_8_INV_ROW_XMM(7*16(%0), 7*16(%0), 64*1(%2), 8*7(%1))
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2870
diff changeset
519
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
520 //# Process the columns (4 at a time)
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
521 DCT_8_INV_COL(0(%0), 0(%0))
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
522 DCT_8_INV_COL(8(%0), 8(%0))
2870
f7f8a1c2a077 remove unused table entries
michael
parents: 2868
diff changeset
523 :: "r"(block), "r"(rounder_0), "r"(tab_i_04_xmm), "r"(tg_1_16));
2868
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
524 }
666064f710d4 xvids mmx&mmx2 idcts
michael
parents:
diff changeset
525