Mercurial > libavcodec.hg
annotate i386/vp3dsp_mmx.c @ 8246:75ae6859ac73 libavcodec
Trivial, Cosmetics, mostly brace placement changes
author | reynaldo |
---|---|
date | Tue, 02 Dec 2008 18:25:17 +0000 |
parents | b661cf8690a1 |
children |
rev | line source |
---|---|
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
1 /* |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
2 * Copyright (C) 2004 the ffmpeg project |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
3 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
4 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
5 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
7 * modify it under the terms of the GNU Lesser General Public |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
8 * License as published by the Free Software Foundation; either |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
10 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
14 * Lesser General Public License for more details. |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
15 * |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
16 * You should have received a copy of the GNU Lesser General Public |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3036
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2967
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
19 */ |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
20 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
21 /** |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
22 * @file vp3dsp_mmx.c |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
23 * MMX-optimized functions cribbed from the original VP3 source code. |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
24 */ |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
25 |
8032 | 26 #include "libavutil/x86_cpu.h" |
6763 | 27 #include "libavcodec/dsputil.h" |
7742 | 28 #include "dsputil_mmx.h" |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
29 |
7759
892ca48b7d76
Use ff_vp3_idct_data in vp3dsp_mmx.c rather than duplicating it
conrad
parents:
7742
diff
changeset
|
30 extern const uint16_t ff_vp3_idct_data[]; |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
31 |
8032 | 32 // this is off by one or two for some cases when filter_limit is greater than 63 |
33 // in: p0 in mm6, p1 in mm4, p2 in mm2, p3 in mm1 | |
34 // out: p1 in mm4, p2 in mm3 | |
35 #define VP3_LOOP_FILTER(flim) \ | |
36 "movq %%mm6, %%mm7 \n\t" \ | |
37 "pand "MANGLE(ff_pb_7 )", %%mm6 \n\t" /* p0&7 */ \ | |
38 "psrlw $3, %%mm7 \n\t" \ | |
39 "pand "MANGLE(ff_pb_1F)", %%mm7 \n\t" /* p0>>3 */ \ | |
40 "movq %%mm2, %%mm3 \n\t" /* mm3 = p2 */ \ | |
41 "pxor %%mm4, %%mm2 \n\t" \ | |
42 "pand "MANGLE(ff_pb_1 )", %%mm2 \n\t" /* (p2^p1)&1 */ \ | |
43 "movq %%mm2, %%mm5 \n\t" \ | |
44 "paddb %%mm2, %%mm2 \n\t" \ | |
45 "paddb %%mm5, %%mm2 \n\t" /* 3*(p2^p1)&1 */ \ | |
46 "paddb %%mm6, %%mm2 \n\t" /* extra bits lost in shifts */ \ | |
47 "pcmpeqb %%mm0, %%mm0 \n\t" \ | |
48 "pxor %%mm0, %%mm1 \n\t" /* 255 - p3 */ \ | |
49 "pavgb %%mm2, %%mm1 \n\t" /* (256 - p3 + extrabits) >> 1 */ \ | |
50 "pxor %%mm4, %%mm0 \n\t" /* 255 - p1 */ \ | |
51 "pavgb %%mm3, %%mm0 \n\t" /* (256 + p2-p1) >> 1 */ \ | |
52 "paddb "MANGLE(ff_pb_3 )", %%mm1 \n\t" \ | |
53 "pavgb %%mm0, %%mm1 \n\t" /* 128+2+( p2-p1 - p3) >> 2 */ \ | |
54 "pavgb %%mm0, %%mm1 \n\t" /* 128+1+(3*(p2-p1) - p3) >> 3 */ \ | |
55 "paddusb %%mm1, %%mm7 \n\t" /* d+128+1 */ \ | |
56 "movq "MANGLE(ff_pb_81)", %%mm6 \n\t" \ | |
57 "psubusb %%mm7, %%mm6 \n\t" \ | |
58 "psubusb "MANGLE(ff_pb_81)", %%mm7 \n\t" \ | |
59 \ | |
60 "movq "#flim", %%mm5 \n\t" \ | |
61 "pminub %%mm5, %%mm6 \n\t" \ | |
62 "pminub %%mm5, %%mm7 \n\t" \ | |
63 "movq %%mm6, %%mm0 \n\t" \ | |
64 "movq %%mm7, %%mm1 \n\t" \ | |
65 "paddb %%mm6, %%mm6 \n\t" \ | |
66 "paddb %%mm7, %%mm7 \n\t" \ | |
67 "pminub %%mm5, %%mm6 \n\t" \ | |
68 "pminub %%mm5, %%mm7 \n\t" \ | |
69 "psubb %%mm0, %%mm6 \n\t" \ | |
70 "psubb %%mm1, %%mm7 \n\t" \ | |
71 "paddusb %%mm7, %%mm4 \n\t" \ | |
72 "psubusb %%mm6, %%mm4 \n\t" \ | |
73 "psubusb %%mm7, %%mm3 \n\t" \ | |
74 "paddusb %%mm6, %%mm3 \n\t" | |
75 | |
76 #define STORE_4_WORDS(dst0, dst1, dst2, dst3, mm) \ | |
77 "movd "#mm", %0 \n\t" \ | |
78 "movw %w0, -1"#dst0" \n\t" \ | |
79 "psrlq $32, "#mm" \n\t" \ | |
80 "shr $16, %0 \n\t" \ | |
81 "movw %w0, -1"#dst1" \n\t" \ | |
82 "movd "#mm", %0 \n\t" \ | |
83 "movw %w0, -1"#dst2" \n\t" \ | |
84 "shr $16, %0 \n\t" \ | |
85 "movw %w0, -1"#dst3" \n\t" | |
86 | |
8033 | 87 void ff_vp3_v_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values) |
8032 | 88 { |
89 __asm__ volatile( | |
90 "movq %0, %%mm6 \n\t" | |
91 "movq %1, %%mm4 \n\t" | |
92 "movq %2, %%mm2 \n\t" | |
93 "movq %3, %%mm1 \n\t" | |
94 | |
95 VP3_LOOP_FILTER(%4) | |
96 | |
97 "movq %%mm4, %1 \n\t" | |
98 "movq %%mm3, %2 \n\t" | |
99 | |
100 : "+m" (*(uint64_t*)(src - 2*stride)), | |
101 "+m" (*(uint64_t*)(src - 1*stride)), | |
102 "+m" (*(uint64_t*)(src + 0*stride)), | |
103 "+m" (*(uint64_t*)(src + 1*stride)) | |
104 : "m"(*(uint64_t*)(bounding_values+129)) | |
105 ); | |
106 } | |
107 | |
8033 | 108 void ff_vp3_h_loop_filter_mmx2(uint8_t *src, int stride, int *bounding_values) |
8032 | 109 { |
110 x86_reg tmp; | |
111 | |
112 __asm__ volatile( | |
113 "movd -2(%1), %%mm6 \n\t" | |
114 "movd -2(%1,%3), %%mm0 \n\t" | |
115 "movd -2(%1,%3,2), %%mm1 \n\t" | |
116 "movd -2(%1,%4), %%mm4 \n\t" | |
117 | |
118 TRANSPOSE8x4(%%mm6, %%mm0, %%mm1, %%mm4, -2(%2), -2(%2,%3), -2(%2,%3,2), -2(%2,%4), %%mm2) | |
119 VP3_LOOP_FILTER(%5) | |
120 SBUTTERFLY(%%mm4, %%mm3, %%mm5, bw, q) | |
121 | |
122 STORE_4_WORDS((%1), (%1,%3), (%1,%3,2), (%1,%4), %%mm4) | |
123 STORE_4_WORDS((%2), (%2,%3), (%2,%3,2), (%2,%4), %%mm5) | |
124 | |
125 : "=&r"(tmp) | |
126 : "r"(src), "r"(src+4*stride), "r"((x86_reg)stride), "r"((x86_reg)3*stride), | |
127 "m"(*(uint64_t*)(bounding_values+129)) | |
128 : "memory" | |
129 ); | |
130 } | |
131 | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
132 /* from original comments: The Macro does IDct on 4 1-D Dcts */ |
7877 | 133 #define BeginIDCT() \ |
134 "movq "I(3)", %%mm2 \n\t" \ | |
135 "movq "C(3)", %%mm6 \n\t" \ | |
136 "movq %%mm2, %%mm4 \n\t" \ | |
137 "movq "J(5)", %%mm7 \n\t" \ | |
138 "pmulhw %%mm6, %%mm4 \n\t" /* r4 = c3*i3 - i3 */ \ | |
139 "movq "C(5)", %%mm1 \n\t" \ | |
140 "pmulhw %%mm7, %%mm6 \n\t" /* r6 = c3*i5 - i5 */ \ | |
141 "movq %%mm1, %%mm5 \n\t" \ | |
142 "pmulhw %%mm2, %%mm1 \n\t" /* r1 = c5*i3 - i3 */ \ | |
143 "movq "I(1)", %%mm3 \n\t" \ | |
144 "pmulhw %%mm7, %%mm5 \n\t" /* r5 = c5*i5 - i5 */ \ | |
145 "movq "C(1)", %%mm0 \n\t" \ | |
146 "paddw %%mm2, %%mm4 \n\t" /* r4 = c3*i3 */ \ | |
147 "paddw %%mm7, %%mm6 \n\t" /* r6 = c3*i5 */ \ | |
148 "paddw %%mm1, %%mm2 \n\t" /* r2 = c5*i3 */ \ | |
149 "movq "J(7)", %%mm1 \n\t" \ | |
150 "paddw %%mm5, %%mm7 \n\t" /* r7 = c5*i5 */ \ | |
151 "movq %%mm0, %%mm5 \n\t" /* r5 = c1 */ \ | |
152 "pmulhw %%mm3, %%mm0 \n\t" /* r0 = c1*i1 - i1 */ \ | |
153 "paddsw %%mm7, %%mm4 \n\t" /* r4 = C = c3*i3 + c5*i5 */ \ | |
154 "pmulhw %%mm1, %%mm5 \n\t" /* r5 = c1*i7 - i7 */ \ | |
155 "movq "C(7)", %%mm7 \n\t" \ | |
156 "psubsw %%mm2, %%mm6 \n\t" /* r6 = D = c3*i5 - c5*i3 */ \ | |
157 "paddw %%mm3, %%mm0 \n\t" /* r0 = c1*i1 */ \ | |
158 "pmulhw %%mm7, %%mm3 \n\t" /* r3 = c7*i1 */ \ | |
159 "movq "I(2)", %%mm2 \n\t" \ | |
160 "pmulhw %%mm1, %%mm7 \n\t" /* r7 = c7*i7 */ \ | |
161 "paddw %%mm1, %%mm5 \n\t" /* r5 = c1*i7 */ \ | |
162 "movq %%mm2, %%mm1 \n\t" /* r1 = i2 */ \ | |
163 "pmulhw "C(2)", %%mm2 \n\t" /* r2 = c2*i2 - i2 */ \ | |
164 "psubsw %%mm5, %%mm3 \n\t" /* r3 = B = c7*i1 - c1*i7 */ \ | |
165 "movq "J(6)", %%mm5 \n\t" \ | |
166 "paddsw %%mm7, %%mm0 \n\t" /* r0 = A = c1*i1 + c7*i7 */ \ | |
167 "movq %%mm5, %%mm7 \n\t" /* r7 = i6 */ \ | |
168 "psubsw %%mm4, %%mm0 \n\t" /* r0 = A - C */ \ | |
169 "pmulhw "C(2)", %%mm5 \n\t" /* r5 = c2*i6 - i6 */ \ | |
170 "paddw %%mm1, %%mm2 \n\t" /* r2 = c2*i2 */ \ | |
171 "pmulhw "C(6)", %%mm1 \n\t" /* r1 = c6*i2 */ \ | |
172 "paddsw %%mm4, %%mm4 \n\t" /* r4 = C + C */ \ | |
173 "paddsw %%mm0, %%mm4 \n\t" /* r4 = C. = A + C */ \ | |
174 "psubsw %%mm6, %%mm3 \n\t" /* r3 = B - D */ \ | |
175 "paddw %%mm7, %%mm5 \n\t" /* r5 = c2*i6 */ \ | |
176 "paddsw %%mm6, %%mm6 \n\t" /* r6 = D + D */ \ | |
177 "pmulhw "C(6)", %%mm7 \n\t" /* r7 = c6*i6 */ \ | |
178 "paddsw %%mm3, %%mm6 \n\t" /* r6 = D. = B + D */ \ | |
179 "movq %%mm4, "I(1)"\n\t" /* save C. at I(1) */ \ | |
180 "psubsw %%mm5, %%mm1 \n\t" /* r1 = H = c6*i2 - c2*i6 */ \ | |
181 "movq "C(4)", %%mm4 \n\t" \ | |
182 "movq %%mm3, %%mm5 \n\t" /* r5 = B - D */ \ | |
183 "pmulhw %%mm4, %%mm3 \n\t" /* r3 = (c4 - 1) * (B - D) */ \ | |
184 "paddsw %%mm2, %%mm7 \n\t" /* r3 = (c4 - 1) * (B - D) */ \ | |
185 "movq %%mm6, "I(2)"\n\t" /* save D. at I(2) */ \ | |
186 "movq %%mm0, %%mm2 \n\t" /* r2 = A - C */ \ | |
187 "movq "I(0)", %%mm6 \n\t" \ | |
188 "pmulhw %%mm4, %%mm0 \n\t" /* r0 = (c4 - 1) * (A - C) */ \ | |
189 "paddw %%mm3, %%mm5 \n\t" /* r5 = B. = c4 * (B - D) */ \ | |
190 "movq "J(4)", %%mm3 \n\t" \ | |
191 "psubsw %%mm1, %%mm5 \n\t" /* r5 = B.. = B. - H */ \ | |
192 "paddw %%mm0, %%mm2 \n\t" /* r0 = A. = c4 * (A - C) */ \ | |
193 "psubsw %%mm3, %%mm6 \n\t" /* r6 = i0 - i4 */ \ | |
194 "movq %%mm6, %%mm0 \n\t" \ | |
195 "pmulhw %%mm4, %%mm6 \n\t" /* r6 = (c4 - 1) * (i0 - i4) */ \ | |
196 "paddsw %%mm3, %%mm3 \n\t" /* r3 = i4 + i4 */ \ | |
197 "paddsw %%mm1, %%mm1 \n\t" /* r1 = H + H */ \ | |
198 "paddsw %%mm0, %%mm3 \n\t" /* r3 = i0 + i4 */ \ | |
199 "paddsw %%mm5, %%mm1 \n\t" /* r1 = H. = B + H */ \ | |
200 "pmulhw %%mm3, %%mm4 \n\t" /* r4 = (c4 - 1) * (i0 + i4) */ \ | |
201 "paddsw %%mm0, %%mm6 \n\t" /* r6 = F = c4 * (i0 - i4) */ \ | |
202 "psubsw %%mm2, %%mm6 \n\t" /* r6 = F. = F - A. */ \ | |
203 "paddsw %%mm2, %%mm2 \n\t" /* r2 = A. + A. */ \ | |
204 "movq "I(1)", %%mm0 \n\t" /* r0 = C. */ \ | |
205 "paddsw %%mm6, %%mm2 \n\t" /* r2 = A.. = F + A. */ \ | |
206 "paddw %%mm3, %%mm4 \n\t" /* r4 = E = c4 * (i0 + i4) */ \ | |
207 "psubsw %%mm1, %%mm2 \n\t" /* r2 = R2 = A.. - H. */ | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
208 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
209 /* RowIDCT gets ready to transpose */ |
7877 | 210 #define RowIDCT() \ |
211 BeginIDCT() \ | |
212 "movq "I(2)", %%mm3 \n\t" /* r3 = D. */ \ | |
213 "psubsw %%mm7, %%mm4 \n\t" /* r4 = E. = E - G */ \ | |
214 "paddsw %%mm1, %%mm1 \n\t" /* r1 = H. + H. */ \ | |
215 "paddsw %%mm7, %%mm7 \n\t" /* r7 = G + G */ \ | |
216 "paddsw %%mm2, %%mm1 \n\t" /* r1 = R1 = A.. + H. */ \ | |
217 "paddsw %%mm4, %%mm7 \n\t" /* r1 = R1 = A.. + H. */ \ | |
218 "psubsw %%mm3, %%mm4 \n\t" /* r4 = R4 = E. - D. */ \ | |
219 "paddsw %%mm3, %%mm3 \n\t" \ | |
220 "psubsw %%mm5, %%mm6 \n\t" /* r6 = R6 = F. - B.. */ \ | |
221 "paddsw %%mm5, %%mm5 \n\t" \ | |
222 "paddsw %%mm4, %%mm3 \n\t" /* r3 = R3 = E. + D. */ \ | |
223 "paddsw %%mm6, %%mm5 \n\t" /* r5 = R5 = F. + B.. */ \ | |
224 "psubsw %%mm0, %%mm7 \n\t" /* r7 = R7 = G. - C. */ \ | |
225 "paddsw %%mm0, %%mm0 \n\t" \ | |
226 "movq %%mm1, "I(1)"\n\t" /* save R1 */ \ | |
227 "paddsw %%mm7, %%mm0 \n\t" /* r0 = R0 = G. + C. */ | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
228 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
229 /* Column IDCT normalizes and stores final results */ |
7877 | 230 #define ColumnIDCT() \ |
231 BeginIDCT() \ | |
232 "paddsw "OC_8", %%mm2 \n\t" /* adjust R2 (and R1) for shift */ \ | |
233 "paddsw %%mm1, %%mm1 \n\t" /* r1 = H. + H. */ \ | |
234 "paddsw %%mm2, %%mm1 \n\t" /* r1 = R1 = A.. + H. */ \ | |
235 "psraw $4, %%mm2 \n\t" /* r2 = NR2 */ \ | |
236 "psubsw %%mm7, %%mm4 \n\t" /* r4 = E. = E - G */ \ | |
237 "psraw $4, %%mm1 \n\t" /* r1 = NR1 */ \ | |
238 "movq "I(2)", %%mm3 \n\t" /* r3 = D. */ \ | |
239 "paddsw %%mm7, %%mm7 \n\t" /* r7 = G + G */ \ | |
240 "movq %%mm2, "I(2)"\n\t" /* store NR2 at I2 */ \ | |
241 "paddsw %%mm4, %%mm7 \n\t" /* r7 = G. = E + G */ \ | |
242 "movq %%mm1, "I(1)"\n\t" /* store NR1 at I1 */ \ | |
243 "psubsw %%mm3, %%mm4 \n\t" /* r4 = R4 = E. - D. */ \ | |
244 "paddsw "OC_8", %%mm4 \n\t" /* adjust R4 (and R3) for shift */ \ | |
245 "paddsw %%mm3, %%mm3 \n\t" /* r3 = D. + D. */ \ | |
246 "paddsw %%mm4, %%mm3 \n\t" /* r3 = R3 = E. + D. */ \ | |
247 "psraw $4, %%mm4 \n\t" /* r4 = NR4 */ \ | |
248 "psubsw %%mm5, %%mm6 \n\t" /* r6 = R6 = F. - B.. */ \ | |
249 "psraw $4, %%mm3 \n\t" /* r3 = NR3 */ \ | |
250 "paddsw "OC_8", %%mm6 \n\t" /* adjust R6 (and R5) for shift */ \ | |
251 "paddsw %%mm5, %%mm5 \n\t" /* r5 = B.. + B.. */ \ | |
252 "paddsw %%mm6, %%mm5 \n\t" /* r5 = R5 = F. + B.. */ \ | |
253 "psraw $4, %%mm6 \n\t" /* r6 = NR6 */ \ | |
254 "movq %%mm4, "J(4)"\n\t" /* store NR4 at J4 */ \ | |
255 "psraw $4, %%mm5 \n\t" /* r5 = NR5 */ \ | |
256 "movq %%mm3, "I(3)"\n\t" /* store NR3 at I3 */ \ | |
257 "psubsw %%mm0, %%mm7 \n\t" /* r7 = R7 = G. - C. */ \ | |
258 "paddsw "OC_8", %%mm7 \n\t" /* adjust R7 (and R0) for shift */ \ | |
259 "paddsw %%mm0, %%mm0 \n\t" /* r0 = C. + C. */ \ | |
260 "paddsw %%mm7, %%mm0 \n\t" /* r0 = R0 = G. + C. */ \ | |
261 "psraw $4, %%mm7 \n\t" /* r7 = NR7 */ \ | |
262 "movq %%mm6, "J(6)"\n\t" /* store NR6 at J6 */ \ | |
263 "psraw $4, %%mm0 \n\t" /* r0 = NR0 */ \ | |
264 "movq %%mm5, "J(5)"\n\t" /* store NR5 at J5 */ \ | |
265 "movq %%mm7, "J(7)"\n\t" /* store NR7 at J7 */ \ | |
266 "movq %%mm0, "I(0)"\n\t" /* store NR0 at I0 */ | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
267 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
268 /* Following macro does two 4x4 transposes in place. |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
269 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
270 At entry (we assume): |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
271 |
1969
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
272 r0 = a3 a2 a1 a0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
273 I(1) = b3 b2 b1 b0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
274 r2 = c3 c2 c1 c0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
275 r3 = d3 d2 d1 d0 |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
276 |
1969
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
277 r4 = e3 e2 e1 e0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
278 r5 = f3 f2 f1 f0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
279 r6 = g3 g2 g1 g0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
280 r7 = h3 h2 h1 h0 |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
281 |
1969
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
282 At exit, we have: |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
283 |
1969
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
284 I(0) = d0 c0 b0 a0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
285 I(1) = d1 c1 b1 a1 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
286 I(2) = d2 c2 b2 a2 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
287 I(3) = d3 c3 b3 a3 |
2967 | 288 |
1969
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
289 J(4) = h0 g0 f0 e0 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
290 J(5) = h1 g1 f1 e1 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
291 J(6) = h2 g2 f2 e2 |
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
292 J(7) = h3 g3 f3 e3 |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
293 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
294 I(0) I(1) I(2) I(3) is the transpose of r0 I(1) r2 r3. |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
295 J(4) J(5) J(6) J(7) is the transpose of r4 r5 r6 r7. |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
296 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
297 Since r1 is free at entry, we calculate the Js first. */ |
7877 | 298 #define Transpose() \ |
299 "movq %%mm4, %%mm1 \n\t" /* r1 = e3 e2 e1 e0 */ \ | |
300 "punpcklwd %%mm5, %%mm4 \n\t" /* r4 = f1 e1 f0 e0 */ \ | |
301 "movq %%mm0, "I(0)"\n\t" /* save a3 a2 a1 a0 */ \ | |
302 "punpckhwd %%mm5, %%mm1 \n\t" /* r1 = f3 e3 f2 e2 */ \ | |
303 "movq %%mm6, %%mm0 \n\t" /* r0 = g3 g2 g1 g0 */ \ | |
304 "punpcklwd %%mm7, %%mm6 \n\t" /* r6 = h1 g1 h0 g0 */ \ | |
305 "movq %%mm4, %%mm5 \n\t" /* r5 = f1 e1 f0 e0 */ \ | |
306 "punpckldq %%mm6, %%mm4 \n\t" /* r4 = h0 g0 f0 e0 = R4 */ \ | |
307 "punpckhdq %%mm6, %%mm5 \n\t" /* r5 = h1 g1 f1 e1 = R5 */ \ | |
308 "movq %%mm1, %%mm6 \n\t" /* r6 = f3 e3 f2 e2 */ \ | |
309 "movq %%mm4, "J(4)"\n\t" \ | |
310 "punpckhwd %%mm7, %%mm0 \n\t" /* r0 = h3 g3 h2 g2 */ \ | |
311 "movq %%mm5, "J(5)"\n\t" \ | |
312 "punpckhdq %%mm0, %%mm6 \n\t" /* r6 = h3 g3 f3 e3 = R7 */ \ | |
313 "movq "I(0)", %%mm4 \n\t" /* r4 = a3 a2 a1 a0 */ \ | |
314 "punpckldq %%mm0, %%mm1 \n\t" /* r1 = h2 g2 f2 e2 = R6 */ \ | |
315 "movq "I(1)", %%mm5 \n\t" /* r5 = b3 b2 b1 b0 */ \ | |
316 "movq %%mm4, %%mm0 \n\t" /* r0 = a3 a2 a1 a0 */ \ | |
317 "movq %%mm6, "J(7)"\n\t" \ | |
318 "punpcklwd %%mm5, %%mm0 \n\t" /* r0 = b1 a1 b0 a0 */ \ | |
319 "movq %%mm1, "J(6)"\n\t" \ | |
320 "punpckhwd %%mm5, %%mm4 \n\t" /* r4 = b3 a3 b2 a2 */ \ | |
321 "movq %%mm2, %%mm5 \n\t" /* r5 = c3 c2 c1 c0 */ \ | |
322 "punpcklwd %%mm3, %%mm2 \n\t" /* r2 = d1 c1 d0 c0 */ \ | |
323 "movq %%mm0, %%mm1 \n\t" /* r1 = b1 a1 b0 a0 */ \ | |
324 "punpckldq %%mm2, %%mm0 \n\t" /* r0 = d0 c0 b0 a0 = R0 */ \ | |
325 "punpckhdq %%mm2, %%mm1 \n\t" /* r1 = d1 c1 b1 a1 = R1 */ \ | |
326 "movq %%mm4, %%mm2 \n\t" /* r2 = b3 a3 b2 a2 */ \ | |
327 "movq %%mm0, "I(0)"\n\t" \ | |
328 "punpckhwd %%mm3, %%mm5 \n\t" /* r5 = d3 c3 d2 c2 */ \ | |
329 "movq %%mm1, "I(1)"\n\t" \ | |
330 "punpckhdq %%mm5, %%mm4 \n\t" /* r4 = d3 c3 b3 a3 = R3 */ \ | |
331 "punpckldq %%mm5, %%mm2 \n\t" /* r2 = d2 c2 b2 a2 = R2 */ \ | |
332 "movq %%mm4, "I(3)"\n\t" \ | |
333 "movq %%mm2, "I(2)"\n\t" | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
334 |
2696
9699d325049d
porting the mmx&sse2 (sse2 untested) vp3 idcts to the lavc idct API
michael
parents:
1977
diff
changeset
|
335 void ff_vp3_idct_mmx(int16_t *output_data) |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
336 { |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
337 /* eax = quantized input |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
338 * ebx = dequantizer matrix |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
339 * ecx = IDCT constants |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
340 * M(I) = ecx + MaskOffset(0) + I * 8 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
341 * C(I) = ecx + CosineOffset(32) + (I-1) * 8 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
342 * edx = output |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
343 * r0..r7 = mm0..mm7 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
344 */ |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
345 |
7877 | 346 #define C(x) AV_STRINGIFY(16*(x-1))"(%1)" |
347 #define OC_8 "%2" | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
348 |
1969
56cb752222cc
correct MMX-optimized variant of VP3 IDCT, with comments (thank you
melanson
parents:
1866
diff
changeset
|
349 /* at this point, function has completed dequantization + dezigzag + |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
350 * partial transposition; now do the idct itself */ |
7877 | 351 #define I(x) AV_STRINGIFY(16* x )"(%0)" |
352 #define J(x) AV_STRINGIFY(16*(x-4) + 8)"(%0)" | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
353 |
8031 | 354 __asm__ volatile ( |
7879 | 355 RowIDCT() |
356 Transpose() | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
357 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
358 #undef I |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
359 #undef J |
7877 | 360 #define I(x) AV_STRINGIFY(16* x + 64)"(%0)" |
361 #define J(x) AV_STRINGIFY(16*(x-4) + 72)"(%0)" | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
362 |
7879 | 363 RowIDCT() |
364 Transpose() | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
365 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
366 #undef I |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
367 #undef J |
7877 | 368 #define I(x) AV_STRINGIFY(16*x)"(%0)" |
369 #define J(x) AV_STRINGIFY(16*x)"(%0)" | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
370 |
7879 | 371 ColumnIDCT() |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
372 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
373 #undef I |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
374 #undef J |
7877 | 375 #define I(x) AV_STRINGIFY(16*x + 8)"(%0)" |
376 #define J(x) AV_STRINGIFY(16*x + 8)"(%0)" | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
377 |
7879 | 378 ColumnIDCT() |
7877 | 379 :: "r"(output_data), "r"(ff_vp3_idct_data), "m"(ff_pw_8) |
380 ); | |
1866
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
381 #undef I |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
382 #undef J |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
383 |
1755f959ab7f
seperated out the C-based VP3 DSP functions into a different file; also
melanson
parents:
diff
changeset
|
384 } |
5014
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
385 |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
386 void ff_vp3_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block) |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
387 { |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
388 ff_vp3_idct_mmx(block); |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
389 put_signed_pixels_clamped_mmx(block, dest, line_size); |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
390 } |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
391 |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
392 void ff_vp3_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block) |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
393 { |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
394 ff_vp3_idct_mmx(block); |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
395 add_pixels_clamped_mmx(block, dest, line_size); |
42b99a3aadde
better separation of vp3dsp functions from dsputil_mmx.c
aurel
parents:
5010
diff
changeset
|
396 } |