Mercurial > libavcodec.hg
annotate i386/mpegvideo_mmx.c @ 8241:585572f14e2c libavcodec
Remove unused RV40 spatial intra prediction function
author | kostya |
---|---|
date | Tue, 02 Dec 2008 17:34:26 +0000 |
parents | 0d108ec85620 |
children |
rev | line source |
---|---|
8 | 1 /* |
2 * The simplest mpeg encoder (well, it was the simplest!) | |
429 | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
8 | 4 * |
5214 | 5 * Optimized for ia32 CPUs by Nick Kurshev <nickols_k@mail.ru> |
6 * h263, mpeg1, mpeg2 dequantizer & draw_edges by Michael Niedermayer <michaelni@gmx.at> | |
7 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3576
diff
changeset
|
8 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3576
diff
changeset
|
9 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3576
diff
changeset
|
10 * FFmpeg is free software; you can redistribute it and/or |
429 | 11 * modify it under the terms of the GNU Lesser General Public |
12 * 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:
3576
diff
changeset
|
13 * version 2.1 of the License, or (at your option) any later version. |
8 | 14 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3576
diff
changeset
|
15 * FFmpeg is distributed in the hope that it will be useful, |
8 | 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
429 | 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
18 * Lesser General Public License for more details. | |
8 | 19 * |
429 | 20 * 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:
3576
diff
changeset
|
21 * License along with FFmpeg; if not, write to the Free Software |
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
8 | 23 */ |
24 | |
6763 | 25 #include "libavutil/x86_cpu.h" |
26 #include "libavcodec/avcodec.h" | |
27 #include "libavcodec/dsputil.h" | |
28 #include "libavcodec/mpegvideo.h" | |
5946
55251379b5b1
make ff_p* vars extern so that they can be used in various *_mmx.c files
aurel
parents:
5214
diff
changeset
|
29 #include "dsputil_mmx.h" |
14
8ceb13af9cb6
renamed - use of s->dct_unquantize function pointer - SHOULD add faster h263 mmx specific unquantization stuff
glantau
parents:
8
diff
changeset
|
30 |
4197 | 31 extern uint16_t inv_zigzag_direct16[64]; |
200 | 32 |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
33 |
1689 | 34 static void dct_unquantize_h263_intra_mmx(MpegEncContext *s, |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
35 DCTELEM *block, int n, int qscale) |
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
36 { |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
6437
diff
changeset
|
37 x86_reg level, qmul, qadd, nCoeffs; |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
38 |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
39 qmul = qscale << 1; |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
40 |
1661 | 41 assert(s->block_last_index[n]>=0 || s->h263_aic); |
2967 | 42 |
1689 | 43 if (!s->h263_aic) { |
44 if (n < 4) | |
45 level = block[0] * s->y_dc_scale; | |
46 else | |
47 level = block[0] * s->c_dc_scale; | |
48 qadd = (qscale - 1) | 1; | |
49 }else{ | |
50 qadd = 0; | |
51 level= block[0]; | |
52 } | |
53 if(s->ac_pred) | |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
54 nCoeffs=63; |
1689 | 55 else |
56 nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ]; | |
200 | 57 //printf("%d %d ", qmul, qadd); |
8031 | 58 __asm__ volatile( |
2979 | 59 "movd %1, %%mm6 \n\t" //qmul |
60 "packssdw %%mm6, %%mm6 \n\t" | |
61 "packssdw %%mm6, %%mm6 \n\t" | |
62 "movd %2, %%mm5 \n\t" //qadd | |
63 "pxor %%mm7, %%mm7 \n\t" | |
64 "packssdw %%mm5, %%mm5 \n\t" | |
65 "packssdw %%mm5, %%mm5 \n\t" | |
66 "psubw %%mm5, %%mm7 \n\t" | |
67 "pxor %%mm4, %%mm4 \n\t" | |
3576
f7125bf10892
Support for MacIntel, last part: balign directives
gpoirier
parents:
3398
diff
changeset
|
68 ASMALIGN(4) |
2979 | 69 "1: \n\t" |
70 "movq (%0, %3), %%mm0 \n\t" | |
71 "movq 8(%0, %3), %%mm1 \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
72 |
2979 | 73 "pmullw %%mm6, %%mm0 \n\t" |
74 "pmullw %%mm6, %%mm1 \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
75 |
2979 | 76 "movq (%0, %3), %%mm2 \n\t" |
77 "movq 8(%0, %3), %%mm3 \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
78 |
2979 | 79 "pcmpgtw %%mm4, %%mm2 \n\t" // block[i] < 0 ? -1 : 0 |
80 "pcmpgtw %%mm4, %%mm3 \n\t" // block[i] < 0 ? -1 : 0 | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
81 |
2979 | 82 "pxor %%mm2, %%mm0 \n\t" |
83 "pxor %%mm3, %%mm1 \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
84 |
2979 | 85 "paddw %%mm7, %%mm0 \n\t" |
86 "paddw %%mm7, %%mm1 \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
87 |
2979 | 88 "pxor %%mm0, %%mm2 \n\t" |
89 "pxor %%mm1, %%mm3 \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
90 |
2979 | 91 "pcmpeqw %%mm7, %%mm0 \n\t" // block[i] == 0 ? -1 : 0 |
92 "pcmpeqw %%mm7, %%mm1 \n\t" // block[i] == 0 ? -1 : 0 | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
93 |
2979 | 94 "pandn %%mm2, %%mm0 \n\t" |
95 "pandn %%mm3, %%mm1 \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
96 |
2979 | 97 "movq %%mm0, (%0, %3) \n\t" |
98 "movq %%mm1, 8(%0, %3) \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
99 |
2979 | 100 "add $16, %3 \n\t" |
101 "jng 1b \n\t" | |
7683 | 102 ::"r" (block+nCoeffs), "rm"(qmul), "rm" (qadd), "r" (2*(-nCoeffs)) |
2979 | 103 : "memory" |
104 ); | |
1689 | 105 block[0]= level; |
106 } | |
107 | |
108 | |
109 static void dct_unquantize_h263_inter_mmx(MpegEncContext *s, | |
110 DCTELEM *block, int n, int qscale) | |
111 { | |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
6437
diff
changeset
|
112 x86_reg qmul, qadd, nCoeffs; |
1689 | 113 |
114 qmul = qscale << 1; | |
115 qadd = (qscale - 1) | 1; | |
116 | |
117 assert(s->block_last_index[n]>=0 || s->h263_aic); | |
2967 | 118 |
1689 | 119 nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ]; |
120 //printf("%d %d ", qmul, qadd); | |
8031 | 121 __asm__ volatile( |
2979 | 122 "movd %1, %%mm6 \n\t" //qmul |
123 "packssdw %%mm6, %%mm6 \n\t" | |
124 "packssdw %%mm6, %%mm6 \n\t" | |
125 "movd %2, %%mm5 \n\t" //qadd | |
126 "pxor %%mm7, %%mm7 \n\t" | |
127 "packssdw %%mm5, %%mm5 \n\t" | |
128 "packssdw %%mm5, %%mm5 \n\t" | |
129 "psubw %%mm5, %%mm7 \n\t" | |
130 "pxor %%mm4, %%mm4 \n\t" | |
3576
f7125bf10892
Support for MacIntel, last part: balign directives
gpoirier
parents:
3398
diff
changeset
|
131 ASMALIGN(4) |
2979 | 132 "1: \n\t" |
133 "movq (%0, %3), %%mm0 \n\t" | |
134 "movq 8(%0, %3), %%mm1 \n\t" | |
1689 | 135 |
2979 | 136 "pmullw %%mm6, %%mm0 \n\t" |
137 "pmullw %%mm6, %%mm1 \n\t" | |
1689 | 138 |
2979 | 139 "movq (%0, %3), %%mm2 \n\t" |
140 "movq 8(%0, %3), %%mm3 \n\t" | |
1689 | 141 |
2979 | 142 "pcmpgtw %%mm4, %%mm2 \n\t" // block[i] < 0 ? -1 : 0 |
143 "pcmpgtw %%mm4, %%mm3 \n\t" // block[i] < 0 ? -1 : 0 | |
1689 | 144 |
2979 | 145 "pxor %%mm2, %%mm0 \n\t" |
146 "pxor %%mm3, %%mm1 \n\t" | |
1689 | 147 |
2979 | 148 "paddw %%mm7, %%mm0 \n\t" |
149 "paddw %%mm7, %%mm1 \n\t" | |
1689 | 150 |
2979 | 151 "pxor %%mm0, %%mm2 \n\t" |
152 "pxor %%mm1, %%mm3 \n\t" | |
1689 | 153 |
2979 | 154 "pcmpeqw %%mm7, %%mm0 \n\t" // block[i] == 0 ? -1 : 0 |
155 "pcmpeqw %%mm7, %%mm1 \n\t" // block[i] == 0 ? -1 : 0 | |
1689 | 156 |
2979 | 157 "pandn %%mm2, %%mm0 \n\t" |
158 "pandn %%mm3, %%mm1 \n\t" | |
1689 | 159 |
2979 | 160 "movq %%mm0, (%0, %3) \n\t" |
161 "movq %%mm1, 8(%0, %3) \n\t" | |
1689 | 162 |
2979 | 163 "add $16, %3 \n\t" |
164 "jng 1b \n\t" | |
7683 | 165 ::"r" (block+nCoeffs), "rm"(qmul), "rm" (qadd), "r" (2*(-nCoeffs)) |
2979 | 166 : "memory" |
167 ); | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
168 } |
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
169 |
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
170 |
8 | 171 /* |
172 NK: | |
173 Note: looking at PARANOID: | |
174 "enable all paranoid tests for rounding, overflows, etc..." | |
175 | |
176 #ifdef PARANOID | |
177 if (level < -2048 || level > 2047) | |
178 fprintf(stderr, "unquant error %d %d\n", i, level); | |
179 #endif | |
5963 | 180 We can suppose that result of two multiplications can't be greater than 0xFFFF |
8 | 181 i.e. is 16-bit, so we use here only PMULLW instruction and can avoid |
182 a complex multiplication. | |
183 ===================================================== | |
184 Full formula for multiplication of 2 integer numbers | |
185 which are represent as high:low words: | |
186 input: value1 = high1:low1 | |
187 value2 = high2:low2 | |
188 output: value3 = value1*value2 | |
189 value3=high3:low3 (on overflow: modulus 2^32 wrap-around) | |
190 this mean that for 0x123456 * 0x123456 correct result is 0x766cb0ce4 | |
191 but this algorithm will compute only 0x66cb0ce4 | |
192 this limited by 16-bit size of operands | |
193 --------------------------------- | |
194 tlow1 = high1*low2 | |
195 tlow2 = high2*low1 | |
196 tlow1 = tlow1 + tlow2 | |
197 high3:low3 = low1*low2 | |
198 high3 += tlow1 | |
199 */ | |
1689 | 200 static void dct_unquantize_mpeg1_intra_mmx(MpegEncContext *s, |
14
8ceb13af9cb6
renamed - use of s->dct_unquantize function pointer - SHOULD add faster h263 mmx specific unquantization stuff
glantau
parents:
8
diff
changeset
|
201 DCTELEM *block, int n, int qscale) |
8 | 202 { |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
6437
diff
changeset
|
203 x86_reg nCoeffs; |
1064 | 204 const uint16_t *quant_matrix; |
1689 | 205 int block0; |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
206 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
207 assert(s->block_last_index[n]>=0); |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
208 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
209 nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ]+1; |
200 | 210 |
2967 | 211 if (n < 4) |
1689 | 212 block0 = block[0] * s->y_dc_scale; |
213 else | |
214 block0 = block[0] * s->c_dc_scale; | |
215 /* XXX: only mpeg1 */ | |
216 quant_matrix = s->intra_matrix; | |
8031 | 217 __asm__ volatile( |
2979 | 218 "pcmpeqw %%mm7, %%mm7 \n\t" |
219 "psrlw $15, %%mm7 \n\t" | |
220 "movd %2, %%mm6 \n\t" | |
221 "packssdw %%mm6, %%mm6 \n\t" | |
222 "packssdw %%mm6, %%mm6 \n\t" | |
223 "mov %3, %%"REG_a" \n\t" | |
3576
f7125bf10892
Support for MacIntel, last part: balign directives
gpoirier
parents:
3398
diff
changeset
|
224 ASMALIGN(4) |
2979 | 225 "1: \n\t" |
226 "movq (%0, %%"REG_a"), %%mm0 \n\t" | |
227 "movq 8(%0, %%"REG_a"), %%mm1 \n\t" | |
228 "movq (%1, %%"REG_a"), %%mm4 \n\t" | |
229 "movq 8(%1, %%"REG_a"), %%mm5 \n\t" | |
230 "pmullw %%mm6, %%mm4 \n\t" // q=qscale*quant_matrix[i] | |
231 "pmullw %%mm6, %%mm5 \n\t" // q=qscale*quant_matrix[i] | |
232 "pxor %%mm2, %%mm2 \n\t" | |
233 "pxor %%mm3, %%mm3 \n\t" | |
234 "pcmpgtw %%mm0, %%mm2 \n\t" // block[i] < 0 ? -1 : 0 | |
235 "pcmpgtw %%mm1, %%mm3 \n\t" // block[i] < 0 ? -1 : 0 | |
236 "pxor %%mm2, %%mm0 \n\t" | |
237 "pxor %%mm3, %%mm1 \n\t" | |
238 "psubw %%mm2, %%mm0 \n\t" // abs(block[i]) | |
239 "psubw %%mm3, %%mm1 \n\t" // abs(block[i]) | |
240 "pmullw %%mm4, %%mm0 \n\t" // abs(block[i])*q | |
241 "pmullw %%mm5, %%mm1 \n\t" // abs(block[i])*q | |
242 "pxor %%mm4, %%mm4 \n\t" | |
243 "pxor %%mm5, %%mm5 \n\t" // FIXME slow | |
244 "pcmpeqw (%0, %%"REG_a"), %%mm4 \n\t" // block[i] == 0 ? -1 : 0 | |
245 "pcmpeqw 8(%0, %%"REG_a"), %%mm5\n\t" // block[i] == 0 ? -1 : 0 | |
246 "psraw $3, %%mm0 \n\t" | |
247 "psraw $3, %%mm1 \n\t" | |
248 "psubw %%mm7, %%mm0 \n\t" | |
249 "psubw %%mm7, %%mm1 \n\t" | |
250 "por %%mm7, %%mm0 \n\t" | |
251 "por %%mm7, %%mm1 \n\t" | |
252 "pxor %%mm2, %%mm0 \n\t" | |
253 "pxor %%mm3, %%mm1 \n\t" | |
254 "psubw %%mm2, %%mm0 \n\t" | |
255 "psubw %%mm3, %%mm1 \n\t" | |
256 "pandn %%mm0, %%mm4 \n\t" | |
257 "pandn %%mm1, %%mm5 \n\t" | |
258 "movq %%mm4, (%0, %%"REG_a") \n\t" | |
259 "movq %%mm5, 8(%0, %%"REG_a") \n\t" | |
325 | 260 |
2979 | 261 "add $16, %%"REG_a" \n\t" |
262 "js 1b \n\t" | |
7683 | 263 ::"r" (block+nCoeffs), "r"(quant_matrix+nCoeffs), "rm" (qscale), "g" (-2*nCoeffs) |
2979 | 264 : "%"REG_a, "memory" |
265 ); | |
1689 | 266 block[0]= block0; |
267 } | |
325 | 268 |
1689 | 269 static void dct_unquantize_mpeg1_inter_mmx(MpegEncContext *s, |
270 DCTELEM *block, int n, int qscale) | |
271 { | |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
6437
diff
changeset
|
272 x86_reg nCoeffs; |
1689 | 273 const uint16_t *quant_matrix; |
274 | |
275 assert(s->block_last_index[n]>=0); | |
276 | |
277 nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ]+1; | |
278 | |
344 | 279 quant_matrix = s->inter_matrix; |
8031 | 280 __asm__ volatile( |
2979 | 281 "pcmpeqw %%mm7, %%mm7 \n\t" |
282 "psrlw $15, %%mm7 \n\t" | |
283 "movd %2, %%mm6 \n\t" | |
284 "packssdw %%mm6, %%mm6 \n\t" | |
285 "packssdw %%mm6, %%mm6 \n\t" | |
286 "mov %3, %%"REG_a" \n\t" | |
3576
f7125bf10892
Support for MacIntel, last part: balign directives
gpoirier
parents:
3398
diff
changeset
|
287 ASMALIGN(4) |
2979 | 288 "1: \n\t" |
289 "movq (%0, %%"REG_a"), %%mm0 \n\t" | |
290 "movq 8(%0, %%"REG_a"), %%mm1 \n\t" | |
291 "movq (%1, %%"REG_a"), %%mm4 \n\t" | |
292 "movq 8(%1, %%"REG_a"), %%mm5 \n\t" | |
293 "pmullw %%mm6, %%mm4 \n\t" // q=qscale*quant_matrix[i] | |
294 "pmullw %%mm6, %%mm5 \n\t" // q=qscale*quant_matrix[i] | |
295 "pxor %%mm2, %%mm2 \n\t" | |
296 "pxor %%mm3, %%mm3 \n\t" | |
297 "pcmpgtw %%mm0, %%mm2 \n\t" // block[i] < 0 ? -1 : 0 | |
298 "pcmpgtw %%mm1, %%mm3 \n\t" // block[i] < 0 ? -1 : 0 | |
299 "pxor %%mm2, %%mm0 \n\t" | |
300 "pxor %%mm3, %%mm1 \n\t" | |
301 "psubw %%mm2, %%mm0 \n\t" // abs(block[i]) | |
302 "psubw %%mm3, %%mm1 \n\t" // abs(block[i]) | |
303 "paddw %%mm0, %%mm0 \n\t" // abs(block[i])*2 | |
304 "paddw %%mm1, %%mm1 \n\t" // abs(block[i])*2 | |
305 "paddw %%mm7, %%mm0 \n\t" // abs(block[i])*2 + 1 | |
306 "paddw %%mm7, %%mm1 \n\t" // abs(block[i])*2 + 1 | |
307 "pmullw %%mm4, %%mm0 \n\t" // (abs(block[i])*2 + 1)*q | |
308 "pmullw %%mm5, %%mm1 \n\t" // (abs(block[i])*2 + 1)*q | |
309 "pxor %%mm4, %%mm4 \n\t" | |
310 "pxor %%mm5, %%mm5 \n\t" // FIXME slow | |
311 "pcmpeqw (%0, %%"REG_a"), %%mm4 \n\t" // block[i] == 0 ? -1 : 0 | |
312 "pcmpeqw 8(%0, %%"REG_a"), %%mm5\n\t" // block[i] == 0 ? -1 : 0 | |
313 "psraw $4, %%mm0 \n\t" | |
314 "psraw $4, %%mm1 \n\t" | |
315 "psubw %%mm7, %%mm0 \n\t" | |
316 "psubw %%mm7, %%mm1 \n\t" | |
317 "por %%mm7, %%mm0 \n\t" | |
318 "por %%mm7, %%mm1 \n\t" | |
319 "pxor %%mm2, %%mm0 \n\t" | |
320 "pxor %%mm3, %%mm1 \n\t" | |
321 "psubw %%mm2, %%mm0 \n\t" | |
322 "psubw %%mm3, %%mm1 \n\t" | |
323 "pandn %%mm0, %%mm4 \n\t" | |
324 "pandn %%mm1, %%mm5 \n\t" | |
325 "movq %%mm4, (%0, %%"REG_a") \n\t" | |
326 "movq %%mm5, 8(%0, %%"REG_a") \n\t" | |
325 | 327 |
2979 | 328 "add $16, %%"REG_a" \n\t" |
329 "js 1b \n\t" | |
7683 | 330 ::"r" (block+nCoeffs), "r"(quant_matrix+nCoeffs), "rm" (qscale), "g" (-2*nCoeffs) |
2979 | 331 : "%"REG_a, "memory" |
332 ); | |
325 | 333 } |
334 | |
1689 | 335 static void dct_unquantize_mpeg2_intra_mmx(MpegEncContext *s, |
325 | 336 DCTELEM *block, int n, int qscale) |
337 { | |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
6437
diff
changeset
|
338 x86_reg nCoeffs; |
1064 | 339 const uint16_t *quant_matrix; |
1689 | 340 int block0; |
2967 | 341 |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
342 assert(s->block_last_index[n]>=0); |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
343 |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
344 if(s->alternate_scan) nCoeffs= 63; //FIXME |
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
345 else nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ]; |
325 | 346 |
2967 | 347 if (n < 4) |
1689 | 348 block0 = block[0] * s->y_dc_scale; |
349 else | |
350 block0 = block[0] * s->c_dc_scale; | |
351 quant_matrix = s->intra_matrix; | |
8031 | 352 __asm__ volatile( |
2979 | 353 "pcmpeqw %%mm7, %%mm7 \n\t" |
354 "psrlw $15, %%mm7 \n\t" | |
355 "movd %2, %%mm6 \n\t" | |
356 "packssdw %%mm6, %%mm6 \n\t" | |
357 "packssdw %%mm6, %%mm6 \n\t" | |
358 "mov %3, %%"REG_a" \n\t" | |
3576
f7125bf10892
Support for MacIntel, last part: balign directives
gpoirier
parents:
3398
diff
changeset
|
359 ASMALIGN(4) |
2979 | 360 "1: \n\t" |
361 "movq (%0, %%"REG_a"), %%mm0 \n\t" | |
362 "movq 8(%0, %%"REG_a"), %%mm1 \n\t" | |
363 "movq (%1, %%"REG_a"), %%mm4 \n\t" | |
364 "movq 8(%1, %%"REG_a"), %%mm5 \n\t" | |
365 "pmullw %%mm6, %%mm4 \n\t" // q=qscale*quant_matrix[i] | |
366 "pmullw %%mm6, %%mm5 \n\t" // q=qscale*quant_matrix[i] | |
367 "pxor %%mm2, %%mm2 \n\t" | |
368 "pxor %%mm3, %%mm3 \n\t" | |
369 "pcmpgtw %%mm0, %%mm2 \n\t" // block[i] < 0 ? -1 : 0 | |
370 "pcmpgtw %%mm1, %%mm3 \n\t" // block[i] < 0 ? -1 : 0 | |
371 "pxor %%mm2, %%mm0 \n\t" | |
372 "pxor %%mm3, %%mm1 \n\t" | |
373 "psubw %%mm2, %%mm0 \n\t" // abs(block[i]) | |
374 "psubw %%mm3, %%mm1 \n\t" // abs(block[i]) | |
375 "pmullw %%mm4, %%mm0 \n\t" // abs(block[i])*q | |
376 "pmullw %%mm5, %%mm1 \n\t" // abs(block[i])*q | |
377 "pxor %%mm4, %%mm4 \n\t" | |
378 "pxor %%mm5, %%mm5 \n\t" // FIXME slow | |
379 "pcmpeqw (%0, %%"REG_a"), %%mm4 \n\t" // block[i] == 0 ? -1 : 0 | |
380 "pcmpeqw 8(%0, %%"REG_a"), %%mm5\n\t" // block[i] == 0 ? -1 : 0 | |
381 "psraw $3, %%mm0 \n\t" | |
382 "psraw $3, %%mm1 \n\t" | |
383 "pxor %%mm2, %%mm0 \n\t" | |
384 "pxor %%mm3, %%mm1 \n\t" | |
385 "psubw %%mm2, %%mm0 \n\t" | |
386 "psubw %%mm3, %%mm1 \n\t" | |
387 "pandn %%mm0, %%mm4 \n\t" | |
388 "pandn %%mm1, %%mm5 \n\t" | |
389 "movq %%mm4, (%0, %%"REG_a") \n\t" | |
390 "movq %%mm5, 8(%0, %%"REG_a") \n\t" | |
145
bd1adece8280
dct_unquantize_h263_mmx() by Michael Niedermayer <michaelni@gmx.at>
arpi_esp
parents:
14
diff
changeset
|
391 |
2979 | 392 "add $16, %%"REG_a" \n\t" |
393 "jng 1b \n\t" | |
7683 | 394 ::"r" (block+nCoeffs), "r"(quant_matrix+nCoeffs), "rm" (qscale), "g" (-2*nCoeffs) |
2979 | 395 : "%"REG_a, "memory" |
396 ); | |
1689 | 397 block[0]= block0; |
5127 | 398 //Note, we do not do mismatch control for intra as errors cannot accumulate |
1689 | 399 } |
325 | 400 |
1689 | 401 static void dct_unquantize_mpeg2_inter_mmx(MpegEncContext *s, |
402 DCTELEM *block, int n, int qscale) | |
403 { | |
6755
33896780c612
Do not misuse long as the size of a register in x86.
ramiro
parents:
6437
diff
changeset
|
404 x86_reg nCoeffs; |
1689 | 405 const uint16_t *quant_matrix; |
2967 | 406 |
1689 | 407 assert(s->block_last_index[n]>=0); |
408 | |
409 if(s->alternate_scan) nCoeffs= 63; //FIXME | |
410 else nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ]; | |
411 | |
344 | 412 quant_matrix = s->inter_matrix; |
8031 | 413 __asm__ volatile( |
2979 | 414 "pcmpeqw %%mm7, %%mm7 \n\t" |
415 "psrlq $48, %%mm7 \n\t" | |
416 "movd %2, %%mm6 \n\t" | |
417 "packssdw %%mm6, %%mm6 \n\t" | |
418 "packssdw %%mm6, %%mm6 \n\t" | |
419 "mov %3, %%"REG_a" \n\t" | |
3576
f7125bf10892
Support for MacIntel, last part: balign directives
gpoirier
parents:
3398
diff
changeset
|
420 ASMALIGN(4) |
2979 | 421 "1: \n\t" |
422 "movq (%0, %%"REG_a"), %%mm0 \n\t" | |
423 "movq 8(%0, %%"REG_a"), %%mm1 \n\t" | |
424 "movq (%1, %%"REG_a"), %%mm4 \n\t" | |
425 "movq 8(%1, %%"REG_a"), %%mm5 \n\t" | |
426 "pmullw %%mm6, %%mm4 \n\t" // q=qscale*quant_matrix[i] | |
427 "pmullw %%mm6, %%mm5 \n\t" // q=qscale*quant_matrix[i] | |
428 "pxor %%mm2, %%mm2 \n\t" | |
429 "pxor %%mm3, %%mm3 \n\t" | |
430 "pcmpgtw %%mm0, %%mm2 \n\t" // block[i] < 0 ? -1 : 0 | |
431 "pcmpgtw %%mm1, %%mm3 \n\t" // block[i] < 0 ? -1 : 0 | |
432 "pxor %%mm2, %%mm0 \n\t" | |
433 "pxor %%mm3, %%mm1 \n\t" | |
434 "psubw %%mm2, %%mm0 \n\t" // abs(block[i]) | |
435 "psubw %%mm3, %%mm1 \n\t" // abs(block[i]) | |
436 "paddw %%mm0, %%mm0 \n\t" // abs(block[i])*2 | |
437 "paddw %%mm1, %%mm1 \n\t" // abs(block[i])*2 | |
438 "pmullw %%mm4, %%mm0 \n\t" // abs(block[i])*2*q | |
439 "pmullw %%mm5, %%mm1 \n\t" // abs(block[i])*2*q | |
440 "paddw %%mm4, %%mm0 \n\t" // (abs(block[i])*2 + 1)*q | |
441 "paddw %%mm5, %%mm1 \n\t" // (abs(block[i])*2 + 1)*q | |
442 "pxor %%mm4, %%mm4 \n\t" | |
443 "pxor %%mm5, %%mm5 \n\t" // FIXME slow | |
444 "pcmpeqw (%0, %%"REG_a"), %%mm4 \n\t" // block[i] == 0 ? -1 : 0 | |
445 "pcmpeqw 8(%0, %%"REG_a"), %%mm5\n\t" // block[i] == 0 ? -1 : 0 | |
446 "psrlw $4, %%mm0 \n\t" | |
447 "psrlw $4, %%mm1 \n\t" | |
448 "pxor %%mm2, %%mm0 \n\t" | |
449 "pxor %%mm3, %%mm1 \n\t" | |
450 "psubw %%mm2, %%mm0 \n\t" | |
451 "psubw %%mm3, %%mm1 \n\t" | |
452 "pandn %%mm0, %%mm4 \n\t" | |
453 "pandn %%mm1, %%mm5 \n\t" | |
454 "pxor %%mm4, %%mm7 \n\t" | |
455 "pxor %%mm5, %%mm7 \n\t" | |
456 "movq %%mm4, (%0, %%"REG_a") \n\t" | |
457 "movq %%mm5, 8(%0, %%"REG_a") \n\t" | |
325 | 458 |
2979 | 459 "add $16, %%"REG_a" \n\t" |
460 "jng 1b \n\t" | |
461 "movd 124(%0, %3), %%mm0 \n\t" | |
462 "movq %%mm7, %%mm6 \n\t" | |
463 "psrlq $32, %%mm7 \n\t" | |
464 "pxor %%mm6, %%mm7 \n\t" | |
465 "movq %%mm7, %%mm6 \n\t" | |
466 "psrlq $16, %%mm7 \n\t" | |
467 "pxor %%mm6, %%mm7 \n\t" | |
468 "pslld $31, %%mm7 \n\t" | |
469 "psrlq $15, %%mm7 \n\t" | |
470 "pxor %%mm7, %%mm0 \n\t" | |
471 "movd %%mm0, 124(%0, %3) \n\t" | |
2967 | 472 |
7683 | 473 ::"r" (block+nCoeffs), "r"(quant_matrix+nCoeffs), "rm" (qscale), "r" (-2*nCoeffs) |
2979 | 474 : "%"REG_a, "memory" |
475 ); | |
8 | 476 } |
477 | |
1719 | 478 static void denoise_dct_mmx(MpegEncContext *s, DCTELEM *block){ |
479 const int intra= s->mb_intra; | |
480 int *sum= s->dct_error_sum[intra]; | |
481 uint16_t *offset= s->dct_offset[intra]; | |
482 | |
483 s->dct_count[intra]++; | |
484 | |
8031 | 485 __asm__ volatile( |
2979 | 486 "pxor %%mm7, %%mm7 \n\t" |
487 "1: \n\t" | |
488 "pxor %%mm0, %%mm0 \n\t" | |
489 "pxor %%mm1, %%mm1 \n\t" | |
490 "movq (%0), %%mm2 \n\t" | |
491 "movq 8(%0), %%mm3 \n\t" | |
492 "pcmpgtw %%mm2, %%mm0 \n\t" | |
493 "pcmpgtw %%mm3, %%mm1 \n\t" | |
494 "pxor %%mm0, %%mm2 \n\t" | |
495 "pxor %%mm1, %%mm3 \n\t" | |
496 "psubw %%mm0, %%mm2 \n\t" | |
497 "psubw %%mm1, %%mm3 \n\t" | |
498 "movq %%mm2, %%mm4 \n\t" | |
499 "movq %%mm3, %%mm5 \n\t" | |
500 "psubusw (%2), %%mm2 \n\t" | |
501 "psubusw 8(%2), %%mm3 \n\t" | |
502 "pxor %%mm0, %%mm2 \n\t" | |
503 "pxor %%mm1, %%mm3 \n\t" | |
504 "psubw %%mm0, %%mm2 \n\t" | |
505 "psubw %%mm1, %%mm3 \n\t" | |
506 "movq %%mm2, (%0) \n\t" | |
507 "movq %%mm3, 8(%0) \n\t" | |
508 "movq %%mm4, %%mm2 \n\t" | |
509 "movq %%mm5, %%mm3 \n\t" | |
510 "punpcklwd %%mm7, %%mm4 \n\t" | |
511 "punpckhwd %%mm7, %%mm2 \n\t" | |
512 "punpcklwd %%mm7, %%mm5 \n\t" | |
513 "punpckhwd %%mm7, %%mm3 \n\t" | |
514 "paddd (%1), %%mm4 \n\t" | |
515 "paddd 8(%1), %%mm2 \n\t" | |
516 "paddd 16(%1), %%mm5 \n\t" | |
517 "paddd 24(%1), %%mm3 \n\t" | |
518 "movq %%mm4, (%1) \n\t" | |
519 "movq %%mm2, 8(%1) \n\t" | |
520 "movq %%mm5, 16(%1) \n\t" | |
521 "movq %%mm3, 24(%1) \n\t" | |
522 "add $16, %0 \n\t" | |
523 "add $32, %1 \n\t" | |
524 "add $16, %2 \n\t" | |
525 "cmp %3, %0 \n\t" | |
526 " jb 1b \n\t" | |
1719 | 527 : "+r" (block), "+r" (sum), "+r" (offset) |
528 : "r"(block+64) | |
529 ); | |
530 } | |
531 | |
1720
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
532 static void denoise_dct_sse2(MpegEncContext *s, DCTELEM *block){ |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
533 const int intra= s->mb_intra; |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
534 int *sum= s->dct_error_sum[intra]; |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
535 uint16_t *offset= s->dct_offset[intra]; |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
536 |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
537 s->dct_count[intra]++; |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
538 |
8031 | 539 __asm__ volatile( |
2979 | 540 "pxor %%xmm7, %%xmm7 \n\t" |
541 "1: \n\t" | |
542 "pxor %%xmm0, %%xmm0 \n\t" | |
543 "pxor %%xmm1, %%xmm1 \n\t" | |
544 "movdqa (%0), %%xmm2 \n\t" | |
545 "movdqa 16(%0), %%xmm3 \n\t" | |
546 "pcmpgtw %%xmm2, %%xmm0 \n\t" | |
547 "pcmpgtw %%xmm3, %%xmm1 \n\t" | |
548 "pxor %%xmm0, %%xmm2 \n\t" | |
549 "pxor %%xmm1, %%xmm3 \n\t" | |
550 "psubw %%xmm0, %%xmm2 \n\t" | |
551 "psubw %%xmm1, %%xmm3 \n\t" | |
552 "movdqa %%xmm2, %%xmm4 \n\t" | |
553 "movdqa %%xmm3, %%xmm5 \n\t" | |
554 "psubusw (%2), %%xmm2 \n\t" | |
555 "psubusw 16(%2), %%xmm3 \n\t" | |
556 "pxor %%xmm0, %%xmm2 \n\t" | |
557 "pxor %%xmm1, %%xmm3 \n\t" | |
558 "psubw %%xmm0, %%xmm2 \n\t" | |
559 "psubw %%xmm1, %%xmm3 \n\t" | |
560 "movdqa %%xmm2, (%0) \n\t" | |
561 "movdqa %%xmm3, 16(%0) \n\t" | |
562 "movdqa %%xmm4, %%xmm6 \n\t" | |
563 "movdqa %%xmm5, %%xmm0 \n\t" | |
564 "punpcklwd %%xmm7, %%xmm4 \n\t" | |
565 "punpckhwd %%xmm7, %%xmm6 \n\t" | |
566 "punpcklwd %%xmm7, %%xmm5 \n\t" | |
567 "punpckhwd %%xmm7, %%xmm0 \n\t" | |
568 "paddd (%1), %%xmm4 \n\t" | |
569 "paddd 16(%1), %%xmm6 \n\t" | |
570 "paddd 32(%1), %%xmm5 \n\t" | |
571 "paddd 48(%1), %%xmm0 \n\t" | |
572 "movdqa %%xmm4, (%1) \n\t" | |
573 "movdqa %%xmm6, 16(%1) \n\t" | |
574 "movdqa %%xmm5, 32(%1) \n\t" | |
575 "movdqa %%xmm0, 48(%1) \n\t" | |
576 "add $32, %0 \n\t" | |
577 "add $64, %1 \n\t" | |
578 "add $32, %2 \n\t" | |
579 "cmp %3, %0 \n\t" | |
580 " jb 1b \n\t" | |
1720
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
581 : "+r" (block), "+r" (sum), "+r" (offset) |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
582 : "r"(block+64) |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
583 ); |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
584 } |
96a86bd1e0d5
denoise_dct_sse2() patch by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1719
diff
changeset
|
585 |
4989 | 586 #ifdef HAVE_SSSE3 |
587 #define HAVE_SSSE3_BAK | |
588 #endif | |
589 #undef HAVE_SSSE3 | |
590 | |
591 #undef HAVE_SSE2 | |
220 | 592 #undef HAVE_MMX2 |
593 #define RENAME(a) a ## _MMX | |
1565 | 594 #define RENAMEl(a) a ## _mmx |
220 | 595 #include "mpegvideo_mmx_template.c" |
596 | |
597 #define HAVE_MMX2 | |
598 #undef RENAME | |
1597 | 599 #undef RENAMEl |
220 | 600 #define RENAME(a) a ## _MMX2 |
1565 | 601 #define RENAMEl(a) a ## _mmx2 |
220 | 602 #include "mpegvideo_mmx_template.c" |
206 | 603 |
4989 | 604 #define HAVE_SSE2 |
1765
e31754bc5b65
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1720
diff
changeset
|
605 #undef RENAME |
e31754bc5b65
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1720
diff
changeset
|
606 #undef RENAMEl |
e31754bc5b65
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1720
diff
changeset
|
607 #define RENAME(a) a ## _SSE2 |
e31754bc5b65
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1720
diff
changeset
|
608 #define RENAMEl(a) a ## _sse2 |
e31754bc5b65
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1720
diff
changeset
|
609 #include "mpegvideo_mmx_template.c" |
e31754bc5b65
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1720
diff
changeset
|
610 |
4989 | 611 #ifdef HAVE_SSSE3_BAK |
612 #define HAVE_SSSE3 | |
613 #undef RENAME | |
614 #undef RENAMEl | |
615 #define RENAME(a) a ## _SSSE3 | |
616 #define RENAMEl(a) a ## _sse2 | |
617 #include "mpegvideo_mmx_template.c" | |
618 #endif | |
619 | |
14
8ceb13af9cb6
renamed - use of s->dct_unquantize function pointer - SHOULD add faster h263 mmx specific unquantization stuff
glantau
parents:
8
diff
changeset
|
620 void MPV_common_init_mmx(MpegEncContext *s) |
8 | 621 { |
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8031
diff
changeset
|
622 if (mm_flags & FF_MM_MMX) { |
706
e65798d228ea
idct permutation cleanup, idct can be selected per context now
michaelni
parents:
687
diff
changeset
|
623 const int dct_algo = s->avctx->dct_algo; |
2967 | 624 |
1689 | 625 s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_mmx; |
626 s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_mmx; | |
627 s->dct_unquantize_mpeg1_intra = dct_unquantize_mpeg1_intra_mmx; | |
628 s->dct_unquantize_mpeg1_inter = dct_unquantize_mpeg1_inter_mmx; | |
3281
7fac25904a8b
missmatch control for mpeg2 intra dequantization if bitexact=1
michael
parents:
3036
diff
changeset
|
629 if(!(s->flags & CODEC_FLAG_BITEXACT)) |
7fac25904a8b
missmatch control for mpeg2 intra dequantization if bitexact=1
michael
parents:
3036
diff
changeset
|
630 s->dct_unquantize_mpeg2_intra = dct_unquantize_mpeg2_intra_mmx; |
1689 | 631 s->dct_unquantize_mpeg2_inter = dct_unquantize_mpeg2_inter_mmx; |
312 | 632 |
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8031
diff
changeset
|
633 if (mm_flags & FF_MM_SSE2) { |
2979 | 634 s->denoise_dct= denoise_dct_sse2; |
635 } else { | |
636 s->denoise_dct= denoise_dct_mmx; | |
637 } | |
220 | 638 |
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
620
diff
changeset
|
639 if(dct_algo==FF_DCT_AUTO || dct_algo==FF_DCT_MMX){ |
4989 | 640 #ifdef HAVE_SSSE3 |
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8031
diff
changeset
|
641 if(mm_flags & FF_MM_SSSE3){ |
4989 | 642 s->dct_quantize= dct_quantize_SSSE3; |
643 } else | |
644 #endif | |
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8031
diff
changeset
|
645 if(mm_flags & FF_MM_SSE2){ |
1765
e31754bc5b65
SSE2 fdct by (Balatoni Denes <pnis at coder dot hu>)
michael
parents:
1720
diff
changeset
|
646 s->dct_quantize= dct_quantize_SSE2; |
8104
0d108ec85620
Remove duplicated MM_* macros for CPU capabilities from dsputil.h.
rathann
parents:
8031
diff
changeset
|
647 } else if(mm_flags & FF_MM_MMXEXT){ |
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
620
diff
changeset
|
648 s->dct_quantize= dct_quantize_MMX2; |
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
620
diff
changeset
|
649 } else { |
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
620
diff
changeset
|
650 s->dct_quantize= dct_quantize_MMX; |
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
620
diff
changeset
|
651 } |
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
344
diff
changeset
|
652 } |
14
8ceb13af9cb6
renamed - use of s->dct_unquantize function pointer - SHOULD add faster h263 mmx specific unquantization stuff
glantau
parents:
8
diff
changeset
|
653 } |
8 | 654 } |