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