Mercurial > mplayer.hg
annotate postproc/postprocess_template.c @ 6794:77980ab4e296
- add preferences support (first try)
- fix some playlist bug
- fix some equ bug
- fix some redraw bug
- fix dvd playing
- fix file open dialog box
- etc.
author | pontscho |
---|---|
date | Thu, 25 Jul 2002 20:26:38 +0000 |
parents | 3b078401d610 |
children | 81f6cbfc33ce |
rev | line source |
---|---|
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1 /* |
4399 | 2 Copyright (C) 2001-2002 Michael Niedermayer (michaelni@gmx.at) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
4 This program is free software; you can redistribute it and/or modify |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
5 it under the terms of the GNU General Public License as published by |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
6 the Free Software Foundation; either version 2 of the License, or |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
7 (at your option) any later version. |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
8 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
9 This program is distributed in the hope that it will be useful, |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
12 GNU General Public License for more details. |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
13 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
14 You should have received a copy of the GNU General Public License |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
15 along with this program; if not, write to the Free Software |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
17 */ |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
18 |
3099 | 19 #undef PAVGB |
20 #undef PMINUB | |
21 #undef PMAXUB | |
2189 | 22 |
23 #ifdef HAVE_MMX2 | |
24 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t" | |
25 #elif defined (HAVE_3DNOW) | |
26 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t" | |
27 #endif | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
28 |
2477 | 29 #ifdef HAVE_MMX2 |
30 #define PMINUB(a,b,t) "pminub " #a ", " #b " \n\t" | |
31 #elif defined (HAVE_MMX) | |
32 #define PMINUB(b,a,t) \ | |
33 "movq " #a ", " #t " \n\t"\ | |
34 "psubusb " #b ", " #t " \n\t"\ | |
35 "psubb " #t ", " #a " \n\t" | |
36 #endif | |
37 | |
38 #ifdef HAVE_MMX2 | |
39 #define PMAXUB(a,b) "pmaxub " #a ", " #b " \n\t" | |
40 #elif defined (HAVE_MMX) | |
41 #define PMAXUB(a,b) \ | |
42 "psubusb " #a ", " #b " \n\t"\ | |
43 "paddb " #a ", " #b " \n\t" | |
44 #endif | |
45 | |
46 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
47 //FIXME? |255-0| = 1 (shouldnt be a problem ...) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
48 /** |
2246 | 49 * Check if the middle 8x8 Block in the given 8x16 block is flat |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
50 */ |
3099 | 51 static inline int RENAME(isVertDC)(uint8_t src[], int stride){ |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
52 int numEq= 0; |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
53 #ifndef HAVE_MMX |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
54 int y; |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
55 #endif |
2246 | 56 src+= stride*4; // src points to begin of the 8x8 Block |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
57 #ifdef HAVE_MMX |
2413 | 58 asm volatile( |
59 "leal (%1, %2), %%eax \n\t" | |
60 "leal (%%eax, %2, 4), %%ebx \n\t" | |
61 // 0 1 2 3 4 5 6 7 8 9 | |
62 // %1 eax eax+%2 eax+2%2 %1+4%2 ebx ebx+%2 ebx+2%2 %1+8%2 ebx+4%2 | |
4248 | 63 "movq "MANGLE(mmxDCOffset)", %%mm7 \n\t" // mm7 = 0x7F |
64 "movq "MANGLE(mmxDCThreshold)", %%mm6 \n\t" // mm6 = 0x7D | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
65 "movq (%1), %%mm0 \n\t" |
2413 | 66 "movq (%%eax), %%mm1 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
67 "psubb %%mm1, %%mm0 \n\t" // mm0 = differnece |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
68 "paddb %%mm7, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
69 "pcmpgtb %%mm6, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
70 |
2413 | 71 "movq (%%eax,%2), %%mm2 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
72 "psubb %%mm2, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
73 "paddb %%mm7, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
74 "pcmpgtb %%mm6, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
75 "paddb %%mm1, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
76 |
2413 | 77 "movq (%%eax, %2, 2), %%mm1 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
78 "psubb %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
79 "paddb %%mm7, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
80 "pcmpgtb %%mm6, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
81 "paddb %%mm2, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
82 |
2413 | 83 "movq (%1, %2, 4), %%mm2 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
84 "psubb %%mm2, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
85 "paddb %%mm7, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
86 "pcmpgtb %%mm6, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
87 "paddb %%mm1, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
88 |
2413 | 89 "movq (%%ebx), %%mm1 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
90 "psubb %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
91 "paddb %%mm7, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
92 "pcmpgtb %%mm6, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
93 "paddb %%mm2, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
94 |
2413 | 95 "movq (%%ebx, %2), %%mm2 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
96 "psubb %%mm2, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
97 "paddb %%mm7, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
98 "pcmpgtb %%mm6, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
99 "paddb %%mm1, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
100 |
2413 | 101 "movq (%%ebx, %2, 2), %%mm1 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
102 "psubb %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
103 "paddb %%mm7, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
104 "pcmpgtb %%mm6, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
105 "paddb %%mm2, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
106 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
107 " \n\t" |
3093 | 108 #ifdef HAVE_MMX2 |
109 "pxor %%mm7, %%mm7 \n\t" | |
110 "psadbw %%mm7, %%mm0 \n\t" | |
111 #else | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
112 "movq %%mm0, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
113 "psrlw $8, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
114 "paddb %%mm1, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
115 "movq %%mm0, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
116 "psrlq $16, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
117 "paddb %%mm1, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
118 "movq %%mm0, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
119 "psrlq $32, %%mm0 \n\t" |
3093 | 120 "paddb %%mm1, %%mm0 \n\t" |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
121 #endif |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
122 "movd %%mm0, %0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
123 : "=r" (numEq) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
124 : "r" (src), "r" (stride) |
3093 | 125 : "%ebx" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
126 ); |
3093 | 127 numEq= (-numEq) &0xFF; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
128 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
129 #else |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
130 for(y=0; y<BLOCK_SIZE-1; y++) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
131 { |
3817 | 132 if(((src[0] - src[0+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; |
133 if(((src[1] - src[1+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; | |
134 if(((src[2] - src[2+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; | |
135 if(((src[3] - src[3+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; | |
136 if(((src[4] - src[4+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; | |
137 if(((src[5] - src[5+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; | |
138 if(((src[6] - src[6+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; | |
139 if(((src[7] - src[7+stride] + dcOffset)&0xFFFF) < dcThreshold) numEq++; | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
140 src+= stride; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
141 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
142 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
143 /* if(abs(numEq - asmEq) > 0) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
144 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
145 printf("\nasm:%d c:%d\n", asmEq, numEq); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
146 for(int y=0; y<8; y++) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
147 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
148 for(int x=0; x<8; x++) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
149 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
150 printf("%d ", temp[x + y*stride]); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
151 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
152 printf("\n"); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
153 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
154 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
155 */ |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
156 // for(int i=0; i<numEq/8; i++) src[i]=255; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
157 return (numEq > vFlatnessThreshold) ? 1 : 0; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
158 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
159 |
3099 | 160 static inline int RENAME(isVertMinMaxOk)(uint8_t src[], int stride, int QP) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
161 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
162 #ifdef HAVE_MMX |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
163 int isOk; |
2246 | 164 src+= stride*3; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
165 asm volatile( |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
166 // "int $3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
167 "movq (%1, %2), %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
168 "movq (%1, %2, 8), %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
169 "movq %%mm0, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
170 "psubusb %%mm1, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
171 "psubusb %%mm2, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
172 "por %%mm1, %%mm0 \n\t" // ABS Diff |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
173 |
4248 | 174 "movq "MANGLE(pQPb)", %%mm7 \n\t" // QP,..., QP |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
175 "paddusb %%mm7, %%mm7 \n\t" // 2QP ... 2QP |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
176 "psubusb %%mm7, %%mm0 \n\t" // Diff <= 2QP -> 0 |
4248 | 177 "pcmpeqd "MANGLE(b00)", %%mm0 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
178 "psrlq $16, %%mm0 \n\t" |
4248 | 179 "pcmpeqd "MANGLE(bFF)", %%mm0 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
180 // "movd %%mm0, (%1, %2, 4)\n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
181 "movd %%mm0, %0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
182 : "=r" (isOk) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
183 : "r" (src), "r" (stride) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
184 ); |
2416 | 185 return isOk; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
186 #else |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
187 |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
188 int isOk2= 1; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
189 int x; |
2246 | 190 src+= stride*3; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
191 for(x=0; x<BLOCK_SIZE; x++) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
192 { |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
193 if(abs((int)src[x + stride] - (int)src[x + (stride<<3)]) > 2*QP) isOk2=0; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
194 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
195 /* if(isOk && !isOk2 || !isOk && isOk2) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
196 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
197 printf("\nasm:%d c:%d QP:%d\n", isOk, isOk2, QP); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
198 for(int y=0; y<9; y++) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
199 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
200 for(int x=0; x<8; x++) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
201 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
202 printf("%d ", src[x + y*stride]); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
203 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
204 printf("\n"); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
205 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
206 } */ |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
207 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
208 return isOk2; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
209 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
210 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
211 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
212 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
213 /** |
2246 | 214 * Do a vertical low pass filter on the 8x16 block (only write to the 8x8 block in the middle) |
2221 | 215 * using the 9-Tap Filter (1,1,2,2,4,2,2,1,1)/16 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
216 */ |
3099 | 217 static inline void RENAME(doVertLowPass)(uint8_t *src, int stride, int QP) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
218 { |
2159 | 219 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
2246 | 220 src+= stride*3; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
221 asm volatile( //"movv %0 %1 %2\n\t" |
4248 | 222 "movq "MANGLE(pQPb)", %%mm0 \n\t" // QP,..., QP |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
223 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
224 "movq (%0), %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
225 "movq (%0, %1), %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
226 "movq %%mm5, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
227 "movq %%mm6, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
228 "psubusb %%mm6, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
229 "psubusb %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
230 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
231 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0 |
4248 | 232 "pcmpeqb "MANGLE(b00)", %%mm2 \n\t" // diff <= QP -> FF |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
233 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
234 "pand %%mm2, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
235 "pandn %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
236 "por %%mm2, %%mm6 \n\t"// First Line to Filter |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
237 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
238 "movq (%0, %1, 8), %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
239 "leal (%0, %1, 4), %%eax \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
240 "leal (%0, %1, 8), %%ebx \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
241 "subl %1, %%ebx \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
242 "addl %1, %0 \n\t" // %0 points to line 1 not 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
243 "movq (%0, %1, 8), %%mm7 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
244 "movq %%mm5, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
245 "movq %%mm7, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
246 "psubusb %%mm7, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
247 "psubusb %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
248 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
249 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0 |
4248 | 250 "pcmpeqb "MANGLE(b00)", %%mm2 \n\t" // diff <= QP -> FF |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
251 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
252 "pand %%mm2, %%mm7 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
253 "pandn %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
254 "por %%mm2, %%mm7 \n\t" // First Line to Filter |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
255 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
256 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
257 // 1 2 3 4 5 6 7 8 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
258 // %0 %0+%1 %0+2%1 eax %0+4%1 eax+2%1 ebx eax+4%1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
259 // 6 4 2 2 1 1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
260 // 6 4 4 2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
261 // 6 8 2 |
2246 | 262 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
263 "movq (%0, %1), %%mm0 \n\t" // 1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
264 "movq %%mm0, %%mm1 \n\t" // 1 |
2159 | 265 PAVGB(%%mm6, %%mm0) //1 1 /2 |
266 PAVGB(%%mm6, %%mm0) //3 1 /4 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
267 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
268 "movq (%0, %1, 4), %%mm2 \n\t" // 1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
269 "movq %%mm2, %%mm5 \n\t" // 1 |
2159 | 270 PAVGB((%%eax), %%mm2) // 11 /2 |
271 PAVGB((%0, %1, 2), %%mm2) // 211 /4 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
272 "movq %%mm2, %%mm3 \n\t" // 211 /4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
273 "movq (%0), %%mm4 \n\t" // 1 |
2159 | 274 PAVGB(%%mm4, %%mm3) // 4 211 /8 |
275 PAVGB(%%mm0, %%mm3) //642211 /16 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
276 "movq %%mm3, (%0) \n\t" // X |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
277 // mm1=2 mm2=3(211) mm4=1 mm5=5 mm6=0 mm7=9 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
278 "movq %%mm1, %%mm0 \n\t" // 1 |
2159 | 279 PAVGB(%%mm6, %%mm0) //1 1 /2 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
280 "movq %%mm4, %%mm3 \n\t" // 1 |
2159 | 281 PAVGB((%0,%1,2), %%mm3) // 1 1 /2 |
282 PAVGB((%%eax,%1,2), %%mm5) // 11 /2 | |
283 PAVGB((%%eax), %%mm5) // 211 /4 | |
284 PAVGB(%%mm5, %%mm3) // 2 2211 /8 | |
285 PAVGB(%%mm0, %%mm3) //4242211 /16 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
286 "movq %%mm3, (%0,%1) \n\t" // X |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
287 // mm1=2 mm2=3(211) mm4=1 mm5=4(211) mm6=0 mm7=9 |
2159 | 288 PAVGB(%%mm4, %%mm6) //11 /2 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
289 "movq (%%ebx), %%mm0 \n\t" // 1 |
2159 | 290 PAVGB((%%eax, %1, 2), %%mm0) // 11/2 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
291 "movq %%mm0, %%mm3 \n\t" // 11/2 |
2159 | 292 PAVGB(%%mm1, %%mm0) // 2 11/4 |
293 PAVGB(%%mm6, %%mm0) //222 11/8 | |
294 PAVGB(%%mm2, %%mm0) //22242211/16 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
295 "movq (%0, %1, 2), %%mm2 \n\t" // 1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
296 "movq %%mm0, (%0, %1, 2) \n\t" // X |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
297 // mm1=2 mm2=3 mm3=6(11) mm4=1 mm5=4(211) mm6=0(11) mm7=9 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
298 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1 |
2159 | 299 PAVGB((%%ebx), %%mm0) // 11 /2 |
300 PAVGB(%%mm0, %%mm6) //11 11 /4 | |
301 PAVGB(%%mm1, %%mm4) // 11 /2 | |
302 PAVGB(%%mm2, %%mm1) // 11 /2 | |
303 PAVGB(%%mm1, %%mm6) //1122 11 /8 | |
304 PAVGB(%%mm5, %%mm6) //112242211 /16 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
305 "movq (%%eax), %%mm5 \n\t" // 1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
306 "movq %%mm6, (%%eax) \n\t" // X |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
307 // mm0=7(11) mm1=2(11) mm2=3 mm3=6(11) mm4=1(11) mm5=4 mm7=9 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
308 "movq (%%eax, %1, 4), %%mm6 \n\t" // 1 |
2159 | 309 PAVGB(%%mm7, %%mm6) // 11 /2 |
310 PAVGB(%%mm4, %%mm6) // 11 11 /4 | |
311 PAVGB(%%mm3, %%mm6) // 11 2211 /8 | |
312 PAVGB(%%mm5, %%mm2) // 11 /2 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
313 "movq (%0, %1, 4), %%mm4 \n\t" // 1 |
2159 | 314 PAVGB(%%mm4, %%mm2) // 112 /4 |
315 PAVGB(%%mm2, %%mm6) // 112242211 /16 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
316 "movq %%mm6, (%0, %1, 4) \n\t" // X |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
317 // mm0=7(11) mm1=2(11) mm2=3(112) mm3=6(11) mm4=5 mm5=4 mm7=9 |
2159 | 318 PAVGB(%%mm7, %%mm1) // 11 2 /4 |
319 PAVGB(%%mm4, %%mm5) // 11 /2 | |
320 PAVGB(%%mm5, %%mm0) // 11 11 /4 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
321 "movq (%%eax, %1, 2), %%mm6 \n\t" // 1 |
2159 | 322 PAVGB(%%mm6, %%mm1) // 11 4 2 /8 |
323 PAVGB(%%mm0, %%mm1) // 11224222 /16 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
324 "movq %%mm1, (%%eax, %1, 2) \n\t" // X |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
325 // mm2=3(112) mm3=6(11) mm4=5 mm5=4(11) mm6=6 mm7=9 |
2159 | 326 PAVGB((%%ebx), %%mm2) // 112 4 /8 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
327 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1 |
2159 | 328 PAVGB(%%mm0, %%mm6) // 1 1 /2 |
329 PAVGB(%%mm7, %%mm6) // 1 12 /4 | |
330 PAVGB(%%mm2, %%mm6) // 1122424 /4 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
331 "movq %%mm6, (%%ebx) \n\t" // X |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
332 // mm0=8 mm3=6(11) mm4=5 mm5=4(11) mm7=9 |
2159 | 333 PAVGB(%%mm7, %%mm5) // 11 2 /4 |
334 PAVGB(%%mm7, %%mm5) // 11 6 /8 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
335 |
2159 | 336 PAVGB(%%mm3, %%mm0) // 112 /4 |
337 PAVGB(%%mm0, %%mm5) // 112246 /16 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
338 "movq %%mm5, (%%eax, %1, 4) \n\t" // X |
2570 | 339 "subl %1, %0 \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
340 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
341 : |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
342 : "r" (src), "r" (stride) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
343 : "%eax", "%ebx" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
344 ); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
345 #else |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
346 const int l1= stride; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
347 const int l2= stride + l1; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
348 const int l3= stride + l2; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
349 const int l4= stride + l3; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
350 const int l5= stride + l4; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
351 const int l6= stride + l5; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
352 const int l7= stride + l6; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
353 const int l8= stride + l7; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
354 const int l9= stride + l8; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
355 int x; |
2246 | 356 src+= stride*3; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
357 for(x=0; x<BLOCK_SIZE; x++) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
358 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
359 const int first= ABS(src[0] - src[l1]) < QP ? src[0] : src[l1]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
360 const int last= ABS(src[l8] - src[l9]) < QP ? src[l9] : src[l8]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
361 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
362 int sums[9]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
363 sums[0] = first + src[l1]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
364 sums[1] = src[l1] + src[l2]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
365 sums[2] = src[l2] + src[l3]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
366 sums[3] = src[l3] + src[l4]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
367 sums[4] = src[l4] + src[l5]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
368 sums[5] = src[l5] + src[l6]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
369 sums[6] = src[l6] + src[l7]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
370 sums[7] = src[l7] + src[l8]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
371 sums[8] = src[l8] + last; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
372 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
373 src[l1]= ((sums[0]<<2) + ((first + sums[2])<<1) + sums[4] + 8)>>4; |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
374 src[l2]= ((src[l2]<<2) + ((first + sums[0] + sums[3])<<1) + sums[5] + 8)>>4; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
375 src[l3]= ((src[l3]<<2) + ((first + sums[1] + sums[4])<<1) + sums[6] + 8)>>4; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
376 src[l4]= ((src[l4]<<2) + ((sums[2] + sums[5])<<1) + sums[0] + sums[7] + 8)>>4; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
377 src[l5]= ((src[l5]<<2) + ((sums[3] + sums[6])<<1) + sums[1] + sums[8] + 8)>>4; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
378 src[l6]= ((src[l6]<<2) + ((last + sums[7] + sums[4])<<1) + sums[2] + 8)>>4; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
379 src[l7]= (((last + src[l7])<<2) + ((src[l8] + sums[5])<<1) + sums[3] + 8)>>4; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
380 src[l8]= ((sums[8]<<2) + ((last + sums[6])<<1) + sums[4] + 8)>>4; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
381 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
382 src++; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
383 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
384 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
385 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
386 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
387 |
2159 | 388 /** |
389 * Experimental implementation of the filter (Algorithm 1) described in a paper from Ramkishor & Karandikar | |
390 * values are correctly clipped (MMX2) | |
391 * values are wraparound (C) | |
392 * conclusion: its fast, but introduces ugly horizontal patterns if there is a continious gradient | |
393 0 8 16 24 | |
394 x = 8 | |
395 x/2 = 4 | |
396 x/8 = 1 | |
397 1 12 12 23 | |
398 */ | |
3099 | 399 static inline void RENAME(vertRK1Filter)(uint8_t *src, int stride, int QP) |
2159 | 400 { |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
401 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
2246 | 402 src+= stride*3; |
2159 | 403 // FIXME rounding |
404 asm volatile( | |
405 "pxor %%mm7, %%mm7 \n\t" // 0 | |
4248 | 406 "movq "MANGLE(b80)", %%mm6 \n\t" // MIN_SIGNED_BYTE |
2159 | 407 "leal (%0, %1), %%eax \n\t" |
408 "leal (%%eax, %1, 4), %%ebx \n\t" | |
409 // 0 1 2 3 4 5 6 7 8 9 | |
410 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 | |
4248 | 411 "movq "MANGLE(pQPb)", %%mm0 \n\t" // QP,..., QP |
2159 | 412 "movq %%mm0, %%mm1 \n\t" // QP,..., QP |
4248 | 413 "paddusb "MANGLE(b02)", %%mm0 \n\t" |
2159 | 414 "psrlw $2, %%mm0 \n\t" |
4248 | 415 "pand "MANGLE(b3F)", %%mm0 \n\t" // QP/4,..., QP/4 |
2159 | 416 "paddusb %%mm1, %%mm0 \n\t" // QP*1.25 ... |
417 "movq (%0, %1, 4), %%mm2 \n\t" // line 4 | |
418 "movq (%%ebx), %%mm3 \n\t" // line 5 | |
419 "movq %%mm2, %%mm4 \n\t" // line 4 | |
420 "pcmpeqb %%mm5, %%mm5 \n\t" // -1 | |
421 "pxor %%mm2, %%mm5 \n\t" // -line 4 - 1 | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
422 PAVGB(%%mm3, %%mm5) |
2159 | 423 "paddb %%mm6, %%mm5 \n\t" // (l5-l4)/2 |
424 "psubusb %%mm3, %%mm4 \n\t" | |
425 "psubusb %%mm2, %%mm3 \n\t" | |
426 "por %%mm3, %%mm4 \n\t" // |l4 - l5| | |
427 "psubusb %%mm0, %%mm4 \n\t" | |
428 "pcmpeqb %%mm7, %%mm4 \n\t" | |
429 "pand %%mm4, %%mm5 \n\t" // d/2 | |
430 | |
431 // "paddb %%mm6, %%mm2 \n\t" // line 4 + 0x80 | |
432 "paddb %%mm5, %%mm2 \n\t" | |
433 // "psubb %%mm6, %%mm2 \n\t" | |
434 "movq %%mm2, (%0,%1, 4) \n\t" | |
435 | |
436 "movq (%%ebx), %%mm2 \n\t" | |
437 // "paddb %%mm6, %%mm2 \n\t" // line 5 + 0x80 | |
438 "psubb %%mm5, %%mm2 \n\t" | |
439 // "psubb %%mm6, %%mm2 \n\t" | |
440 "movq %%mm2, (%%ebx) \n\t" | |
441 | |
442 "paddb %%mm6, %%mm5 \n\t" | |
443 "psrlw $2, %%mm5 \n\t" | |
4248 | 444 "pand "MANGLE(b3F)", %%mm5 \n\t" |
445 "psubb "MANGLE(b20)", %%mm5 \n\t" // (l5-l4)/8 | |
2159 | 446 |
447 "movq (%%eax, %1, 2), %%mm2 \n\t" | |
448 "paddb %%mm6, %%mm2 \n\t" // line 3 + 0x80 | |
449 "paddsb %%mm5, %%mm2 \n\t" | |
450 "psubb %%mm6, %%mm2 \n\t" | |
451 "movq %%mm2, (%%eax, %1, 2) \n\t" | |
452 | |
453 "movq (%%ebx, %1), %%mm2 \n\t" | |
454 "paddb %%mm6, %%mm2 \n\t" // line 6 + 0x80 | |
455 "psubsb %%mm5, %%mm2 \n\t" | |
456 "psubb %%mm6, %%mm2 \n\t" | |
457 "movq %%mm2, (%%ebx, %1) \n\t" | |
458 | |
459 : | |
460 : "r" (src), "r" (stride) | |
461 : "%eax", "%ebx" | |
462 ); | |
463 #else | |
464 const int l1= stride; | |
465 const int l2= stride + l1; | |
466 const int l3= stride + l2; | |
467 const int l4= stride + l3; | |
468 const int l5= stride + l4; | |
469 const int l6= stride + l5; | |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
470 // const int l7= stride + l6; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
471 // const int l8= stride + l7; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
472 // const int l9= stride + l8; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
473 int x; |
2586 | 474 const int QP15= QP + (QP>>2); |
2246 | 475 src+= stride*3; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
476 for(x=0; x<BLOCK_SIZE; x++) |
2159 | 477 { |
2586 | 478 const int v = (src[x+l5] - src[x+l4]); |
479 if(ABS(v) < QP15) | |
2159 | 480 { |
2586 | 481 src[x+l3] +=v>>3; |
482 src[x+l4] +=v>>1; | |
483 src[x+l5] -=v>>1; | |
484 src[x+l6] -=v>>3; | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
485 |
2159 | 486 } |
487 } | |
488 | |
489 #endif | |
490 } | |
491 | |
492 /** | |
493 * Experimental Filter 1 | |
2179 | 494 * will not damage linear gradients |
495 * Flat blocks should look like they where passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
496 * can only smooth blocks at the expected locations (it cant smooth them if they did move) |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
497 * MMX2 version does correct clipping C version doesnt |
2159 | 498 */ |
3099 | 499 static inline void RENAME(vertX1Filter)(uint8_t *src, int stride, int QP) |
2159 | 500 { |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
501 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
2246 | 502 src+= stride*3; |
503 | |
2159 | 504 asm volatile( |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
505 "pxor %%mm7, %%mm7 \n\t" // 0 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
506 "leal (%0, %1), %%eax \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
507 "leal (%%eax, %1, 4), %%ebx \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
508 // 0 1 2 3 4 5 6 7 8 9 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
509 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
510 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
511 "movq (%0, %1, 4), %%mm1 \n\t" // line 4 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
512 "movq %%mm1, %%mm2 \n\t" // line 4 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
513 "psubusb %%mm0, %%mm1 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
514 "psubusb %%mm2, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
515 "por %%mm1, %%mm0 \n\t" // |l2 - l3| |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
516 "movq (%%ebx), %%mm3 \n\t" // line 5 |
5787 | 517 "movq (%%ebx, %1), %%mm4 \n\t" // line 6 |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
518 "movq %%mm3, %%mm5 \n\t" // line 5 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
519 "psubusb %%mm4, %%mm3 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
520 "psubusb %%mm5, %%mm4 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
521 "por %%mm4, %%mm3 \n\t" // |l5 - l6| |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
522 PAVGB(%%mm3, %%mm0) // (|l2 - l3| + |l5 - l6|)/2 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
523 "movq %%mm2, %%mm1 \n\t" // line 4 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
524 "psubusb %%mm5, %%mm2 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
525 "movq %%mm2, %%mm4 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
526 "pcmpeqb %%mm7, %%mm2 \n\t" // (l4 - l5) <= 0 ? -1 : 0 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
527 "psubusb %%mm1, %%mm5 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
528 "por %%mm5, %%mm4 \n\t" // |l4 - l5| |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
529 "psubusb %%mm0, %%mm4 \n\t" //d = MAX(0, |l4-l5| - (|l2-l3| + |l5-l6|)/2) |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
530 "movq %%mm4, %%mm3 \n\t" // d |
5787 | 531 "movq "MANGLE(pQPb)", %%mm0 \n\t" |
532 "paddusb %%mm0, %%mm0 \n\t" | |
533 "psubusb %%mm0, %%mm4 \n\t" | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
534 "pcmpeqb %%mm7, %%mm4 \n\t" // d <= QP ? -1 : 0 |
4248 | 535 "psubusb "MANGLE(b01)", %%mm3 \n\t" |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
536 "pand %%mm4, %%mm3 \n\t" // d <= QP ? d : 0 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
537 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
538 PAVGB(%%mm7, %%mm3) // d/2 |
2179 | 539 "movq %%mm3, %%mm1 \n\t" // d/2 |
540 PAVGB(%%mm7, %%mm3) // d/4 | |
541 PAVGB(%%mm1, %%mm3) // 3*d/8 | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
542 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
543 "movq (%0, %1, 4), %%mm0 \n\t" // line 4 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
544 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l4-1 : l4 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
545 "psubusb %%mm3, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
546 "pxor %%mm2, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
547 "movq %%mm0, (%0, %1, 4) \n\t" // line 4 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
548 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
549 "movq (%%ebx), %%mm0 \n\t" // line 5 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
550 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l5-1 : l5 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
551 "paddusb %%mm3, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
552 "pxor %%mm2, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
553 "movq %%mm0, (%%ebx) \n\t" // line 5 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
554 |
2179 | 555 PAVGB(%%mm7, %%mm1) // d/4 |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
556 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
557 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
558 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l4-1 : l4 |
2179 | 559 "psubusb %%mm1, %%mm0 \n\t" |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
560 "pxor %%mm2, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
561 "movq %%mm0, (%%eax, %1, 2) \n\t" // line 3 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
562 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
563 "movq (%%ebx, %1), %%mm0 \n\t" // line 6 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
564 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l5-1 : l5 |
2179 | 565 "paddusb %%mm1, %%mm0 \n\t" |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
566 "pxor %%mm2, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
567 "movq %%mm0, (%%ebx, %1) \n\t" // line 6 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
568 |
2179 | 569 PAVGB(%%mm7, %%mm1) // d/8 |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
570 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
571 "movq (%%eax, %1), %%mm0 \n\t" // line 2 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
572 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l2-1 : l2 |
2179 | 573 "psubusb %%mm1, %%mm0 \n\t" |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
574 "pxor %%mm2, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
575 "movq %%mm0, (%%eax, %1) \n\t" // line 2 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
576 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
577 "movq (%%ebx, %1, 2), %%mm0 \n\t" // line 7 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
578 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l7-1 : l7 |
2179 | 579 "paddusb %%mm1, %%mm0 \n\t" |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
580 "pxor %%mm2, %%mm0 \n\t" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
581 "movq %%mm0, (%%ebx, %1, 2) \n\t" // line 7 |
2159 | 582 |
583 : | |
584 : "r" (src), "r" (stride) | |
585 : "%eax", "%ebx" | |
586 ); | |
587 #else | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
588 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
589 const int l1= stride; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
590 const int l2= stride + l1; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
591 const int l3= stride + l2; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
592 const int l4= stride + l3; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
593 const int l5= stride + l4; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
594 const int l6= stride + l5; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
595 const int l7= stride + l6; |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
596 // const int l8= stride + l7; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
597 // const int l9= stride + l8; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
598 int x; |
2246 | 599 |
600 src+= stride*3; | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
601 for(x=0; x<BLOCK_SIZE; x++) |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
602 { |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
603 int a= src[l3] - src[l4]; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
604 int b= src[l4] - src[l5]; |
2179 | 605 int c= src[l5] - src[l6]; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
606 |
2586 | 607 int d= ABS(b) - ((ABS(a) + ABS(c))>>1); |
608 d= MAX(d, 0); | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
609 |
5787 | 610 if(d < QP*2) |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
611 { |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
612 int v = d * SIGN(-b); |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
613 |
2586 | 614 src[l2] +=v>>3; |
615 src[l3] +=v>>2; | |
616 src[l4] +=(3*v)>>3; | |
617 src[l5] -=(3*v)>>3; | |
618 src[l6] -=v>>2; | |
619 src[l7] -=v>>3; | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
620 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
621 } |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
622 src++; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
623 } |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
624 /* |
2159 | 625 const int l1= stride; |
626 const int l2= stride + l1; | |
627 const int l3= stride + l2; | |
628 const int l4= stride + l3; | |
629 const int l5= stride + l4; | |
630 const int l6= stride + l5; | |
631 const int l7= stride + l6; | |
632 const int l8= stride + l7; | |
633 const int l9= stride + l8; | |
634 for(int x=0; x<BLOCK_SIZE; x++) | |
635 { | |
636 int v2= src[l2]; | |
637 int v3= src[l3]; | |
638 int v4= src[l4]; | |
639 int v5= src[l5]; | |
640 int v6= src[l6]; | |
641 int v7= src[l7]; | |
642 | |
643 if(ABS(v4-v5)<QP && ABS(v4-v5) - (ABS(v3-v4) + ABS(v5-v6))>0 ) | |
644 { | |
645 src[l3] = (6*v2 + 4*v3 + 3*v4 + 2*v5 + v6 )/16; | |
646 src[l4] = (3*v2 + 3*v3 + 4*v4 + 3*v5 + 2*v6 + v7 )/16; | |
647 src[l5] = (1*v2 + 2*v3 + 3*v4 + 4*v5 + 3*v6 + 3*v7)/16; | |
648 src[l6] = ( 1*v3 + 2*v4 + 3*v5 + 4*v6 + 6*v7)/16; | |
649 } | |
650 src++; | |
651 } | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
652 */ |
2159 | 653 #endif |
654 } | |
655 | |
3099 | 656 static inline void RENAME(doVertDefFilter)(uint8_t src[], int stride, int QP) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
657 { |
3013 | 658 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
659 /* | |
660 uint8_t tmp[16]; | |
661 const int l1= stride; | |
662 const int l2= stride + l1; | |
663 const int l3= stride + l2; | |
664 const int l4= (int)tmp - (int)src - stride*3; | |
665 const int l5= (int)tmp - (int)src - stride*3 + 8; | |
666 const int l6= stride*3 + l3; | |
667 const int l7= stride + l6; | |
668 const int l8= stride + l7; | |
669 | |
670 memcpy(tmp, src+stride*7, 8); | |
671 memcpy(tmp+8, src+stride*8, 8); | |
672 */ | |
2246 | 673 src+= stride*4; |
3013 | 674 asm volatile( |
675 | |
676 #if 0 //sligtly more accurate and slightly slower | |
677 "pxor %%mm7, %%mm7 \n\t" // 0 | |
678 "leal (%0, %1), %%eax \n\t" | |
679 "leal (%%eax, %1, 4), %%ebx \n\t" | |
680 // 0 1 2 3 4 5 6 7 | |
681 // %0 %0+%1 %0+2%1 eax+2%1 %0+4%1 eax+4%1 ebx+%1 ebx+2%1 | |
682 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 | |
683 | |
684 | |
685 "movq (%0, %1, 2), %%mm0 \n\t" // l2 | |
686 "movq (%0), %%mm1 \n\t" // l0 | |
687 "movq %%mm0, %%mm2 \n\t" // l2 | |
688 PAVGB(%%mm7, %%mm0) // ~l2/2 | |
689 PAVGB(%%mm1, %%mm0) // ~(l2 + 2l0)/4 | |
690 PAVGB(%%mm2, %%mm0) // ~(5l2 + 2l0)/8 | |
691 | |
692 "movq (%%eax), %%mm1 \n\t" // l1 | |
693 "movq (%%eax, %1, 2), %%mm3 \n\t" // l3 | |
694 "movq %%mm1, %%mm4 \n\t" // l1 | |
695 PAVGB(%%mm7, %%mm1) // ~l1/2 | |
696 PAVGB(%%mm3, %%mm1) // ~(l1 + 2l3)/4 | |
697 PAVGB(%%mm4, %%mm1) // ~(5l1 + 2l3)/8 | |
698 | |
699 "movq %%mm0, %%mm4 \n\t" // ~(5l2 + 2l0)/8 | |
700 "psubusb %%mm1, %%mm0 \n\t" | |
701 "psubusb %%mm4, %%mm1 \n\t" | |
702 "por %%mm0, %%mm1 \n\t" // ~|2l0 - 5l1 + 5l2 - 2l3|/8 | |
703 // mm1= |lenergy|, mm2= l2, mm3= l3, mm7=0 | |
704 | |
705 "movq (%0, %1, 4), %%mm0 \n\t" // l4 | |
706 "movq %%mm0, %%mm4 \n\t" // l4 | |
707 PAVGB(%%mm7, %%mm0) // ~l4/2 | |
708 PAVGB(%%mm2, %%mm0) // ~(l4 + 2l2)/4 | |
709 PAVGB(%%mm4, %%mm0) // ~(5l4 + 2l2)/8 | |
710 | |
711 "movq (%%ebx), %%mm2 \n\t" // l5 | |
712 "movq %%mm3, %%mm5 \n\t" // l3 | |
713 PAVGB(%%mm7, %%mm3) // ~l3/2 | |
714 PAVGB(%%mm2, %%mm3) // ~(l3 + 2l5)/4 | |
715 PAVGB(%%mm5, %%mm3) // ~(5l3 + 2l5)/8 | |
716 | |
717 "movq %%mm0, %%mm6 \n\t" // ~(5l4 + 2l2)/8 | |
718 "psubusb %%mm3, %%mm0 \n\t" | |
719 "psubusb %%mm6, %%mm3 \n\t" | |
720 "por %%mm0, %%mm3 \n\t" // ~|2l2 - 5l3 + 5l4 - 2l5|/8 | |
721 "pcmpeqb %%mm7, %%mm0 \n\t" // SIGN(2l2 - 5l3 + 5l4 - 2l5) | |
722 // mm0= SIGN(menergy), mm1= |lenergy|, mm2= l5, mm3= |menergy|, mm4=l4, mm5= l3, mm7=0 | |
723 | |
724 "movq (%%ebx, %1), %%mm6 \n\t" // l6 | |
725 "movq %%mm6, %%mm5 \n\t" // l6 | |
726 PAVGB(%%mm7, %%mm6) // ~l6/2 | |
727 PAVGB(%%mm4, %%mm6) // ~(l6 + 2l4)/4 | |
728 PAVGB(%%mm5, %%mm6) // ~(5l6 + 2l4)/8 | |
729 | |
730 "movq (%%ebx, %1, 2), %%mm5 \n\t" // l7 | |
731 "movq %%mm2, %%mm4 \n\t" // l5 | |
732 PAVGB(%%mm7, %%mm2) // ~l5/2 | |
733 PAVGB(%%mm5, %%mm2) // ~(l5 + 2l7)/4 | |
734 PAVGB(%%mm4, %%mm2) // ~(5l5 + 2l7)/8 | |
735 | |
736 "movq %%mm6, %%mm4 \n\t" // ~(5l6 + 2l4)/8 | |
737 "psubusb %%mm2, %%mm6 \n\t" | |
738 "psubusb %%mm4, %%mm2 \n\t" | |
739 "por %%mm6, %%mm2 \n\t" // ~|2l4 - 5l5 + 5l6 - 2l7|/8 | |
740 // mm0= SIGN(menergy), mm1= |lenergy|/8, mm2= |renergy|/8, mm3= |menergy|/8, mm7=0 | |
741 | |
742 | |
743 PMINUB(%%mm2, %%mm1, %%mm4) // MIN(|lenergy|,|renergy|)/8 | |
4248 | 744 "movq "MANGLE(pQPb)", %%mm4 \n\t" // QP //FIXME QP+1 ? |
745 "paddusb "MANGLE(b01)", %%mm4 \n\t" | |
3013 | 746 "pcmpgtb %%mm3, %%mm4 \n\t" // |menergy|/8 < QP |
747 "psubusb %%mm1, %%mm3 \n\t" // d=|menergy|/8-MIN(|lenergy|,|renergy|)/8 | |
748 "pand %%mm4, %%mm3 \n\t" | |
749 | |
750 "movq %%mm3, %%mm1 \n\t" | |
4248 | 751 // "psubusb "MANGLE(b01)", %%mm3 \n\t" |
3013 | 752 PAVGB(%%mm7, %%mm3) |
753 PAVGB(%%mm7, %%mm3) | |
754 "paddusb %%mm1, %%mm3 \n\t" | |
4248 | 755 // "paddusb "MANGLE(b01)", %%mm3 \n\t" |
3013 | 756 |
757 "movq (%%eax, %1, 2), %%mm6 \n\t" //l3 | |
758 "movq (%0, %1, 4), %%mm5 \n\t" //l4 | |
759 "movq (%0, %1, 4), %%mm4 \n\t" //l4 | |
760 "psubusb %%mm6, %%mm5 \n\t" | |
761 "psubusb %%mm4, %%mm6 \n\t" | |
762 "por %%mm6, %%mm5 \n\t" // |l3-l4| | |
763 "pcmpeqb %%mm7, %%mm6 \n\t" // SIGN(l3-l4) | |
764 "pxor %%mm6, %%mm0 \n\t" | |
765 "pand %%mm0, %%mm3 \n\t" | |
766 PMINUB(%%mm5, %%mm3, %%mm0) | |
767 | |
4248 | 768 "psubusb "MANGLE(b01)", %%mm3 \n\t" |
3013 | 769 PAVGB(%%mm7, %%mm3) |
770 | |
771 "movq (%%eax, %1, 2), %%mm0 \n\t" | |
772 "movq (%0, %1, 4), %%mm2 \n\t" | |
773 "pxor %%mm6, %%mm0 \n\t" | |
774 "pxor %%mm6, %%mm2 \n\t" | |
775 "psubb %%mm3, %%mm0 \n\t" | |
776 "paddb %%mm3, %%mm2 \n\t" | |
777 "pxor %%mm6, %%mm0 \n\t" | |
778 "pxor %%mm6, %%mm2 \n\t" | |
779 "movq %%mm0, (%%eax, %1, 2) \n\t" | |
780 "movq %%mm2, (%0, %1, 4) \n\t" | |
781 #endif | |
782 | |
783 "leal (%0, %1), %%eax \n\t" | |
784 "pcmpeqb %%mm6, %%mm6 \n\t" // -1 | |
785 // 0 1 2 3 4 5 6 7 | |
786 // %0 %0+%1 %0+2%1 eax+2%1 %0+4%1 eax+4%1 ebx+%1 ebx+2%1 | |
787 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 | |
788 | |
789 | |
790 "movq (%%eax, %1, 2), %%mm1 \n\t" // l3 | |
791 "movq (%0, %1, 4), %%mm0 \n\t" // l4 | |
792 "pxor %%mm6, %%mm1 \n\t" // -l3-1 | |
793 PAVGB(%%mm1, %%mm0) // -q+128 = (l4-l3+256)/2 | |
794 // mm1=-l3-1, mm0=128-q | |
795 | |
796 "movq (%%eax, %1, 4), %%mm2 \n\t" // l5 | |
797 "movq (%%eax, %1), %%mm3 \n\t" // l2 | |
798 "pxor %%mm6, %%mm2 \n\t" // -l5-1 | |
799 "movq %%mm2, %%mm5 \n\t" // -l5-1 | |
4248 | 800 "movq "MANGLE(b80)", %%mm4 \n\t" // 128 |
3013 | 801 "leal (%%eax, %1, 4), %%ebx \n\t" |
802 PAVGB(%%mm3, %%mm2) // (l2-l5+256)/2 | |
803 PAVGB(%%mm0, %%mm4) // ~(l4-l3)/4 + 128 | |
804 PAVGB(%%mm2, %%mm4) // ~(l2-l5)/4 +(l4-l3)/8 + 128 | |
805 PAVGB(%%mm0, %%mm4) // ~(l2-l5)/8 +5(l4-l3)/16 + 128 | |
806 // mm1=-l3-1, mm0=128-q, mm3=l2, mm4=menergy/16 + 128, mm5= -l5-1 | |
807 | |
808 "movq (%%eax), %%mm2 \n\t" // l1 | |
809 "pxor %%mm6, %%mm2 \n\t" // -l1-1 | |
810 PAVGB(%%mm3, %%mm2) // (l2-l1+256)/2 | |
811 PAVGB((%0), %%mm1) // (l0-l3+256)/2 | |
4248 | 812 "movq "MANGLE(b80)", %%mm3 \n\t" // 128 |
3013 | 813 PAVGB(%%mm2, %%mm3) // ~(l2-l1)/4 + 128 |
814 PAVGB(%%mm1, %%mm3) // ~(l0-l3)/4 +(l2-l1)/8 + 128 | |
815 PAVGB(%%mm2, %%mm3) // ~(l0-l3)/8 +5(l2-l1)/16 + 128 | |
816 // mm0=128-q, mm3=lenergy/16 + 128, mm4= menergy/16 + 128, mm5= -l5-1 | |
817 | |
818 PAVGB((%%ebx, %1), %%mm5) // (l6-l5+256)/2 | |
819 "movq (%%ebx, %1, 2), %%mm1 \n\t" // l7 | |
820 "pxor %%mm6, %%mm1 \n\t" // -l7-1 | |
821 PAVGB((%0, %1, 4), %%mm1) // (l4-l7+256)/2 | |
4248 | 822 "movq "MANGLE(b80)", %%mm2 \n\t" // 128 |
3013 | 823 PAVGB(%%mm5, %%mm2) // ~(l6-l5)/4 + 128 |
824 PAVGB(%%mm1, %%mm2) // ~(l4-l7)/4 +(l6-l5)/8 + 128 | |
825 PAVGB(%%mm5, %%mm2) // ~(l4-l7)/8 +5(l6-l5)/16 + 128 | |
826 // mm0=128-q, mm2=renergy/16 + 128, mm3=lenergy/16 + 128, mm4= menergy/16 + 128 | |
827 | |
4248 | 828 "movq "MANGLE(b00)", %%mm1 \n\t" // 0 |
829 "movq "MANGLE(b00)", %%mm5 \n\t" // 0 | |
3013 | 830 "psubb %%mm2, %%mm1 \n\t" // 128 - renergy/16 |
831 "psubb %%mm3, %%mm5 \n\t" // 128 - lenergy/16 | |
832 PMAXUB(%%mm1, %%mm2) // 128 + |renergy/16| | |
833 PMAXUB(%%mm5, %%mm3) // 128 + |lenergy/16| | |
834 PMINUB(%%mm2, %%mm3, %%mm1) // 128 + MIN(|lenergy|,|renergy|)/16 | |
835 | |
836 // mm0=128-q, mm3=128 + MIN(|lenergy|,|renergy|)/16, mm4= menergy/16 + 128 | |
837 | |
4248 | 838 "movq "MANGLE(b00)", %%mm7 \n\t" // 0 |
839 "movq "MANGLE(pQPb)", %%mm2 \n\t" // QP | |
3013 | 840 PAVGB(%%mm6, %%mm2) // 128 + QP/2 |
841 "psubb %%mm6, %%mm2 \n\t" | |
842 | |
843 "movq %%mm4, %%mm1 \n\t" | |
844 "pcmpgtb %%mm7, %%mm1 \n\t" // SIGN(menergy) | |
845 "pxor %%mm1, %%mm4 \n\t" | |
846 "psubb %%mm1, %%mm4 \n\t" // 128 + |menergy|/16 | |
847 "pcmpgtb %%mm4, %%mm2 \n\t" // |menergy|/16 < QP/2 | |
848 "psubusb %%mm3, %%mm4 \n\t" //d=|menergy|/16 - MIN(|lenergy|,|renergy|)/16 | |
849 // mm0=128-q, mm1= SIGN(menergy), mm2= |menergy|/16 < QP/2, mm4= d/16 | |
850 | |
851 "movq %%mm4, %%mm3 \n\t" // d | |
4248 | 852 "psubusb "MANGLE(b01)", %%mm4 \n\t" |
3013 | 853 PAVGB(%%mm7, %%mm4) // d/32 |
854 PAVGB(%%mm7, %%mm4) // (d + 32)/64 | |
855 "paddb %%mm3, %%mm4 \n\t" // 5d/64 | |
856 "pand %%mm2, %%mm4 \n\t" | |
857 | |
4248 | 858 "movq "MANGLE(b80)", %%mm5 \n\t" // 128 |
3013 | 859 "psubb %%mm0, %%mm5 \n\t" // q |
860 "paddsb %%mm6, %%mm5 \n\t" // fix bad rounding | |
861 "pcmpgtb %%mm5, %%mm7 \n\t" // SIGN(q) | |
862 "pxor %%mm7, %%mm5 \n\t" | |
863 | |
864 PMINUB(%%mm5, %%mm4, %%mm3) // MIN(|q|, 5d/64) | |
865 "pxor %%mm1, %%mm7 \n\t" // SIGN(d*q) | |
866 | |
867 "pand %%mm7, %%mm4 \n\t" | |
868 "movq (%%eax, %1, 2), %%mm0 \n\t" | |
869 "movq (%0, %1, 4), %%mm2 \n\t" | |
870 "pxor %%mm1, %%mm0 \n\t" | |
871 "pxor %%mm1, %%mm2 \n\t" | |
872 "paddb %%mm4, %%mm0 \n\t" | |
873 "psubb %%mm4, %%mm2 \n\t" | |
874 "pxor %%mm1, %%mm0 \n\t" | |
875 "pxor %%mm1, %%mm2 \n\t" | |
876 "movq %%mm0, (%%eax, %1, 2) \n\t" | |
877 "movq %%mm2, (%0, %1, 4) \n\t" | |
878 | |
879 : | |
880 : "r" (src), "r" (stride) | |
881 : "%eax", "%ebx" | |
882 ); | |
883 | |
884 /* | |
885 { | |
886 int x; | |
887 src-= stride; | |
888 for(x=0; x<BLOCK_SIZE; x++) | |
889 { | |
890 const int middleEnergy= 5*(src[l5] - src[l4]) + 2*(src[l3] - src[l6]); | |
891 if(ABS(middleEnergy)< 8*QP) | |
892 { | |
893 const int q=(src[l4] - src[l5])/2; | |
894 const int leftEnergy= 5*(src[l3] - src[l2]) + 2*(src[l1] - src[l4]); | |
895 const int rightEnergy= 5*(src[l7] - src[l6]) + 2*(src[l5] - src[l8]); | |
896 | |
897 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) ); | |
898 d= MAX(d, 0); | |
899 | |
900 d= (5*d + 32) >> 6; | |
901 d*= SIGN(-middleEnergy); | |
902 | |
903 if(q>0) | |
904 { | |
905 d= d<0 ? 0 : d; | |
906 d= d>q ? q : d; | |
907 } | |
908 else | |
909 { | |
910 d= d>0 ? 0 : d; | |
911 d= d<q ? q : d; | |
912 } | |
913 | |
914 src[l4]-= d; | |
915 src[l5]+= d; | |
916 } | |
917 src++; | |
918 } | |
919 src-=8; | |
920 for(x=0; x<8; x++) | |
921 { | |
922 int y; | |
923 for(y=4; y<6; y++) | |
924 { | |
925 int d= src[x+y*stride] - tmp[x+(y-4)*8]; | |
926 int ad= ABS(d); | |
927 static int max=0; | |
928 static int sum=0; | |
929 static int num=0; | |
930 static int bias=0; | |
931 | |
932 if(max<ad) max=ad; | |
933 sum+= ad>3 ? 1 : 0; | |
934 if(ad>3) | |
935 { | |
936 src[0] = src[7] = src[stride*7] = src[(stride+1)*7]=255; | |
937 } | |
938 if(y==4) bias+=d; | |
939 num++; | |
940 if(num%1000000 == 0) | |
941 { | |
942 printf(" %d %d %d %d\n", num, sum, max, bias); | |
943 } | |
944 } | |
945 } | |
946 } | |
947 */ | |
948 #elif defined (HAVE_MMX) | |
949 src+= stride*4; | |
950 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
951 asm volatile( |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
952 "pxor %%mm7, %%mm7 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
953 "leal (%0, %1), %%eax \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
954 "leal (%%eax, %1, 4), %%ebx \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
955 // 0 1 2 3 4 5 6 7 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
956 // %0 %0+%1 %0+2%1 eax+2%1 %0+4%1 eax+4%1 ebx+%1 ebx+2%1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
957 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
958 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
959 "movq (%0), %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
960 "movq %%mm0, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
961 "punpcklbw %%mm7, %%mm0 \n\t" // low part of line 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
962 "punpckhbw %%mm7, %%mm1 \n\t" // high part of line 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
963 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
964 "movq (%%eax), %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
965 "movq %%mm2, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
966 "punpcklbw %%mm7, %%mm2 \n\t" // low part of line 1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
967 "punpckhbw %%mm7, %%mm3 \n\t" // high part of line 1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
968 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
969 "movq (%%eax, %1), %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
970 "movq %%mm4, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
971 "punpcklbw %%mm7, %%mm4 \n\t" // low part of line 2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
972 "punpckhbw %%mm7, %%mm5 \n\t" // high part of line 2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
973 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
974 "paddw %%mm0, %%mm0 \n\t" // 2L0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
975 "paddw %%mm1, %%mm1 \n\t" // 2H0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
976 "psubw %%mm4, %%mm2 \n\t" // L1 - L2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
977 "psubw %%mm5, %%mm3 \n\t" // H1 - H2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
978 "psubw %%mm2, %%mm0 \n\t" // 2L0 - L1 + L2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
979 "psubw %%mm3, %%mm1 \n\t" // 2H0 - H1 + H2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
980 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
981 "psllw $2, %%mm2 \n\t" // 4L1 - 4L2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
982 "psllw $2, %%mm3 \n\t" // 4H1 - 4H2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
983 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
984 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
985 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
986 "movq (%%eax, %1, 2), %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
987 "movq %%mm2, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
988 "punpcklbw %%mm7, %%mm2 \n\t" // L3 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
989 "punpckhbw %%mm7, %%mm3 \n\t" // H3 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
990 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
991 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - L3 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
992 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - H3 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
993 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - 2L3 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
994 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - 2H3 |
4248 | 995 "movq %%mm0, "MANGLE(temp0)" \n\t" // 2L0 - 5L1 + 5L2 - 2L3 |
996 "movq %%mm1, "MANGLE(temp1)" \n\t" // 2H0 - 5H1 + 5H2 - 2H3 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
997 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
998 "movq (%0, %1, 4), %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
999 "movq %%mm0, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1000 "punpcklbw %%mm7, %%mm0 \n\t" // L4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1001 "punpckhbw %%mm7, %%mm1 \n\t" // H4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1002 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1003 "psubw %%mm0, %%mm2 \n\t" // L3 - L4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1004 "psubw %%mm1, %%mm3 \n\t" // H3 - H4 |
4248 | 1005 "movq %%mm2, "MANGLE(temp2)" \n\t" // L3 - L4 |
1006 "movq %%mm3, "MANGLE(temp3)" \n\t" // H3 - H4 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1007 "paddw %%mm4, %%mm4 \n\t" // 2L2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1008 "paddw %%mm5, %%mm5 \n\t" // 2H2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1009 "psubw %%mm2, %%mm4 \n\t" // 2L2 - L3 + L4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1010 "psubw %%mm3, %%mm5 \n\t" // 2H2 - H3 + H4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1011 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1012 "psllw $2, %%mm2 \n\t" // 4L3 - 4L4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1013 "psllw $2, %%mm3 \n\t" // 4H3 - 4H4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1014 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1015 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1016 //50 opcodes so far |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1017 "movq (%%ebx), %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1018 "movq %%mm2, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1019 "punpcklbw %%mm7, %%mm2 \n\t" // L5 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1020 "punpckhbw %%mm7, %%mm3 \n\t" // H5 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1021 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - L5 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1022 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - H5 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1023 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - 2L5 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1024 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - 2H5 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1025 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1026 "movq (%%ebx, %1), %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1027 "punpcklbw %%mm7, %%mm6 \n\t" // L6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1028 "psubw %%mm6, %%mm2 \n\t" // L5 - L6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1029 "movq (%%ebx, %1), %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1030 "punpckhbw %%mm7, %%mm6 \n\t" // H6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1031 "psubw %%mm6, %%mm3 \n\t" // H5 - H6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1032 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1033 "paddw %%mm0, %%mm0 \n\t" // 2L4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1034 "paddw %%mm1, %%mm1 \n\t" // 2H4 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1035 "psubw %%mm2, %%mm0 \n\t" // 2L4 - L5 + L6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1036 "psubw %%mm3, %%mm1 \n\t" // 2H4 - H5 + H6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1037 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1038 "psllw $2, %%mm2 \n\t" // 4L5 - 4L6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1039 "psllw $2, %%mm3 \n\t" // 4H5 - 4H6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1040 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1041 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1042 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1043 "movq (%%ebx, %1, 2), %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1044 "movq %%mm2, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1045 "punpcklbw %%mm7, %%mm2 \n\t" // L7 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1046 "punpckhbw %%mm7, %%mm3 \n\t" // H7 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1047 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1048 "paddw %%mm2, %%mm2 \n\t" // 2L7 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1049 "paddw %%mm3, %%mm3 \n\t" // 2H7 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1050 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6 - 2L7 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1051 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6 - 2H7 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1052 |
4248 | 1053 "movq "MANGLE(temp0)", %%mm2 \n\t" // 2L0 - 5L1 + 5L2 - 2L3 |
1054 "movq "MANGLE(temp1)", %%mm3 \n\t" // 2H0 - 5H1 + 5H2 - 2H3 | |
2570 | 1055 |
1056 #ifdef HAVE_MMX2 | |
1057 "movq %%mm7, %%mm6 \n\t" // 0 | |
1058 "psubw %%mm0, %%mm6 \n\t" | |
1059 "pmaxsw %%mm6, %%mm0 \n\t" // |2L4 - 5L5 + 5L6 - 2L7| | |
1060 "movq %%mm7, %%mm6 \n\t" // 0 | |
1061 "psubw %%mm1, %%mm6 \n\t" | |
1062 "pmaxsw %%mm6, %%mm1 \n\t" // |2H4 - 5H5 + 5H6 - 2H7| | |
1063 "movq %%mm7, %%mm6 \n\t" // 0 | |
1064 "psubw %%mm2, %%mm6 \n\t" | |
1065 "pmaxsw %%mm6, %%mm2 \n\t" // |2L0 - 5L1 + 5L2 - 2L3| | |
1066 "movq %%mm7, %%mm6 \n\t" // 0 | |
1067 "psubw %%mm3, %%mm6 \n\t" | |
1068 "pmaxsw %%mm6, %%mm3 \n\t" // |2H0 - 5H1 + 5H2 - 2H3| | |
1069 #else | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1070 "movq %%mm7, %%mm6 \n\t" // 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1071 "pcmpgtw %%mm0, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1072 "pxor %%mm6, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1073 "psubw %%mm6, %%mm0 \n\t" // |2L4 - 5L5 + 5L6 - 2L7| |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1074 "movq %%mm7, %%mm6 \n\t" // 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1075 "pcmpgtw %%mm1, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1076 "pxor %%mm6, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1077 "psubw %%mm6, %%mm1 \n\t" // |2H4 - 5H5 + 5H6 - 2H7| |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1078 "movq %%mm7, %%mm6 \n\t" // 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1079 "pcmpgtw %%mm2, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1080 "pxor %%mm6, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1081 "psubw %%mm6, %%mm2 \n\t" // |2L0 - 5L1 + 5L2 - 2L3| |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1082 "movq %%mm7, %%mm6 \n\t" // 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1083 "pcmpgtw %%mm3, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1084 "pxor %%mm6, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1085 "psubw %%mm6, %%mm3 \n\t" // |2H0 - 5H1 + 5H2 - 2H3| |
2570 | 1086 #endif |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1087 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1088 #ifdef HAVE_MMX2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1089 "pminsw %%mm2, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1090 "pminsw %%mm3, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1091 #else |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1092 "movq %%mm0, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1093 "psubusw %%mm2, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1094 "psubw %%mm6, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1095 "movq %%mm1, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1096 "psubusw %%mm3, %%mm6 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1097 "psubw %%mm6, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1098 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1099 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1100 "movq %%mm7, %%mm6 \n\t" // 0 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1101 "pcmpgtw %%mm4, %%mm6 \n\t" // sign(2L2 - 5L3 + 5L4 - 2L5) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1102 "pxor %%mm6, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1103 "psubw %%mm6, %%mm4 \n\t" // |2L2 - 5L3 + 5L4 - 2L5| |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1104 "pcmpgtw %%mm5, %%mm7 \n\t" // sign(2H2 - 5H3 + 5H4 - 2H5) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1105 "pxor %%mm7, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1106 "psubw %%mm7, %%mm5 \n\t" // |2H2 - 5H3 + 5H4 - 2H5| |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1107 // 100 opcodes |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1108 "movd %2, %%mm2 \n\t" // QP |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1109 "punpcklwd %%mm2, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1110 "punpcklwd %%mm2, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1111 "psllw $3, %%mm2 \n\t" // 8QP |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1112 "movq %%mm2, %%mm3 \n\t" // 8QP |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1113 "pcmpgtw %%mm4, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1114 "pcmpgtw %%mm5, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1115 "pand %%mm2, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1116 "pand %%mm3, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1117 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1118 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1119 "psubusw %%mm0, %%mm4 \n\t" // hd |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1120 "psubusw %%mm1, %%mm5 \n\t" // ld |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1121 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1122 |
4253 | 1123 "movq "MANGLE(w05)", %%mm2 \n\t" // 5 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1124 "pmullw %%mm2, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1125 "pmullw %%mm2, %%mm5 \n\t" |
4253 | 1126 "movq "MANGLE(w20)", %%mm2 \n\t" // 32 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1127 "paddw %%mm2, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1128 "paddw %%mm2, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1129 "psrlw $6, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1130 "psrlw $6, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1131 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1132 /* |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1133 "movq w06, %%mm2 \n\t" // 6 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1134 "paddw %%mm2, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1135 "paddw %%mm2, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1136 "movq w1400, %%mm2 \n\t" // 1400h = 5120 = 5/64*2^16 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1137 //FIXME if *5/64 is supposed to be /13 then we should use 5041 instead of 5120 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1138 "pmulhw %%mm2, %%mm4 \n\t" // hd/13 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1139 "pmulhw %%mm2, %%mm5 \n\t" // ld/13 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1140 */ |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1141 |
4248 | 1142 "movq "MANGLE(temp2)", %%mm0 \n\t" // L3 - L4 |
1143 "movq "MANGLE(temp3)", %%mm1 \n\t" // H3 - H4 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1144 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1145 "pxor %%mm2, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1146 "pxor %%mm3, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1147 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1148 "pcmpgtw %%mm0, %%mm2 \n\t" // sign (L3-L4) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1149 "pcmpgtw %%mm1, %%mm3 \n\t" // sign (H3-H4) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1150 "pxor %%mm2, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1151 "pxor %%mm3, %%mm1 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1152 "psubw %%mm2, %%mm0 \n\t" // |L3-L4| |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1153 "psubw %%mm3, %%mm1 \n\t" // |H3-H4| |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1154 "psrlw $1, %%mm0 \n\t" // |L3 - L4|/2 |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1155 "psrlw $1, %%mm1 \n\t" // |H3 - H4|/2 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1156 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1157 "pxor %%mm6, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1158 "pxor %%mm7, %%mm3 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1159 "pand %%mm2, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1160 "pand %%mm3, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1161 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1162 #ifdef HAVE_MMX2 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1163 "pminsw %%mm0, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1164 "pminsw %%mm1, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1165 #else |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1166 "movq %%mm4, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1167 "psubusw %%mm0, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1168 "psubw %%mm2, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1169 "movq %%mm5, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1170 "psubusw %%mm1, %%mm2 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1171 "psubw %%mm2, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1172 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1173 "pxor %%mm6, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1174 "pxor %%mm7, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1175 "psubw %%mm6, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1176 "psubw %%mm7, %%mm5 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1177 "packsswb %%mm5, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1178 "movq (%%eax, %1, 2), %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1179 "paddb %%mm4, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1180 "movq %%mm0, (%%eax, %1, 2) \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1181 "movq (%0, %1, 4), %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1182 "psubb %%mm4, %%mm0 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1183 "movq %%mm0, (%0, %1, 4) \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1184 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1185 : |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1186 : "r" (src), "r" (stride), "r" (QP) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1187 : "%eax", "%ebx" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1188 ); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1189 #else |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1190 const int l1= stride; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1191 const int l2= stride + l1; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1192 const int l3= stride + l2; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1193 const int l4= stride + l3; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1194 const int l5= stride + l4; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1195 const int l6= stride + l5; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1196 const int l7= stride + l6; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1197 const int l8= stride + l7; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1198 // const int l9= stride + l8; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
1199 int x; |
2246 | 1200 src+= stride*3; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
1201 for(x=0; x<BLOCK_SIZE; x++) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1202 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1203 const int middleEnergy= 5*(src[l5] - src[l4]) + 2*(src[l3] - src[l6]); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1204 if(ABS(middleEnergy) < 8*QP) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1205 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1206 const int q=(src[l4] - src[l5])/2; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1207 const int leftEnergy= 5*(src[l3] - src[l2]) + 2*(src[l1] - src[l4]); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1208 const int rightEnergy= 5*(src[l7] - src[l6]) + 2*(src[l5] - src[l8]); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1209 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1210 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) ); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1211 d= MAX(d, 0); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1212 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1213 d= (5*d + 32) >> 6; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1214 d*= SIGN(-middleEnergy); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1215 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1216 if(q>0) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1217 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1218 d= d<0 ? 0 : d; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1219 d= d>q ? q : d; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1220 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1221 else |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1222 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1223 d= d>0 ? 0 : d; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1224 d= d<q ? q : d; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1225 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1226 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1227 src[l4]-= d; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1228 src[l5]+= d; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1229 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1230 src++; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1231 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1232 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1233 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1234 |
3099 | 1235 static inline void RENAME(dering)(uint8_t src[], int stride, int QP) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1236 { |
2475 | 1237 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1238 asm volatile( |
4248 | 1239 "movq "MANGLE(pQPb)", %%mm0 \n\t" |
2473 | 1240 "paddusb %%mm0, %%mm0 \n\t" |
4248 | 1241 "movq %%mm0, "MANGLE(pQPb2)" \n\t" |
2473 | 1242 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1243 "leal (%0, %1), %%eax \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1244 "leal (%%eax, %1, 4), %%ebx \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1245 // 0 1 2 3 4 5 6 7 8 9 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1246 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1247 |
3093 | 1248 "pcmpeqb %%mm7, %%mm7 \n\t" |
1249 "pxor %%mm6, %%mm6 \n\t" | |
3099 | 1250 #undef FIND_MIN_MAX |
2475 | 1251 #ifdef HAVE_MMX2 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1252 #define FIND_MIN_MAX(addr)\ |
2473 | 1253 "movq " #addr ", %%mm0 \n\t"\ |
3093 | 1254 "pminub %%mm0, %%mm7 \n\t"\ |
1255 "pmaxub %%mm0, %%mm6 \n\t" | |
2475 | 1256 #else |
1257 #define FIND_MIN_MAX(addr)\ | |
1258 "movq " #addr ", %%mm0 \n\t"\ | |
3093 | 1259 "movq %%mm7, %%mm1 \n\t"\ |
1260 "psubusb %%mm0, %%mm6 \n\t"\ | |
1261 "paddb %%mm0, %%mm6 \n\t"\ | |
2475 | 1262 "psubusb %%mm0, %%mm1 \n\t"\ |
3093 | 1263 "psubb %%mm1, %%mm7 \n\t" |
2475 | 1264 #endif |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1265 |
2473 | 1266 FIND_MIN_MAX((%%eax)) |
1267 FIND_MIN_MAX((%%eax, %1)) | |
1268 FIND_MIN_MAX((%%eax, %1, 2)) | |
1269 FIND_MIN_MAX((%0, %1, 4)) | |
1270 FIND_MIN_MAX((%%ebx)) | |
1271 FIND_MIN_MAX((%%ebx, %1)) | |
1272 FIND_MIN_MAX((%%ebx, %1, 2)) | |
1273 FIND_MIN_MAX((%0, %1, 8)) | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1274 |
3093 | 1275 "movq %%mm7, %%mm4 \n\t" |
1276 "psrlq $8, %%mm7 \n\t" | |
1277 #ifdef HAVE_MMX2 | |
1278 "pminub %%mm4, %%mm7 \n\t" // min of pixels | |
1279 "pshufw $0xF9, %%mm7, %%mm4 \n\t" | |
1280 "pminub %%mm4, %%mm7 \n\t" // min of pixels | |
1281 "pshufw $0xFE, %%mm7, %%mm4 \n\t" | |
1282 "pminub %%mm4, %%mm7 \n\t" | |
1283 #else | |
1284 "movq %%mm7, %%mm1 \n\t" | |
1285 "psubusb %%mm4, %%mm1 \n\t" | |
1286 "psubb %%mm1, %%mm7 \n\t" | |
1287 "movq %%mm7, %%mm4 \n\t" | |
1288 "psrlq $16, %%mm7 \n\t" | |
1289 "movq %%mm7, %%mm1 \n\t" | |
1290 "psubusb %%mm4, %%mm1 \n\t" | |
1291 "psubb %%mm1, %%mm7 \n\t" | |
1292 "movq %%mm7, %%mm4 \n\t" | |
1293 "psrlq $32, %%mm7 \n\t" | |
1294 "movq %%mm7, %%mm1 \n\t" | |
1295 "psubusb %%mm4, %%mm1 \n\t" | |
1296 "psubb %%mm1, %%mm7 \n\t" | |
1297 #endif | |
1298 | |
1299 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1300 "movq %%mm6, %%mm4 \n\t" |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1301 "psrlq $8, %%mm6 \n\t" |
2475 | 1302 #ifdef HAVE_MMX2 |
3093 | 1303 "pmaxub %%mm4, %%mm6 \n\t" // max of pixels |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1304 "pshufw $0xF9, %%mm6, %%mm4 \n\t" |
3093 | 1305 "pmaxub %%mm4, %%mm6 \n\t" |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1306 "pshufw $0xFE, %%mm6, %%mm4 \n\t" |
3093 | 1307 "pmaxub %%mm4, %%mm6 \n\t" |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1308 #else |
3093 | 1309 "psubusb %%mm4, %%mm6 \n\t" |
1310 "paddb %%mm4, %%mm6 \n\t" | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1311 "movq %%mm6, %%mm4 \n\t" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1312 "psrlq $16, %%mm6 \n\t" |
3093 | 1313 "psubusb %%mm4, %%mm6 \n\t" |
1314 "paddb %%mm4, %%mm6 \n\t" | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1315 "movq %%mm6, %%mm4 \n\t" |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1316 "psrlq $32, %%mm6 \n\t" |
3093 | 1317 "psubusb %%mm4, %%mm6 \n\t" |
1318 "paddb %%mm4, %%mm6 \n\t" | |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1319 #endif |
3093 | 1320 "movq %%mm6, %%mm0 \n\t" // max |
1321 "psubb %%mm7, %%mm6 \n\t" // max - min | |
1322 "movd %%mm6, %%ecx \n\t" | |
4248 | 1323 "cmpb "MANGLE(deringThreshold)", %%cl \n\t" |
3093 | 1324 " jb 1f \n\t" |
1325 PAVGB(%%mm0, %%mm7) // a=(max + min)/2 | |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1326 "punpcklbw %%mm7, %%mm7 \n\t" |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1327 "punpcklbw %%mm7, %%mm7 \n\t" |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1328 "punpcklbw %%mm7, %%mm7 \n\t" |
4248 | 1329 "movq %%mm7, "MANGLE(temp0)" \n\t" |
2473 | 1330 |
1331 "movq (%0), %%mm0 \n\t" // L10 | |
1332 "movq %%mm0, %%mm1 \n\t" // L10 | |
1333 "movq %%mm0, %%mm2 \n\t" // L10 | |
1334 "psllq $8, %%mm1 \n\t" | |
1335 "psrlq $8, %%mm2 \n\t" | |
1336 "movd -4(%0), %%mm3 \n\t" | |
1337 "movd 8(%0), %%mm4 \n\t" | |
1338 "psrlq $24, %%mm3 \n\t" | |
1339 "psllq $56, %%mm4 \n\t" | |
1340 "por %%mm3, %%mm1 \n\t" // L00 | |
1341 "por %%mm4, %%mm2 \n\t" // L20 | |
1342 "movq %%mm1, %%mm3 \n\t" // L00 | |
1343 PAVGB(%%mm2, %%mm1) // (L20 + L00)/2 | |
1344 PAVGB(%%mm0, %%mm1) // (L20 + L00 + 2L10)/4 | |
1345 "psubusb %%mm7, %%mm0 \n\t" | |
1346 "psubusb %%mm7, %%mm2 \n\t" | |
1347 "psubusb %%mm7, %%mm3 \n\t" | |
4248 | 1348 "pcmpeqb "MANGLE(b00)", %%mm0 \n\t" // L10 > a ? 0 : -1 |
1349 "pcmpeqb "MANGLE(b00)", %%mm2 \n\t" // L20 > a ? 0 : -1 | |
1350 "pcmpeqb "MANGLE(b00)", %%mm3 \n\t" // L00 > a ? 0 : -1 | |
2473 | 1351 "paddb %%mm2, %%mm0 \n\t" |
1352 "paddb %%mm3, %%mm0 \n\t" | |
1353 | |
1354 "movq (%%eax), %%mm2 \n\t" // L11 | |
1355 "movq %%mm2, %%mm3 \n\t" // L11 | |
1356 "movq %%mm2, %%mm4 \n\t" // L11 | |
1357 "psllq $8, %%mm3 \n\t" | |
1358 "psrlq $8, %%mm4 \n\t" | |
1359 "movd -4(%%eax), %%mm5 \n\t" | |
1360 "movd 8(%%eax), %%mm6 \n\t" | |
1361 "psrlq $24, %%mm5 \n\t" | |
1362 "psllq $56, %%mm6 \n\t" | |
1363 "por %%mm5, %%mm3 \n\t" // L01 | |
1364 "por %%mm6, %%mm4 \n\t" // L21 | |
1365 "movq %%mm3, %%mm5 \n\t" // L01 | |
1366 PAVGB(%%mm4, %%mm3) // (L21 + L01)/2 | |
1367 PAVGB(%%mm2, %%mm3) // (L21 + L01 + 2L11)/4 | |
1368 "psubusb %%mm7, %%mm2 \n\t" | |
1369 "psubusb %%mm7, %%mm4 \n\t" | |
1370 "psubusb %%mm7, %%mm5 \n\t" | |
4248 | 1371 "pcmpeqb "MANGLE(b00)", %%mm2 \n\t" // L11 > a ? 0 : -1 |
1372 "pcmpeqb "MANGLE(b00)", %%mm4 \n\t" // L21 > a ? 0 : -1 | |
1373 "pcmpeqb "MANGLE(b00)", %%mm5 \n\t" // L01 > a ? 0 : -1 | |
2473 | 1374 "paddb %%mm4, %%mm2 \n\t" |
1375 "paddb %%mm5, %%mm2 \n\t" | |
1376 // 0, 2, 3, 1 | |
1377 #define DERING_CORE(dst,src,ppsx,psx,sx,pplx,plx,lx,t0,t1) \ | |
1378 "movq " #src ", " #sx " \n\t" /* src[0] */\ | |
1379 "movq " #sx ", " #lx " \n\t" /* src[0] */\ | |
1380 "movq " #sx ", " #t0 " \n\t" /* src[0] */\ | |
1381 "psllq $8, " #lx " \n\t"\ | |
1382 "psrlq $8, " #t0 " \n\t"\ | |
1383 "movd -4" #src ", " #t1 " \n\t"\ | |
1384 "psrlq $24, " #t1 " \n\t"\ | |
1385 "por " #t1 ", " #lx " \n\t" /* src[-1] */\ | |
1386 "movd 8" #src ", " #t1 " \n\t"\ | |
1387 "psllq $56, " #t1 " \n\t"\ | |
1388 "por " #t1 ", " #t0 " \n\t" /* src[+1] */\ | |
1389 "movq " #lx ", " #t1 " \n\t" /* src[-1] */\ | |
1390 PAVGB(t0, lx) /* (src[-1] + src[+1])/2 */\ | |
1391 PAVGB(sx, lx) /* (src[-1] + 2src[0] + src[+1])/4 */\ | |
2478 | 1392 PAVGB(lx, pplx) \ |
4248 | 1393 "movq " #lx ", "MANGLE(temp1)" \n\t"\ |
1394 "movq "MANGLE(temp0)", " #lx " \n\t"\ | |
2570 | 1395 "psubusb " #lx ", " #t1 " \n\t"\ |
1396 "psubusb " #lx ", " #t0 " \n\t"\ | |
1397 "psubusb " #lx ", " #sx " \n\t"\ | |
4248 | 1398 "movq "MANGLE(b00)", " #lx " \n\t"\ |
2570 | 1399 "pcmpeqb " #lx ", " #t1 " \n\t" /* src[-1] > a ? 0 : -1*/\ |
1400 "pcmpeqb " #lx ", " #t0 " \n\t" /* src[+1] > a ? 0 : -1*/\ | |
1401 "pcmpeqb " #lx ", " #sx " \n\t" /* src[0] > a ? 0 : -1*/\ | |
2473 | 1402 "paddb " #t1 ", " #t0 " \n\t"\ |
1403 "paddb " #t0 ", " #sx " \n\t"\ | |
1404 \ | |
1405 PAVGB(plx, pplx) /* filtered */\ | |
1406 "movq " #dst ", " #t0 " \n\t" /* dst */\ | |
2477 | 1407 "movq " #t0 ", " #t1 " \n\t" /* dst */\ |
4248 | 1408 "psubusb "MANGLE(pQPb2)", " #t0 " \n\t"\ |
1409 "paddusb "MANGLE(pQPb2)", " #t1 " \n\t"\ | |
2477 | 1410 PMAXUB(t0, pplx)\ |
1411 PMINUB(t1, pplx, t0)\ | |
2473 | 1412 "paddb " #sx ", " #ppsx " \n\t"\ |
1413 "paddb " #psx ", " #ppsx " \n\t"\ | |
4248 | 1414 "#paddb "MANGLE(b02)", " #ppsx " \n\t"\ |
1415 "pand "MANGLE(b08)", " #ppsx " \n\t"\ | |
2570 | 1416 "pcmpeqb " #lx ", " #ppsx " \n\t"\ |
2477 | 1417 "pand " #ppsx ", " #pplx " \n\t"\ |
2473 | 1418 "pandn " #dst ", " #ppsx " \n\t"\ |
2570 | 1419 "por " #pplx ", " #ppsx " \n\t"\ |
2478 | 1420 "movq " #ppsx ", " #dst " \n\t"\ |
4248 | 1421 "movq "MANGLE(temp1)", " #lx " \n\t" |
2477 | 1422 |
2473 | 1423 /* |
1424 0000000 | |
1425 1111111 | |
1426 | |
1427 1111110 | |
1428 1111101 | |
1429 1111100 | |
1430 1111011 | |
1431 1111010 | |
1432 1111001 | |
1433 | |
1434 1111000 | |
1435 1110111 | |
1436 | |
1437 */ | |
1438 //DERING_CORE(dst,src ,ppsx ,psx ,sx ,pplx ,plx ,lx ,t0 ,t1) | |
1439 DERING_CORE((%%eax),(%%eax, %1) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7) | |
1440 DERING_CORE((%%eax, %1),(%%eax, %1, 2) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7) | |
1441 DERING_CORE((%%eax, %1, 2),(%0, %1, 4) ,%%mm4,%%mm0,%%mm2,%%mm5,%%mm1,%%mm3,%%mm6,%%mm7) | |
1442 DERING_CORE((%0, %1, 4),(%%ebx) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7) | |
1443 DERING_CORE((%%ebx),(%%ebx, %1) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7) | |
1444 DERING_CORE((%%ebx, %1), (%%ebx, %1, 2),%%mm4,%%mm0,%%mm2,%%mm5,%%mm1,%%mm3,%%mm6,%%mm7) | |
1445 DERING_CORE((%%ebx, %1, 2),(%0, %1, 8) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7) | |
1446 DERING_CORE((%0, %1, 8),(%%ebx, %1, 4) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7) | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1447 |
3093 | 1448 "1: \n\t" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1449 : : "r" (src), "r" (stride), "r" (QP) |
3093 | 1450 : "%eax", "%ebx", "%ecx" |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1451 ); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1452 #else |
2477 | 1453 int y; |
1454 int min=255; | |
1455 int max=0; | |
1456 int avg; | |
1457 uint8_t *p; | |
1458 int s[10]; | |
1459 | |
1460 for(y=1; y<9; y++) | |
1461 { | |
1462 int x; | |
1463 p= src + stride*y; | |
1464 for(x=1; x<9; x++) | |
1465 { | |
1466 p++; | |
1467 if(*p > max) max= *p; | |
1468 if(*p < min) min= *p; | |
1469 } | |
1470 } | |
1471 avg= (min + max + 1)/2; | |
1472 | |
3093 | 1473 if(max - min <deringThreshold) return; |
1474 | |
2477 | 1475 for(y=0; y<10; y++) |
1476 { | |
1477 int x; | |
1478 int t = 0; | |
1479 p= src + stride*y; | |
1480 for(x=0; x<10; x++) | |
1481 { | |
1482 if(*p > avg) t |= (1<<x); | |
1483 p++; | |
1484 } | |
1485 t |= (~t)<<16; | |
1486 t &= (t<<1) & (t>>1); | |
1487 s[y] = t; | |
1488 } | |
1489 | |
1490 for(y=1; y<9; y++) | |
1491 { | |
1492 int x; | |
1493 int t = s[y-1] & s[y] & s[y+1]; | |
1494 t|= t>>16; | |
1495 | |
1496 p= src + stride*y; | |
1497 for(x=1; x<9; x++) | |
1498 { | |
1499 p++; | |
1500 if(t & (1<<x)) | |
1501 { | |
1502 int f= (*(p-stride-1)) + 2*(*(p-stride)) + (*(p-stride+1)) | |
1503 +2*(*(p -1)) + 4*(*p ) + 2*(*(p +1)) | |
1504 +(*(p+stride-1)) + 2*(*(p+stride)) + (*(p+stride+1)); | |
1505 f= (f + 8)>>4; | |
1506 | |
3093 | 1507 #ifdef DEBUG_DERING_THRESHOLD |
1508 asm volatile("emms\n\t":); | |
1509 { | |
1510 static long long numPixels=0; | |
1511 if(x!=1 && x!=8 && y!=1 && y!=8) numPixels++; | |
1512 // if((max-min)<20 || (max-min)*QP<200) | |
1513 // if((max-min)*QP < 500) | |
1514 // if(max-min<QP/2) | |
1515 if(max-min < 20) | |
1516 { | |
1517 static int numSkiped=0; | |
1518 static int errorSum=0; | |
1519 static int worstQP=0; | |
1520 static int worstRange=0; | |
1521 static int worstDiff=0; | |
1522 int diff= (f - *p); | |
1523 int absDiff= ABS(diff); | |
1524 int error= diff*diff; | |
1525 | |
1526 if(x==1 || x==8 || y==1 || y==8) continue; | |
1527 | |
1528 numSkiped++; | |
1529 if(absDiff > worstDiff) | |
1530 { | |
1531 worstDiff= absDiff; | |
1532 worstQP= QP; | |
1533 worstRange= max-min; | |
1534 } | |
1535 errorSum+= error; | |
1536 | |
1537 if(1024LL*1024LL*1024LL % numSkiped == 0) | |
1538 { | |
1539 printf( "sum:%1.3f, skip:%d, wQP:%d, " | |
1540 "wRange:%d, wDiff:%d, relSkip:%1.3f\n", | |
1541 (float)errorSum/numSkiped, numSkiped, worstQP, worstRange, | |
1542 worstDiff, (float)numSkiped/numPixels); | |
1543 } | |
1544 } | |
1545 } | |
1546 #endif | |
2477 | 1547 if (*p + 2*QP < f) *p= *p + 2*QP; |
1548 else if(*p - 2*QP > f) *p= *p - 2*QP; | |
1549 else *p=f; | |
1550 } | |
1551 } | |
1552 } | |
3093 | 1553 #ifdef DEBUG_DERING_THRESHOLD |
1554 if(max-min < 20) | |
1555 { | |
1556 for(y=1; y<9; y++) | |
1557 { | |
1558 int x; | |
1559 int t = 0; | |
1560 p= src + stride*y; | |
1561 for(x=1; x<9; x++) | |
1562 { | |
1563 p++; | |
1564 *p = MIN(*p + 20, 255); | |
1565 } | |
1566 } | |
1567 // src[0] = src[7]=src[stride*7]=src[stride*7 + 7]=255; | |
1568 } | |
1569 #endif | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1570 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1571 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
1572 |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1573 /** |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1574 * Deinterlaces the given block |
2595 | 1575 * will be called for every 8x8 block and can read & write from line 4-15 |
1576 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too | |
1577 * lines 4-12 will be read into the deblocking filter and should be deinterlaced | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1578 */ |
3099 | 1579 static inline void RENAME(deInterlaceInterpolateLinear)(uint8_t src[], int stride) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1580 { |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1581 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
2595 | 1582 src+= 4*stride; |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1583 asm volatile( |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1584 "leal (%0, %1), %%eax \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1585 "leal (%%eax, %1, 4), %%ebx \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1586 // 0 1 2 3 4 5 6 7 8 9 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1587 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1588 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1589 "movq (%0), %%mm0 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1590 "movq (%%eax, %1), %%mm1 \n\t" |
2246 | 1591 PAVGB(%%mm1, %%mm0) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1592 "movq %%mm0, (%%eax) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1593 "movq (%0, %1, 4), %%mm0 \n\t" |
2246 | 1594 PAVGB(%%mm0, %%mm1) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1595 "movq %%mm1, (%%eax, %1, 2) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1596 "movq (%%ebx, %1), %%mm1 \n\t" |
2246 | 1597 PAVGB(%%mm1, %%mm0) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1598 "movq %%mm0, (%%ebx) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1599 "movq (%0, %1, 8), %%mm0 \n\t" |
2246 | 1600 PAVGB(%%mm0, %%mm1) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1601 "movq %%mm1, (%%ebx, %1, 2) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1602 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1603 : : "r" (src), "r" (stride) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1604 : "%eax", "%ebx" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1605 ); |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1606 #else |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1607 int x; |
2595 | 1608 src+= 4*stride; |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1609 for(x=0; x<8; x++) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1610 { |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1611 src[stride] = (src[0] + src[stride*2])>>1; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1612 src[stride*3] = (src[stride*2] + src[stride*4])>>1; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1613 src[stride*5] = (src[stride*4] + src[stride*6])>>1; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1614 src[stride*7] = (src[stride*6] + src[stride*8])>>1; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1615 src++; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1616 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1617 #endif |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1618 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1619 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1620 /** |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1621 * Deinterlaces the given block |
2595 | 1622 * will be called for every 8x8 block and can read & write from line 4-15 |
1623 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too | |
1624 * lines 4-12 will be read into the deblocking filter and should be deinterlaced | |
1625 * this filter will read lines 3-15 and write 7-13 | |
2246 | 1626 * no cliping in C version |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1627 */ |
3099 | 1628 static inline void RENAME(deInterlaceInterpolateCubic)(uint8_t src[], int stride) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1629 { |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1630 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
2595 | 1631 src+= stride*3; |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1632 asm volatile( |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1633 "leal (%0, %1), %%eax \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1634 "leal (%%eax, %1, 4), %%ebx \n\t" |
2246 | 1635 "leal (%%ebx, %1, 4), %%ecx \n\t" |
1636 "addl %1, %%ecx \n\t" | |
1637 "pxor %%mm7, %%mm7 \n\t" | |
1638 // 0 1 2 3 4 5 6 7 8 9 10 | |
1639 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 ecx | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1640 |
2246 | 1641 #define DEINT_CUBIC(a,b,c,d,e)\ |
1642 "movq " #a ", %%mm0 \n\t"\ | |
1643 "movq " #b ", %%mm1 \n\t"\ | |
1644 "movq " #d ", %%mm2 \n\t"\ | |
1645 "movq " #e ", %%mm3 \n\t"\ | |
1646 PAVGB(%%mm2, %%mm1) /* (b+d) /2 */\ | |
1647 PAVGB(%%mm3, %%mm0) /* a(a+e) /2 */\ | |
1648 "movq %%mm0, %%mm2 \n\t"\ | |
1649 "punpcklbw %%mm7, %%mm0 \n\t"\ | |
1650 "punpckhbw %%mm7, %%mm2 \n\t"\ | |
1651 "movq %%mm1, %%mm3 \n\t"\ | |
1652 "punpcklbw %%mm7, %%mm1 \n\t"\ | |
1653 "punpckhbw %%mm7, %%mm3 \n\t"\ | |
1654 "psubw %%mm1, %%mm0 \n\t" /* L(a+e - (b+d))/2 */\ | |
1655 "psubw %%mm3, %%mm2 \n\t" /* H(a+e - (b+d))/2 */\ | |
1656 "psraw $3, %%mm0 \n\t" /* L(a+e - (b+d))/16 */\ | |
1657 "psraw $3, %%mm2 \n\t" /* H(a+e - (b+d))/16 */\ | |
1658 "psubw %%mm0, %%mm1 \n\t" /* L(9b + 9d - a - e)/16 */\ | |
1659 "psubw %%mm2, %%mm3 \n\t" /* H(9b + 9d - a - e)/16 */\ | |
1660 "packuswb %%mm3, %%mm1 \n\t"\ | |
1661 "movq %%mm1, " #c " \n\t" | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1662 |
2246 | 1663 DEINT_CUBIC((%0), (%%eax, %1), (%%eax, %1, 2), (%0, %1, 4), (%%ebx, %1)) |
1664 DEINT_CUBIC((%%eax, %1), (%0, %1, 4), (%%ebx), (%%ebx, %1), (%0, %1, 8)) | |
1665 DEINT_CUBIC((%0, %1, 4), (%%ebx, %1), (%%ebx, %1, 2), (%0, %1, 8), (%%ecx)) | |
1666 DEINT_CUBIC((%%ebx, %1), (%0, %1, 8), (%%ebx, %1, 4), (%%ecx), (%%ecx, %1, 2)) | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1667 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1668 : : "r" (src), "r" (stride) |
2246 | 1669 : "%eax", "%ebx", "ecx" |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1670 ); |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1671 #else |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1672 int x; |
2595 | 1673 src+= stride*3; |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1674 for(x=0; x<8; x++) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1675 { |
2246 | 1676 src[stride*3] = (-src[0] + 9*src[stride*2] + 9*src[stride*4] - src[stride*6])>>4; |
1677 src[stride*5] = (-src[stride*2] + 9*src[stride*4] + 9*src[stride*6] - src[stride*8])>>4; | |
1678 src[stride*7] = (-src[stride*4] + 9*src[stride*6] + 9*src[stride*8] - src[stride*10])>>4; | |
1679 src[stride*9] = (-src[stride*6] + 9*src[stride*8] + 9*src[stride*10] - src[stride*12])>>4; | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1680 src++; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1681 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1682 #endif |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1683 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1684 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1685 /** |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1686 * Deinterlaces the given block |
2595 | 1687 * will be called for every 8x8 block and can read & write from line 4-15 |
1688 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too | |
1689 * lines 4-12 will be read into the deblocking filter and should be deinterlaced | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1690 * will shift the image up by 1 line (FIXME if this is a problem) |
2595 | 1691 * this filter will read lines 4-13 and write 4-11 |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1692 */ |
3099 | 1693 static inline void RENAME(deInterlaceBlendLinear)(uint8_t src[], int stride) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1694 { |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1695 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
2595 | 1696 src+= 4*stride; |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1697 asm volatile( |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1698 "leal (%0, %1), %%eax \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1699 "leal (%%eax, %1, 4), %%ebx \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1700 // 0 1 2 3 4 5 6 7 8 9 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1701 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1702 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1703 "movq (%0), %%mm0 \n\t" // L0 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1704 "movq (%%eax, %1), %%mm1 \n\t" // L2 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1705 PAVGB(%%mm1, %%mm0) // L0+L2 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1706 "movq (%%eax), %%mm2 \n\t" // L1 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1707 PAVGB(%%mm2, %%mm0) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1708 "movq %%mm0, (%0) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1709 "movq (%%eax, %1, 2), %%mm0 \n\t" // L3 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1710 PAVGB(%%mm0, %%mm2) // L1+L3 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1711 PAVGB(%%mm1, %%mm2) // 2L2 + L1 + L3 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1712 "movq %%mm2, (%%eax) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1713 "movq (%0, %1, 4), %%mm2 \n\t" // L4 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1714 PAVGB(%%mm2, %%mm1) // L2+L4 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1715 PAVGB(%%mm0, %%mm1) // 2L3 + L2 + L4 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1716 "movq %%mm1, (%%eax, %1) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1717 "movq (%%ebx), %%mm1 \n\t" // L5 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1718 PAVGB(%%mm1, %%mm0) // L3+L5 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1719 PAVGB(%%mm2, %%mm0) // 2L4 + L3 + L5 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1720 "movq %%mm0, (%%eax, %1, 2) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1721 "movq (%%ebx, %1), %%mm0 \n\t" // L6 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1722 PAVGB(%%mm0, %%mm2) // L4+L6 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1723 PAVGB(%%mm1, %%mm2) // 2L5 + L4 + L6 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1724 "movq %%mm2, (%0, %1, 4) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1725 "movq (%%ebx, %1, 2), %%mm2 \n\t" // L7 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1726 PAVGB(%%mm2, %%mm1) // L5+L7 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1727 PAVGB(%%mm0, %%mm1) // 2L6 + L5 + L7 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1728 "movq %%mm1, (%%ebx) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1729 "movq (%0, %1, 8), %%mm1 \n\t" // L8 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1730 PAVGB(%%mm1, %%mm0) // L6+L8 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1731 PAVGB(%%mm2, %%mm0) // 2L7 + L6 + L8 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1732 "movq %%mm0, (%%ebx, %1) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1733 "movq (%%ebx, %1, 4), %%mm0 \n\t" // L9 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1734 PAVGB(%%mm0, %%mm2) // L7+L9 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1735 PAVGB(%%mm1, %%mm2) // 2L8 + L7 + L9 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1736 "movq %%mm2, (%%ebx, %1, 2) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1737 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1738 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1739 : : "r" (src), "r" (stride) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1740 : "%eax", "%ebx" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1741 ); |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1742 #else |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1743 int x; |
2595 | 1744 src+= 4*stride; |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1745 for(x=0; x<8; x++) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1746 { |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1747 src[0 ] = (src[0 ] + 2*src[stride ] + src[stride*2])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1748 src[stride ] = (src[stride ] + 2*src[stride*2] + src[stride*3])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1749 src[stride*2] = (src[stride*2] + 2*src[stride*3] + src[stride*4])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1750 src[stride*3] = (src[stride*3] + 2*src[stride*4] + src[stride*5])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1751 src[stride*4] = (src[stride*4] + 2*src[stride*5] + src[stride*6])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1752 src[stride*5] = (src[stride*5] + 2*src[stride*6] + src[stride*7])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1753 src[stride*6] = (src[stride*6] + 2*src[stride*7] + src[stride*8])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1754 src[stride*7] = (src[stride*7] + 2*src[stride*8] + src[stride*9])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1755 src++; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1756 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1757 #endif |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1758 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1759 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1760 /** |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1761 * Deinterlaces the given block |
2595 | 1762 * will be called for every 8x8 block and can read & write from line 4-15, |
1763 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too | |
1764 * lines 4-12 will be read into the deblocking filter and should be deinterlaced | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1765 */ |
3099 | 1766 static inline void RENAME(deInterlaceMedian)(uint8_t src[], int stride) |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1767 { |
2221 | 1768 #ifdef HAVE_MMX |
2595 | 1769 src+= 4*stride; |
2221 | 1770 #ifdef HAVE_MMX2 |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1771 asm volatile( |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1772 "leal (%0, %1), %%eax \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1773 "leal (%%eax, %1, 4), %%ebx \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1774 // 0 1 2 3 4 5 6 7 8 9 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1775 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1776 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1777 "movq (%0), %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1778 "movq (%%eax, %1), %%mm2 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1779 "movq (%%eax), %%mm1 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1780 "movq %%mm0, %%mm3 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1781 "pmaxub %%mm1, %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1782 "pminub %%mm3, %%mm1 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1783 "pmaxub %%mm2, %%mm1 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1784 "pminub %%mm1, %%mm0 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1785 "movq %%mm0, (%%eax) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1786 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1787 "movq (%0, %1, 4), %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1788 "movq (%%eax, %1, 2), %%mm1 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1789 "movq %%mm2, %%mm3 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1790 "pmaxub %%mm1, %%mm2 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1791 "pminub %%mm3, %%mm1 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1792 "pmaxub %%mm0, %%mm1 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1793 "pminub %%mm1, %%mm2 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1794 "movq %%mm2, (%%eax, %1, 2) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1795 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1796 "movq (%%ebx), %%mm2 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1797 "movq (%%ebx, %1), %%mm1 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1798 "movq %%mm2, %%mm3 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1799 "pmaxub %%mm0, %%mm2 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1800 "pminub %%mm3, %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1801 "pmaxub %%mm1, %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1802 "pminub %%mm0, %%mm2 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1803 "movq %%mm2, (%%ebx) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1804 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1805 "movq (%%ebx, %1, 2), %%mm2 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1806 "movq (%0, %1, 8), %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1807 "movq %%mm2, %%mm3 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1808 "pmaxub %%mm0, %%mm2 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1809 "pminub %%mm3, %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1810 "pmaxub %%mm1, %%mm0 \n\t" // |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1811 "pminub %%mm0, %%mm2 \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1812 "movq %%mm2, (%%ebx, %1, 2) \n\t" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1813 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1814 |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1815 : : "r" (src), "r" (stride) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1816 : "%eax", "%ebx" |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1817 ); |
2221 | 1818 |
1819 #else // MMX without MMX2 | |
1820 asm volatile( | |
1821 "leal (%0, %1), %%eax \n\t" | |
1822 "leal (%%eax, %1, 4), %%ebx \n\t" | |
1823 // 0 1 2 3 4 5 6 7 8 9 | |
1824 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 | |
1825 "pxor %%mm7, %%mm7 \n\t" | |
1826 | |
1827 #define MEDIAN(a,b,c)\ | |
1828 "movq " #a ", %%mm0 \n\t"\ | |
1829 "movq " #b ", %%mm2 \n\t"\ | |
1830 "movq " #c ", %%mm1 \n\t"\ | |
1831 "movq %%mm0, %%mm3 \n\t"\ | |
1832 "movq %%mm1, %%mm4 \n\t"\ | |
1833 "movq %%mm2, %%mm5 \n\t"\ | |
1834 "psubusb %%mm1, %%mm3 \n\t"\ | |
1835 "psubusb %%mm2, %%mm4 \n\t"\ | |
1836 "psubusb %%mm0, %%mm5 \n\t"\ | |
1837 "pcmpeqb %%mm7, %%mm3 \n\t"\ | |
1838 "pcmpeqb %%mm7, %%mm4 \n\t"\ | |
1839 "pcmpeqb %%mm7, %%mm5 \n\t"\ | |
1840 "movq %%mm3, %%mm6 \n\t"\ | |
1841 "pxor %%mm4, %%mm3 \n\t"\ | |
1842 "pxor %%mm5, %%mm4 \n\t"\ | |
1843 "pxor %%mm6, %%mm5 \n\t"\ | |
1844 "por %%mm3, %%mm1 \n\t"\ | |
1845 "por %%mm4, %%mm2 \n\t"\ | |
1846 "por %%mm5, %%mm0 \n\t"\ | |
1847 "pand %%mm2, %%mm0 \n\t"\ | |
1848 "pand %%mm1, %%mm0 \n\t"\ | |
1849 "movq %%mm0, " #b " \n\t" | |
1850 | |
1851 MEDIAN((%0), (%%eax), (%%eax, %1)) | |
1852 MEDIAN((%%eax, %1), (%%eax, %1, 2), (%0, %1, 4)) | |
1853 MEDIAN((%0, %1, 4), (%%ebx), (%%ebx, %1)) | |
1854 MEDIAN((%%ebx, %1), (%%ebx, %1, 2), (%0, %1, 8)) | |
1855 | |
1856 : : "r" (src), "r" (stride) | |
1857 : "%eax", "%ebx" | |
1858 ); | |
1859 #endif // MMX | |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1860 #else |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1861 //FIXME |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1862 int x; |
2595 | 1863 src+= 4*stride; |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1864 for(x=0; x<8; x++) |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1865 { |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1866 src[0 ] = (src[0 ] + 2*src[stride ] + src[stride*2])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1867 src[stride ] = (src[stride ] + 2*src[stride*2] + src[stride*3])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1868 src[stride*2] = (src[stride*2] + 2*src[stride*3] + src[stride*4])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1869 src[stride*3] = (src[stride*3] + 2*src[stride*4] + src[stride*5])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1870 src[stride*4] = (src[stride*4] + 2*src[stride*5] + src[stride*6])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1871 src[stride*5] = (src[stride*5] + 2*src[stride*6] + src[stride*7])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1872 src[stride*6] = (src[stride*6] + 2*src[stride*7] + src[stride*8])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1873 src[stride*7] = (src[stride*7] + 2*src[stride*8] + src[stride*9])>>2; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1874 src++; |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1875 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1876 #endif |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1877 } |
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
1878 |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
1879 #ifdef HAVE_MMX |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1880 /** |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1881 * transposes and shift the given 8x8 Block into dst1 and dst2 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1882 */ |
3099 | 1883 static inline void RENAME(transpose1)(uint8_t *dst1, uint8_t *dst2, uint8_t *src, int srcStride) |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1884 { |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1885 asm( |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1886 "leal (%0, %1), %%eax \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1887 "leal (%%eax, %1, 4), %%ebx \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1888 // 0 1 2 3 4 5 6 7 8 9 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1889 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1890 "movq (%0), %%mm0 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1891 "movq (%%eax), %%mm1 \n\t" // abcdefgh |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1892 "movq %%mm0, %%mm2 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1893 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1894 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1895 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1896 "movq (%%eax, %1), %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1897 "movq (%%eax, %1, 2), %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1898 "movq %%mm1, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1899 "punpcklbw %%mm3, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1900 "punpckhbw %%mm3, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1901 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1902 "movq %%mm0, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1903 "punpcklwd %%mm1, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1904 "punpckhwd %%mm1, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1905 "movq %%mm2, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1906 "punpcklwd %%mm4, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1907 "punpckhwd %%mm4, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1908 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1909 "movd %%mm0, 128(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1910 "psrlq $32, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1911 "movd %%mm0, 144(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1912 "movd %%mm3, 160(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1913 "psrlq $32, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1914 "movd %%mm3, 176(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1915 "movd %%mm3, 48(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1916 "movd %%mm2, 192(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1917 "movd %%mm2, 64(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1918 "psrlq $32, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1919 "movd %%mm2, 80(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1920 "movd %%mm1, 96(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1921 "psrlq $32, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1922 "movd %%mm1, 112(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1923 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1924 "movq (%0, %1, 4), %%mm0 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1925 "movq (%%ebx), %%mm1 \n\t" // abcdefgh |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1926 "movq %%mm0, %%mm2 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1927 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1928 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1929 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1930 "movq (%%ebx, %1), %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1931 "movq (%%ebx, %1, 2), %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1932 "movq %%mm1, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1933 "punpcklbw %%mm3, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1934 "punpckhbw %%mm3, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1935 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1936 "movq %%mm0, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1937 "punpcklwd %%mm1, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1938 "punpckhwd %%mm1, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1939 "movq %%mm2, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1940 "punpcklwd %%mm4, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1941 "punpckhwd %%mm4, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1942 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1943 "movd %%mm0, 132(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1944 "psrlq $32, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1945 "movd %%mm0, 148(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1946 "movd %%mm3, 164(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1947 "psrlq $32, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1948 "movd %%mm3, 180(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1949 "movd %%mm3, 52(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1950 "movd %%mm2, 196(%2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1951 "movd %%mm2, 68(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1952 "psrlq $32, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1953 "movd %%mm2, 84(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1954 "movd %%mm1, 100(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1955 "psrlq $32, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1956 "movd %%mm1, 116(%3) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1957 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1958 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1959 :: "r" (src), "r" (srcStride), "r" (dst1), "r" (dst2) |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1960 : "%eax", "%ebx" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1961 ); |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1962 } |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1963 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1964 /** |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1965 * transposes the given 8x8 block |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1966 */ |
3099 | 1967 static inline void RENAME(transpose2)(uint8_t *dst, int dstStride, uint8_t *src) |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1968 { |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1969 asm( |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1970 "leal (%0, %1), %%eax \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1971 "leal (%%eax, %1, 4), %%ebx \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1972 // 0 1 2 3 4 5 6 7 8 9 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1973 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1974 "movq (%2), %%mm0 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1975 "movq 16(%2), %%mm1 \n\t" // abcdefgh |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1976 "movq %%mm0, %%mm2 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1977 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1978 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1979 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1980 "movq 32(%2), %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1981 "movq 48(%2), %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1982 "movq %%mm1, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1983 "punpcklbw %%mm3, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1984 "punpckhbw %%mm3, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1985 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1986 "movq %%mm0, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1987 "punpcklwd %%mm1, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1988 "punpckhwd %%mm1, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1989 "movq %%mm2, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1990 "punpcklwd %%mm4, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1991 "punpckhwd %%mm4, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1992 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1993 "movd %%mm0, (%0) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1994 "psrlq $32, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1995 "movd %%mm0, (%%eax) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1996 "movd %%mm3, (%%eax, %1) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1997 "psrlq $32, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1998 "movd %%mm3, (%%eax, %1, 2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
1999 "movd %%mm2, (%0, %1, 4) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2000 "psrlq $32, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2001 "movd %%mm2, (%%ebx) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2002 "movd %%mm1, (%%ebx, %1) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2003 "psrlq $32, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2004 "movd %%mm1, (%%ebx, %1, 2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2005 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2006 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2007 "movq 64(%2), %%mm0 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2008 "movq 80(%2), %%mm1 \n\t" // abcdefgh |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2009 "movq %%mm0, %%mm2 \n\t" // 12345678 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2010 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2011 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2012 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2013 "movq 96(%2), %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2014 "movq 112(%2), %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2015 "movq %%mm1, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2016 "punpcklbw %%mm3, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2017 "punpckhbw %%mm3, %%mm4 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2018 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2019 "movq %%mm0, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2020 "punpcklwd %%mm1, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2021 "punpckhwd %%mm1, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2022 "movq %%mm2, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2023 "punpcklwd %%mm4, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2024 "punpckhwd %%mm4, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2025 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2026 "movd %%mm0, 4(%0) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2027 "psrlq $32, %%mm0 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2028 "movd %%mm0, 4(%%eax) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2029 "movd %%mm3, 4(%%eax, %1) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2030 "psrlq $32, %%mm3 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2031 "movd %%mm3, 4(%%eax, %1, 2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2032 "movd %%mm2, 4(%0, %1, 4) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2033 "psrlq $32, %%mm2 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2034 "movd %%mm2, 4(%%ebx) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2035 "movd %%mm1, 4(%%ebx, %1) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2036 "psrlq $32, %%mm1 \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2037 "movd %%mm1, 4(%%ebx, %1, 2) \n\t" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2038 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2039 :: "r" (dst), "r" (dstStride), "r" (src) |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2040 : "%eax", "%ebx" |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2041 ); |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2042 } |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2043 #endif |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2044 //static int test=0; |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2045 |
3099 | 2046 static void inline RENAME(tempNoiseReducer)(uint8_t *src, int stride, |
2899 | 2047 uint8_t *tempBlured, uint32_t *tempBluredPast, int *maxNoise) |
2860 | 2048 { |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2049 #define FAST_L2_DIFF |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2050 //#define L1_DIFF //u should change the thresholds too if u try that one |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2051 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2052 asm volatile( |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2053 "leal (%2, %2, 2), %%eax \n\t" // 3*stride |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2054 "leal (%2, %2, 4), %%ebx \n\t" // 5*stride |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2055 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2056 // 0 1 2 3 4 5 6 7 8 9 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2057 // %x %x+%2 %x+2%2 %x+eax %x+4%2 %x+ebx %x+2eax %x+ecx %x+8%2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2058 //FIXME reorder? |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2059 #ifdef L1_DIFF //needs mmx2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2060 "movq (%0), %%mm0 \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2061 "psadbw (%1), %%mm0 \n\t" // |L0-R0| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2062 "movq (%0, %2), %%mm1 \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2063 "psadbw (%1, %2), %%mm1 \n\t" // |L1-R1| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2064 "movq (%0, %2, 2), %%mm2 \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2065 "psadbw (%1, %2, 2), %%mm2 \n\t" // |L2-R2| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2066 "movq (%0, %%eax), %%mm3 \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2067 "psadbw (%1, %%eax), %%mm3 \n\t" // |L3-R3| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2068 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2069 "movq (%0, %2, 4), %%mm4 \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2070 "paddw %%mm1, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2071 "psadbw (%1, %2, 4), %%mm4 \n\t" // |L4-R4| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2072 "movq (%0, %%ebx), %%mm5 \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2073 "paddw %%mm2, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2074 "psadbw (%1, %%ebx), %%mm5 \n\t" // |L5-R5| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2075 "movq (%0, %%eax, 2), %%mm6 \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2076 "paddw %%mm3, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2077 "psadbw (%1, %%eax, 2), %%mm6 \n\t" // |L6-R6| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2078 "movq (%0, %%ecx), %%mm7 \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2079 "paddw %%mm4, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2080 "psadbw (%1, %%ecx), %%mm7 \n\t" // |L7-R7| |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2081 "paddw %%mm5, %%mm6 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2082 "paddw %%mm7, %%mm6 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2083 "paddw %%mm6, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2084 #elif defined (FAST_L2_DIFF) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2085 "pcmpeqb %%mm7, %%mm7 \n\t" |
4248 | 2086 "movq "MANGLE(b80)", %%mm6 \n\t" |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2087 "pxor %%mm0, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2088 #define L2_DIFF_CORE(a, b)\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2089 "movq " #a ", %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2090 "movq " #b ", %%mm2 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2091 "pxor %%mm7, %%mm2 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2092 PAVGB(%%mm2, %%mm5)\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2093 "paddb %%mm6, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2094 "movq %%mm5, %%mm2 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2095 "psllw $8, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2096 "pmaddwd %%mm5, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2097 "pmaddwd %%mm2, %%mm2 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2098 "paddd %%mm2, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2099 "psrld $14, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2100 "paddd %%mm5, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2101 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2102 L2_DIFF_CORE((%0), (%1)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2103 L2_DIFF_CORE((%0, %2), (%1, %2)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2104 L2_DIFF_CORE((%0, %2, 2), (%1, %2, 2)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2105 L2_DIFF_CORE((%0, %%eax), (%1, %%eax)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2106 L2_DIFF_CORE((%0, %2, 4), (%1, %2, 4)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2107 L2_DIFF_CORE((%0, %%ebx), (%1, %%ebx)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2108 L2_DIFF_CORE((%0, %%eax,2), (%1, %%eax,2)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2109 L2_DIFF_CORE((%0, %%ecx), (%1, %%ecx)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2110 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2111 #else |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2112 "pxor %%mm7, %%mm7 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2113 "pxor %%mm0, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2114 #define L2_DIFF_CORE(a, b)\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2115 "movq " #a ", %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2116 "movq " #b ", %%mm2 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2117 "movq %%mm5, %%mm1 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2118 "movq %%mm2, %%mm3 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2119 "punpcklbw %%mm7, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2120 "punpckhbw %%mm7, %%mm1 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2121 "punpcklbw %%mm7, %%mm2 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2122 "punpckhbw %%mm7, %%mm3 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2123 "psubw %%mm2, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2124 "psubw %%mm3, %%mm1 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2125 "pmaddwd %%mm5, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2126 "pmaddwd %%mm1, %%mm1 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2127 "paddd %%mm1, %%mm5 \n\t"\ |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2128 "paddd %%mm5, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2129 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2130 L2_DIFF_CORE((%0), (%1)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2131 L2_DIFF_CORE((%0, %2), (%1, %2)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2132 L2_DIFF_CORE((%0, %2, 2), (%1, %2, 2)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2133 L2_DIFF_CORE((%0, %%eax), (%1, %%eax)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2134 L2_DIFF_CORE((%0, %2, 4), (%1, %2, 4)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2135 L2_DIFF_CORE((%0, %%ebx), (%1, %%ebx)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2136 L2_DIFF_CORE((%0, %%eax,2), (%1, %%eax,2)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2137 L2_DIFF_CORE((%0, %%ecx), (%1, %%ecx)) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2138 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2139 #endif |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2140 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2141 "movq %%mm0, %%mm4 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2142 "psrlq $32, %%mm0 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2143 "paddd %%mm0, %%mm4 \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2144 "movd %%mm4, %%ecx \n\t" |
2899 | 2145 "shll $2, %%ecx \n\t" |
2146 "movl %3, %%ebx \n\t" | |
2147 "addl -4(%%ebx), %%ecx \n\t" | |
2148 "addl 4(%%ebx), %%ecx \n\t" | |
2149 "addl -1024(%%ebx), %%ecx \n\t" | |
2150 "addl $4, %%ecx \n\t" | |
2151 "addl 1024(%%ebx), %%ecx \n\t" | |
2152 "shrl $3, %%ecx \n\t" | |
2153 "movl %%ecx, (%%ebx) \n\t" | |
2154 "leal (%%eax, %2, 2), %%ebx \n\t" // 5*stride | |
2155 | |
4248 | 2156 // "movl %3, %%ecx \n\t" |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2157 // "movl %%ecx, test \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2158 // "jmp 4f \n\t" |
4248 | 2159 "cmpl 4+"MANGLE(maxTmpNoise)", %%ecx \n\t" |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2160 " jb 2f \n\t" |
4248 | 2161 "cmpl 8+"MANGLE(maxTmpNoise)", %%ecx \n\t" |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2162 " jb 1f \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2163 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2164 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2165 "movq (%0), %%mm0 \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2166 "movq (%0, %2), %%mm1 \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2167 "movq (%0, %2, 2), %%mm2 \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2168 "movq (%0, %%eax), %%mm3 \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2169 "movq (%0, %2, 4), %%mm4 \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2170 "movq (%0, %%ebx), %%mm5 \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2171 "movq (%0, %%eax, 2), %%mm6 \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2172 "movq (%0, %%ecx), %%mm7 \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2173 "movq %%mm0, (%1) \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2174 "movq %%mm1, (%1, %2) \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2175 "movq %%mm2, (%1, %2, 2) \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2176 "movq %%mm3, (%1, %%eax) \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2177 "movq %%mm4, (%1, %2, 4) \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2178 "movq %%mm5, (%1, %%ebx) \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2179 "movq %%mm6, (%1, %%eax, 2) \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2180 "movq %%mm7, (%1, %%ecx) \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2181 "jmp 4f \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2182 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2183 "1: \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2184 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2185 "movq (%0), %%mm0 \n\t" // L0 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2186 PAVGB((%1), %%mm0) // L0 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2187 "movq (%0, %2), %%mm1 \n\t" // L1 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2188 PAVGB((%1, %2), %%mm1) // L1 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2189 "movq (%0, %2, 2), %%mm2 \n\t" // L2 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2190 PAVGB((%1, %2, 2), %%mm2) // L2 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2191 "movq (%0, %%eax), %%mm3 \n\t" // L3 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2192 PAVGB((%1, %%eax), %%mm3) // L3 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2193 "movq (%0, %2, 4), %%mm4 \n\t" // L4 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2194 PAVGB((%1, %2, 4), %%mm4) // L4 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2195 "movq (%0, %%ebx), %%mm5 \n\t" // L5 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2196 PAVGB((%1, %%ebx), %%mm5) // L5 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2197 "movq (%0, %%eax, 2), %%mm6 \n\t" // L6 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2198 PAVGB((%1, %%eax, 2), %%mm6) // L6 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2199 "movq (%0, %%ecx), %%mm7 \n\t" // L7 |
5980
3b078401d610
3dnow temporal denoiser bugfix by R«±mi Guyomarch <rguyom@pobox.com>
michael
parents:
5787
diff
changeset
|
2200 PAVGB((%1, %%ecx), %%mm7) // L7 |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2201 "movq %%mm0, (%1) \n\t" // R0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2202 "movq %%mm1, (%1, %2) \n\t" // R1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2203 "movq %%mm2, (%1, %2, 2) \n\t" // R2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2204 "movq %%mm3, (%1, %%eax) \n\t" // R3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2205 "movq %%mm4, (%1, %2, 4) \n\t" // R4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2206 "movq %%mm5, (%1, %%ebx) \n\t" // R5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2207 "movq %%mm6, (%1, %%eax, 2) \n\t" // R6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2208 "movq %%mm7, (%1, %%ecx) \n\t" // R7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2209 "movq %%mm0, (%0) \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2210 "movq %%mm1, (%0, %2) \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2211 "movq %%mm2, (%0, %2, 2) \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2212 "movq %%mm3, (%0, %%eax) \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2213 "movq %%mm4, (%0, %2, 4) \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2214 "movq %%mm5, (%0, %%ebx) \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2215 "movq %%mm6, (%0, %%eax, 2) \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2216 "movq %%mm7, (%0, %%ecx) \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2217 "jmp 4f \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2218 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2219 "2: \n\t" |
4248 | 2220 "cmpl "MANGLE(maxTmpNoise)", %%ecx \n\t" |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2221 " jb 3f \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2222 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2223 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2224 "movq (%0), %%mm0 \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2225 "movq (%0, %2), %%mm1 \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2226 "movq (%0, %2, 2), %%mm2 \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2227 "movq (%0, %%eax), %%mm3 \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2228 "movq (%1), %%mm4 \n\t" // R0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2229 "movq (%1, %2), %%mm5 \n\t" // R1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2230 "movq (%1, %2, 2), %%mm6 \n\t" // R2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2231 "movq (%1, %%eax), %%mm7 \n\t" // R3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2232 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2233 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2234 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2235 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2236 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2237 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2238 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2239 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2240 "movq %%mm0, (%1) \n\t" // R0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2241 "movq %%mm1, (%1, %2) \n\t" // R1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2242 "movq %%mm2, (%1, %2, 2) \n\t" // R2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2243 "movq %%mm3, (%1, %%eax) \n\t" // R3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2244 "movq %%mm0, (%0) \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2245 "movq %%mm1, (%0, %2) \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2246 "movq %%mm2, (%0, %2, 2) \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2247 "movq %%mm3, (%0, %%eax) \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2248 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2249 "movq (%0, %2, 4), %%mm0 \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2250 "movq (%0, %%ebx), %%mm1 \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2251 "movq (%0, %%eax, 2), %%mm2 \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2252 "movq (%0, %%ecx), %%mm3 \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2253 "movq (%1, %2, 4), %%mm4 \n\t" // R4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2254 "movq (%1, %%ebx), %%mm5 \n\t" // R5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2255 "movq (%1, %%eax, 2), %%mm6 \n\t" // R6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2256 "movq (%1, %%ecx), %%mm7 \n\t" // R7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2257 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2258 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2259 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2260 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2261 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2262 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2263 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2264 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2265 "movq %%mm0, (%1, %2, 4) \n\t" // R4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2266 "movq %%mm1, (%1, %%ebx) \n\t" // R5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2267 "movq %%mm2, (%1, %%eax, 2) \n\t" // R6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2268 "movq %%mm3, (%1, %%ecx) \n\t" // R7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2269 "movq %%mm0, (%0, %2, 4) \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2270 "movq %%mm1, (%0, %%ebx) \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2271 "movq %%mm2, (%0, %%eax, 2) \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2272 "movq %%mm3, (%0, %%ecx) \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2273 "jmp 4f \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2274 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2275 "3: \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2276 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2277 "movq (%0), %%mm0 \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2278 "movq (%0, %2), %%mm1 \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2279 "movq (%0, %2, 2), %%mm2 \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2280 "movq (%0, %%eax), %%mm3 \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2281 "movq (%1), %%mm4 \n\t" // R0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2282 "movq (%1, %2), %%mm5 \n\t" // R1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2283 "movq (%1, %2, 2), %%mm6 \n\t" // R2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2284 "movq (%1, %%eax), %%mm7 \n\t" // R3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2285 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2286 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2287 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2288 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2289 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2290 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2291 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2292 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2293 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2294 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2295 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2296 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2297 "movq %%mm0, (%1) \n\t" // R0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2298 "movq %%mm1, (%1, %2) \n\t" // R1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2299 "movq %%mm2, (%1, %2, 2) \n\t" // R2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2300 "movq %%mm3, (%1, %%eax) \n\t" // R3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2301 "movq %%mm0, (%0) \n\t" // L0 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2302 "movq %%mm1, (%0, %2) \n\t" // L1 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2303 "movq %%mm2, (%0, %2, 2) \n\t" // L2 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2304 "movq %%mm3, (%0, %%eax) \n\t" // L3 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2305 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2306 "movq (%0, %2, 4), %%mm0 \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2307 "movq (%0, %%ebx), %%mm1 \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2308 "movq (%0, %%eax, 2), %%mm2 \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2309 "movq (%0, %%ecx), %%mm3 \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2310 "movq (%1, %2, 4), %%mm4 \n\t" // R4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2311 "movq (%1, %%ebx), %%mm5 \n\t" // R5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2312 "movq (%1, %%eax, 2), %%mm6 \n\t" // R6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2313 "movq (%1, %%ecx), %%mm7 \n\t" // R7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2314 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2315 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2316 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2317 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2318 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2319 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2320 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2321 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2322 PAVGB(%%mm4, %%mm0) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2323 PAVGB(%%mm5, %%mm1) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2324 PAVGB(%%mm6, %%mm2) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2325 PAVGB(%%mm7, %%mm3) |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2326 "movq %%mm0, (%1, %2, 4) \n\t" // R4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2327 "movq %%mm1, (%1, %%ebx) \n\t" // R5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2328 "movq %%mm2, (%1, %%eax, 2) \n\t" // R6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2329 "movq %%mm3, (%1, %%ecx) \n\t" // R7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2330 "movq %%mm0, (%0, %2, 4) \n\t" // L4 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2331 "movq %%mm1, (%0, %%ebx) \n\t" // L5 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2332 "movq %%mm2, (%0, %%eax, 2) \n\t" // L6 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2333 "movq %%mm3, (%0, %%ecx) \n\t" // L7 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2334 |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2335 "4: \n\t" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2336 |
2899 | 2337 :: "r" (src), "r" (tempBlured), "r"(stride), "m" (tempBluredPast) |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2338 : "%eax", "%ebx", "%ecx", "memory" |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2339 ); |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2340 //printf("%d\n", test); |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2341 #else |
2860 | 2342 int y; |
2343 int d=0; | |
2344 int sysd=0; | |
2899 | 2345 int i; |
2860 | 2346 |
2347 for(y=0; y<8; y++) | |
2348 { | |
2349 int x; | |
2350 for(x=0; x<8; x++) | |
2351 { | |
2352 int ref= tempBlured[ x + y*stride ]; | |
2353 int cur= src[ x + y*stride ]; | |
2354 int d1=ref - cur; | |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2355 // if(x==0 || x==7) d1+= d1>>1; |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2356 // if(y==0 || y==7) d1+= d1>>1; |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2357 // d+= ABS(d1); |
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2358 d+= d1*d1; |
2860 | 2359 sysd+= d1; |
2360 } | |
2361 } | |
2899 | 2362 i=d; |
2363 d= ( | |
2364 4*d | |
2365 +(*(tempBluredPast-256)) | |
2366 +(*(tempBluredPast-1))+ (*(tempBluredPast+1)) | |
2367 +(*(tempBluredPast+256)) | |
2368 +4)>>3; | |
2369 *tempBluredPast=i; | |
2370 // ((*tempBluredPast)*3 + d + 2)>>2; | |
2371 | |
2860 | 2372 //printf("%d %d %d\n", maxNoise[0], maxNoise[1], maxNoise[2]); |
2373 /* | |
2374 Switch between | |
2375 1 0 0 0 0 0 0 (0) | |
2376 64 32 16 8 4 2 1 (1) | |
2377 64 48 36 27 20 15 11 (33) (approx) | |
2378 64 56 49 43 37 33 29 (200) (approx) | |
2379 */ | |
2380 if(d > maxNoise[1]) | |
2381 { | |
2382 if(d < maxNoise[2]) | |
2383 { | |
2384 for(y=0; y<8; y++) | |
2385 { | |
2386 int x; | |
2387 for(x=0; x<8; x++) | |
2388 { | |
2389 int ref= tempBlured[ x + y*stride ]; | |
2390 int cur= src[ x + y*stride ]; | |
2391 tempBlured[ x + y*stride ]= | |
2392 src[ x + y*stride ]= | |
2393 (ref + cur + 1)>>1; | |
2394 } | |
2395 } | |
2396 } | |
2397 else | |
2398 { | |
2399 for(y=0; y<8; y++) | |
2400 { | |
2401 int x; | |
2402 for(x=0; x<8; x++) | |
2403 { | |
2404 tempBlured[ x + y*stride ]= src[ x + y*stride ]; | |
2405 } | |
2406 } | |
2407 } | |
2408 } | |
2409 else | |
2410 { | |
2411 if(d < maxNoise[0]) | |
2412 { | |
2413 for(y=0; y<8; y++) | |
2414 { | |
2415 int x; | |
2416 for(x=0; x<8; x++) | |
2417 { | |
2418 int ref= tempBlured[ x + y*stride ]; | |
2419 int cur= src[ x + y*stride ]; | |
2420 tempBlured[ x + y*stride ]= | |
2421 src[ x + y*stride ]= | |
2422 (ref*7 + cur + 4)>>3; | |
2423 } | |
2424 } | |
2425 } | |
2426 else | |
2427 { | |
2428 for(y=0; y<8; y++) | |
2429 { | |
2430 int x; | |
2431 for(x=0; x<8; x++) | |
2432 { | |
2433 int ref= tempBlured[ x + y*stride ]; | |
2434 int cur= src[ x + y*stride ]; | |
2435 tempBlured[ x + y*stride ]= | |
2436 src[ x + y*stride ]= | |
2437 (ref*3 + cur + 2)>>2; | |
2438 } | |
2439 } | |
2440 } | |
2441 } | |
2895
dd3fabd01df0
temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents:
2860
diff
changeset
|
2442 #endif |
2860 | 2443 } |
2444 | |
3099 | 2445 static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height, |
2860 | 2446 QP_STORE_T QPs[], int QPStride, int isColor, struct PPMode *ppMode); |
2159 | 2447 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2448 /** |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2449 * Copies a block from src to dst and fixes the blacklevel |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2450 * levelFix == 0 -> dont touch the brighness & contrast |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2451 */ |
3099 | 2452 static inline void RENAME(blockCopy)(uint8_t dst[], int dstStride, uint8_t src[], int srcStride, |
3031 | 2453 int levelFix) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2454 { |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2455 #ifndef HAVE_MMX |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2456 int i; |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2457 #endif |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2458 if(levelFix) |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2459 { |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2460 #ifdef HAVE_MMX |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2461 asm volatile( |
3037 | 2462 "leal (%0,%2), %%eax \n\t" |
2463 "leal (%1,%3), %%ebx \n\t" | |
4248 | 2464 "movq "MANGLE(packedYOffset)", %%mm2\n\t" |
2465 "movq "MANGLE(packedYScale)", %%mm3\n\t" | |
2181
d90f8fc7ead6
fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents:
2180
diff
changeset
|
2466 "pxor %%mm4, %%mm4 \n\t" |
3171 | 2467 #ifdef HAVE_MMX2 |
2468 #define SCALED_CPY(src1, src2, dst1, dst2) \ | |
2469 "movq " #src1 ", %%mm0 \n\t"\ | |
2470 "movq " #src1 ", %%mm5 \n\t"\ | |
2471 "movq " #src2 ", %%mm1 \n\t"\ | |
2472 "movq " #src2 ", %%mm6 \n\t"\ | |
2473 "punpcklbw %%mm0, %%mm0 \n\t"\ | |
2474 "punpckhbw %%mm5, %%mm5 \n\t"\ | |
2475 "punpcklbw %%mm1, %%mm1 \n\t"\ | |
2476 "punpckhbw %%mm6, %%mm6 \n\t"\ | |
2477 "pmulhuw %%mm3, %%mm0 \n\t"\ | |
2478 "pmulhuw %%mm3, %%mm5 \n\t"\ | |
2479 "pmulhuw %%mm3, %%mm1 \n\t"\ | |
2480 "pmulhuw %%mm3, %%mm6 \n\t"\ | |
2481 "psubw %%mm2, %%mm0 \n\t"\ | |
2482 "psubw %%mm2, %%mm5 \n\t"\ | |
2483 "psubw %%mm2, %%mm1 \n\t"\ | |
2484 "psubw %%mm2, %%mm6 \n\t"\ | |
2485 "packuswb %%mm5, %%mm0 \n\t"\ | |
2486 "packuswb %%mm6, %%mm1 \n\t"\ | |
2487 "movq %%mm0, " #dst1 " \n\t"\ | |
2488 "movq %%mm1, " #dst2 " \n\t"\ | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2489 |
3171 | 2490 #else //HAVE_MMX2 |
3037 | 2491 #define SCALED_CPY(src1, src2, dst1, dst2) \ |
2492 "movq " #src1 ", %%mm0 \n\t"\ | |
2493 "movq " #src1 ", %%mm5 \n\t"\ | |
2181
d90f8fc7ead6
fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents:
2180
diff
changeset
|
2494 "punpcklbw %%mm4, %%mm0 \n\t"\ |
d90f8fc7ead6
fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents:
2180
diff
changeset
|
2495 "punpckhbw %%mm4, %%mm5 \n\t"\ |
2394 | 2496 "psubw %%mm2, %%mm0 \n\t"\ |
2497 "psubw %%mm2, %%mm5 \n\t"\ | |
3037 | 2498 "movq " #src2 ", %%mm1 \n\t"\ |
2394 | 2499 "psllw $6, %%mm0 \n\t"\ |
2500 "psllw $6, %%mm5 \n\t"\ | |
2181
d90f8fc7ead6
fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents:
2180
diff
changeset
|
2501 "pmulhw %%mm3, %%mm0 \n\t"\ |
3037 | 2502 "movq " #src2 ", %%mm6 \n\t"\ |
2181
d90f8fc7ead6
fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents:
2180
diff
changeset
|
2503 "pmulhw %%mm3, %%mm5 \n\t"\ |
d90f8fc7ead6
fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents:
2180
diff
changeset
|
2504 "punpcklbw %%mm4, %%mm1 \n\t"\ |
2401
bc69d7c0e1dc
brightness / contrast fix/copy optimizations +2% speedup
michael
parents:
2394
diff
changeset
|
2505 "punpckhbw %%mm4, %%mm6 \n\t"\ |
2394 | 2506 "psubw %%mm2, %%mm1 \n\t"\ |
2401
bc69d7c0e1dc
brightness / contrast fix/copy optimizations +2% speedup
michael
parents:
2394
diff
changeset
|
2507 "psubw %%mm2, %%mm6 \n\t"\ |
2394 | 2508 "psllw $6, %%mm1 \n\t"\ |
2401
bc69d7c0e1dc
brightness / contrast fix/copy optimizations +2% speedup
michael
parents:
2394
diff
changeset
|
2509 "psllw $6, %%mm6 \n\t"\ |
2181
d90f8fc7ead6
fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents:
2180
diff
changeset
|
2510 "pmulhw %%mm3, %%mm1 \n\t"\ |
2401
bc69d7c0e1dc
brightness / contrast fix/copy optimizations +2% speedup
michael
parents:
2394
diff
changeset
|
2511 "pmulhw %%mm3, %%mm6 \n\t"\ |
bc69d7c0e1dc
brightness / contrast fix/copy optimizations +2% speedup
michael
parents:
2394
diff
changeset
|
2512 "packuswb %%mm5, %%mm0 \n\t"\ |
bc69d7c0e1dc
brightness / contrast fix/copy optimizations +2% speedup
michael
parents:
2394
diff
changeset
|
2513 "packuswb %%mm6, %%mm1 \n\t"\ |
3037 | 2514 "movq %%mm0, " #dst1 " \n\t"\ |
2515 "movq %%mm1, " #dst2 " \n\t"\ | |
2516 | |
3171 | 2517 #endif //!HAVE_MMX2 |
2518 | |
3037 | 2519 SCALED_CPY((%0) , (%0, %2) , (%1) , (%1, %3)) |
2520 SCALED_CPY((%0, %2, 2), (%%eax, %2, 2), (%1, %3, 2), (%%ebx, %3, 2)) | |
2521 SCALED_CPY((%0, %2, 4), (%%eax, %2, 4), (%1, %3, 4), (%%ebx, %3, 4)) | |
2522 "leal (%%eax,%2,4), %%eax \n\t" | |
2523 "leal (%%ebx,%3,4), %%ebx \n\t" | |
2524 SCALED_CPY((%%eax, %2), (%%eax, %2, 2), (%%ebx, %3), (%%ebx, %3, 2)) | |
2525 | |
2526 | |
2527 : : "r"(src), | |
2528 "r"(dst), | |
2529 "r" (srcStride), | |
2401
bc69d7c0e1dc
brightness / contrast fix/copy optimizations +2% speedup
michael
parents:
2394
diff
changeset
|
2530 "r" (dstStride) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2531 : "%eax", "%ebx" |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2532 ); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2533 #else |
3031 | 2534 for(i=0; i<8; i++) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2535 memcpy( &(dst[dstStride*i]), |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2536 &(src[srcStride*i]), BLOCK_SIZE); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2537 #endif |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2538 } |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2539 else |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2540 { |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2541 #ifdef HAVE_MMX |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2542 asm volatile( |
3037 | 2543 "leal (%0,%2), %%eax \n\t" |
2544 "leal (%1,%3), %%ebx \n\t" | |
2545 | |
2546 #define SIMPLE_CPY(src1, src2, dst1, dst2) \ | |
2547 "movq " #src1 ", %%mm0 \n\t"\ | |
2548 "movq " #src2 ", %%mm1 \n\t"\ | |
2549 "movq %%mm0, " #dst1 " \n\t"\ | |
2550 "movq %%mm1, " #dst2 " \n\t"\ | |
2551 | |
2552 SIMPLE_CPY((%0) , (%0, %2) , (%1) , (%1, %3)) | |
2553 SIMPLE_CPY((%0, %2, 2), (%%eax, %2, 2), (%1, %3, 2), (%%ebx, %3, 2)) | |
2554 SIMPLE_CPY((%0, %2, 4), (%%eax, %2, 4), (%1, %3, 4), (%%ebx, %3, 4)) | |
2555 "leal (%%eax,%2,4), %%eax \n\t" | |
2556 "leal (%%ebx,%3,4), %%ebx \n\t" | |
2557 SIMPLE_CPY((%%eax, %2), (%%eax, %2, 2), (%%ebx, %3), (%%ebx, %3, 2)) | |
2558 | |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2559 : : "r" (src), |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2560 "r" (dst), |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2561 "r" (srcStride), |
3031 | 2562 "r" (dstStride) |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2563 : "%eax", "%ebx" |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2564 ); |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2565 #else |
3031 | 2566 for(i=0; i<8; i++) |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2567 memcpy( &(dst[dstStride*i]), |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2568 &(src[srcStride*i]), BLOCK_SIZE); |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2569 #endif |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2570 } |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2571 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2572 |
4403 | 2573 /** |
2574 * Duplicates the given 8 src pixels ? times upward | |
2575 */ | |
2576 static inline void RENAME(duplicate)(uint8_t src[], int stride) | |
2577 { | |
2578 #ifdef HAVE_MMX | |
2579 asm volatile( | |
2580 "movq (%0), %%mm0 \n\t" | |
2581 "addl %1, %0 \n\t" | |
2582 "movq %%mm0, (%0) \n\t" | |
2583 "movq %%mm0, (%0, %1) \n\t" | |
2584 "movq %%mm0, (%0, %1, 2) \n\t" | |
2585 : "+r" (src) | |
2586 : "r" (-stride) | |
2587 ); | |
2588 #else | |
2589 int i; | |
2590 uint8_t *p=src; | |
2591 for(i=0; i<3; i++) | |
2592 { | |
2593 p-= stride; | |
2594 memcpy(p, src, 8); | |
2595 } | |
2596 #endif | |
2597 } | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2598 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2599 /** |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2600 * Filters array of bytes (Y or U or V values) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2601 */ |
3099 | 2602 static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height, |
2860 | 2603 QP_STORE_T QPs[], int QPStride, int isColor, struct PPMode *ppMode) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2604 { |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2605 int x,y; |
3154
b2e24fec97bc
compiletime pp-mode support (luminance = chrominance filters though) 1-2% faster with -benchmark -vo null -nosound
michael
parents:
3099
diff
changeset
|
2606 #ifdef COMPILE_TIME_MODE |
b2e24fec97bc
compiletime pp-mode support (luminance = chrominance filters though) 1-2% faster with -benchmark -vo null -nosound
michael
parents:
3099
diff
changeset
|
2607 const int mode= COMPILE_TIME_MODE; |
b2e24fec97bc
compiletime pp-mode support (luminance = chrominance filters though) 1-2% faster with -benchmark -vo null -nosound
michael
parents:
3099
diff
changeset
|
2608 #else |
2860 | 2609 const int mode= isColor ? ppMode->chromMode : ppMode->lumMode; |
3154
b2e24fec97bc
compiletime pp-mode support (luminance = chrominance filters though) 1-2% faster with -benchmark -vo null -nosound
michael
parents:
3099
diff
changeset
|
2610 #endif |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2611 /* we need 64bit here otherwise we´ll going to have a problem |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2612 after watching a black picture for 5 hours*/ |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2613 static uint64_t *yHistogram= NULL; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2614 int black=0, white=255; // blackest black and whitest white in the picture |
4399 | 2615 int QPCorrecture= 256*256; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2616 |
2246 | 2617 /* Temporary buffers for handling the last row(s) */ |
2618 static uint8_t *tempDst= NULL; | |
2619 static uint8_t *tempSrc= NULL; | |
2620 | |
2285 | 2621 /* Temporary buffers for handling the last block */ |
2622 static uint8_t *tempDstBlock= NULL; | |
2623 static uint8_t *tempSrcBlock= NULL; | |
2624 | |
2860 | 2625 /* Temporal noise reducing buffers */ |
2626 static uint8_t *tempBlured[3]= {NULL,NULL,NULL}; | |
2899 | 2627 static uint32_t *tempBluredPast[3]= {NULL,NULL,NULL}; |
2860 | 2628 |
3031 | 2629 int copyAhead; |
2630 | |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2631 #ifdef PP_FUNNY_STRIDE |
2285 | 2632 uint8_t *dstBlockPtrBackup; |
2633 uint8_t *srcBlockPtrBackup; | |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2634 #endif |
2285 | 2635 |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2636 #ifdef MORE_TIMING |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2637 long long T0, T1, diffTime=0; |
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2638 #endif |
2221 | 2639 #ifdef TIMING |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
2640 long long memcpyTime=0, vertTime=0, horizTime=0, sumTime; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2641 sumTime= rdtsc(); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2642 #endif |
3832
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2643 dcOffset= ppMode->maxDcDiff; |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2644 dcThreshold= ppMode->maxDcDiff*2 + 1; |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2645 |
2899 | 2646 #ifdef HAVE_MMX |
2647 maxTmpNoise[0]= ppMode->maxTmpNoise[0]; | |
2648 maxTmpNoise[1]= ppMode->maxTmpNoise[1]; | |
2649 maxTmpNoise[2]= ppMode->maxTmpNoise[2]; | |
3832
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2650 |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2651 mmxDCOffset= 0x7F - dcOffset; |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2652 mmxDCThreshold= 0x7F - dcThreshold; |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2653 |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2654 mmxDCOffset*= 0x0101010101010101LL; |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2655 mmxDCThreshold*= 0x0101010101010101LL; |
2899 | 2656 #endif |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2657 |
3031 | 2658 if(mode & CUBIC_IPOL_DEINT_FILTER) copyAhead=16; |
2659 else if(mode & LINEAR_BLEND_DEINT_FILTER) copyAhead=14; | |
2660 else if( (mode & V_DEBLOCK) | |
2661 || (mode & LINEAR_IPOL_DEINT_FILTER) | |
2662 || (mode & MEDIAN_DEINT_FILTER)) copyAhead=13; | |
2663 else if(mode & V_X1_FILTER) copyAhead=11; | |
2664 else if(mode & V_RK1_FILTER) copyAhead=10; | |
2665 else if(mode & DERING) copyAhead=9; | |
2666 else copyAhead=8; | |
2667 | |
2668 copyAhead-= 8; | |
2669 | |
2246 | 2670 if(tempDst==NULL) |
2671 { | |
2672 tempDst= (uint8_t*)memalign(8, 1024*24); | |
2673 tempSrc= (uint8_t*)memalign(8, 1024*24); | |
2285 | 2674 tempDstBlock= (uint8_t*)memalign(8, 1024*24); |
2675 tempSrcBlock= (uint8_t*)memalign(8, 1024*24); | |
2246 | 2676 } |
2677 | |
2860 | 2678 if(tempBlured[isColor]==NULL && (mode & TEMP_NOISE_FILTER)) |
2679 { | |
2680 // printf("%d %d %d\n", isColor, dstStride, height); | |
2681 //FIXME works only as long as the size doesnt increase | |
2682 //Note:the +17*1024 is just there so i dont have to worry about r/w over te end | |
2683 tempBlured[isColor]= (uint8_t*)memalign(8, dstStride*((height+7)&(~7)) + 17*1024); | |
2899 | 2684 tempBluredPast[isColor]= (uint32_t*)memalign(8, 256*((height+7)&(~7))/2 + 17*1024); |
2860 | 2685 |
2686 memset(tempBlured[isColor], 0, dstStride*((height+7)&(~7)) + 17*1024); | |
2899 | 2687 memset(tempBluredPast[isColor], 0, 256*((height+7)&(~7))/2 + 17*1024); |
2860 | 2688 } |
2689 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2690 if(!yHistogram) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2691 { |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2692 int i; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2693 yHistogram= (uint64_t*)malloc(8*256); |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2694 for(i=0; i<256; i++) yHistogram[i]= width*height/64*15/256; |
2285 | 2695 |
2696 if(mode & FULL_Y_RANGE) | |
2697 { | |
3832
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2698 ppMode->maxAllowedY=255; |
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2699 ppMode->minAllowedY=0; |
2285 | 2700 } |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2701 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2702 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2703 if(!isColor) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2704 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2705 uint64_t sum= 0; |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2706 int i; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2707 static int framenum= -1; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2708 uint64_t maxClipped; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2709 uint64_t clipped; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2710 double scale; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2711 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2712 framenum++; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2713 if(framenum == 1) yHistogram[0]= width*height/64*15/256; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2714 |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2715 for(i=0; i<256; i++) |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2716 { |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2717 sum+= yHistogram[i]; |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2718 // printf("%d ", yHistogram[i]); |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2719 } |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2720 // printf("\n\n"); |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2721 |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2722 /* we allways get a completly black picture first */ |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2723 maxClipped= (uint64_t)(sum * maxClippedThreshold); |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2724 |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2725 clipped= sum; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2726 for(black=255; black>0; black--) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2727 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2728 if(clipped < maxClipped) break; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2729 clipped-= yHistogram[black]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2730 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2731 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2732 clipped= sum; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2733 for(white=0; white<256; white++) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2734 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2735 if(clipped < maxClipped) break; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2736 clipped-= yHistogram[white]; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2737 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2738 |
3832
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2739 scale= (double)(ppMode->maxAllowedY - ppMode->minAllowedY) / (double)(white-black); |
3171 | 2740 |
2741 #ifdef HAVE_MMX2 | |
2742 packedYScale= (uint16_t)(scale*256.0 + 0.5); | |
3832
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2743 packedYOffset= (((black*packedYScale)>>8) - ppMode->minAllowedY) & 0xFFFF; |
3171 | 2744 #else |
2745 packedYScale= (uint16_t)(scale*1024.0 + 0.5); | |
3832
d05cfaf5f0f2
minor brightness/contrast bugfix / moved some global vars into ppMode
michael
parents:
3817
diff
changeset
|
2746 packedYOffset= (black - ppMode->minAllowedY) & 0xFFFF; |
3171 | 2747 #endif |
2748 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2749 packedYOffset|= packedYOffset<<32; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2750 packedYOffset|= packedYOffset<<16; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2751 |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2752 packedYScale|= packedYScale<<32; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2753 packedYScale|= packedYScale<<16; |
4399 | 2754 |
2755 if(mode & LEVEL_FIX) QPCorrecture= (int)(scale*256*256 + 0.5); | |
2756 else QPCorrecture= 256*256; | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2757 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2758 else |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2759 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2760 packedYScale= 0x0100010001000100LL; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2761 packedYOffset= 0; |
4399 | 2762 QPCorrecture= 256*256; |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2763 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2764 |
2742
d5636499cafd
minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents:
2595
diff
changeset
|
2765 /* copy & deinterlace first row of blocks */ |
2595 | 2766 y=-BLOCK_SIZE; |
2767 { | |
2768 uint8_t *srcBlock= &(src[y*srcStride]); | |
4403 | 2769 uint8_t *dstBlock= tempDst + dstStride; |
2595 | 2770 |
2771 // From this point on it is guranteed that we can read and write 16 lines downward | |
2772 // finish 1 block before the next otherwise we´ll might have a problem | |
2773 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing | |
2774 for(x=0; x<width; x+=BLOCK_SIZE) | |
2775 { | |
2776 | |
2777 #ifdef HAVE_MMX2 | |
2778 /* | |
2779 prefetchnta(srcBlock + (((x>>2)&6) + 5)*srcStride + 32); | |
2780 prefetchnta(srcBlock + (((x>>2)&6) + 6)*srcStride + 32); | |
2781 prefetcht0(dstBlock + (((x>>2)&6) + 5)*dstStride + 32); | |
2782 prefetcht0(dstBlock + (((x>>2)&6) + 6)*dstStride + 32); | |
2783 */ | |
2784 | |
2785 asm( | |
2786 "movl %4, %%eax \n\t" | |
2787 "shrl $2, %%eax \n\t" | |
2788 "andl $6, %%eax \n\t" | |
3031 | 2789 "addl %5, %%eax \n\t" |
2595 | 2790 "movl %%eax, %%ebx \n\t" |
2791 "imul %1, %%eax \n\t" | |
2792 "imul %3, %%ebx \n\t" | |
2793 "prefetchnta 32(%%eax, %0) \n\t" | |
2794 "prefetcht0 32(%%ebx, %2) \n\t" | |
2795 "addl %1, %%eax \n\t" | |
2796 "addl %3, %%ebx \n\t" | |
2797 "prefetchnta 32(%%eax, %0) \n\t" | |
2798 "prefetcht0 32(%%ebx, %2) \n\t" | |
2799 :: "r" (srcBlock), "r" (srcStride), "r" (dstBlock), "r" (dstStride), | |
3031 | 2800 "m" (x), "m" (copyAhead) |
2595 | 2801 : "%eax", "%ebx" |
2802 ); | |
2803 | |
2804 #elif defined(HAVE_3DNOW) | |
2805 //FIXME check if this is faster on an 3dnow chip or if its faster without the prefetch or ... | |
2806 /* prefetch(srcBlock + (((x>>3)&3) + 5)*srcStride + 32); | |
2807 prefetch(srcBlock + (((x>>3)&3) + 9)*srcStride + 32); | |
2808 prefetchw(dstBlock + (((x>>3)&3) + 5)*dstStride + 32); | |
2809 prefetchw(dstBlock + (((x>>3)&3) + 9)*dstStride + 32); | |
2810 */ | |
2811 #endif | |
2812 | |
4403 | 2813 RENAME(blockCopy)(dstBlock + dstStride*8, dstStride, |
2814 srcBlock + srcStride*8, srcStride, mode & LEVEL_FIX); | |
2815 | |
2816 RENAME(duplicate)(dstBlock + dstStride*8, dstStride); | |
2595 | 2817 |
2818 if(mode & LINEAR_IPOL_DEINT_FILTER) | |
3099 | 2819 RENAME(deInterlaceInterpolateLinear)(dstBlock, dstStride); |
2595 | 2820 else if(mode & LINEAR_BLEND_DEINT_FILTER) |
3099 | 2821 RENAME(deInterlaceBlendLinear)(dstBlock, dstStride); |
2595 | 2822 else if(mode & MEDIAN_DEINT_FILTER) |
3099 | 2823 RENAME(deInterlaceMedian)(dstBlock, dstStride); |
2595 | 2824 else if(mode & CUBIC_IPOL_DEINT_FILTER) |
3099 | 2825 RENAME(deInterlaceInterpolateCubic)(dstBlock, dstStride); |
2595 | 2826 /* else if(mode & CUBIC_BLEND_DEINT_FILTER) |
3099 | 2827 RENAME(deInterlaceBlendCubic)(dstBlock, dstStride); |
2595 | 2828 */ |
2829 dstBlock+=8; | |
2830 srcBlock+=8; | |
2831 } | |
4403 | 2832 memcpy(dst, tempDst + 9*dstStride, copyAhead*dstStride ); |
2595 | 2833 } |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2834 |
2246 | 2835 for(y=0; y<height; y+=BLOCK_SIZE) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2836 { |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2837 //1% speedup if these are here instead of the inner loop |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2838 uint8_t *srcBlock= &(src[y*srcStride]); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2839 uint8_t *dstBlock= &(dst[y*dstStride]); |
3099 | 2840 #ifdef HAVE_MMX |
2841 uint8_t *tempBlock1= tempBlocks; | |
2842 uint8_t *tempBlock2= tempBlocks + 8; | |
2843 #endif | |
2437 | 2844 #ifdef ARCH_X86 |
2845 int *QPptr= isColor ? &QPs[(y>>3)*QPStride] :&QPs[(y>>4)*QPStride]; | |
4399 | 2846 int QPDelta= isColor ? (-1) : 1<<31; |
2847 int QPFrac= 1<<30; | |
2437 | 2848 #endif |
2860 | 2849 int QP=0; |
2473 | 2850 /* can we mess with a 8x16 block from srcBlock/dstBlock downwards and 1 line upwards |
2851 if not than use a temporary buffer */ | |
2246 | 2852 if(y+15 >= height) |
2853 { | |
2860 | 2854 int i; |
3031 | 2855 /* copy from line (copyAhead) to (copyAhead+7) of src, these will be copied with |
2246 | 2856 blockcopy to dst later */ |
3031 | 2857 memcpy(tempSrc + srcStride*copyAhead, srcBlock + srcStride*copyAhead, |
2858 srcStride*MAX(height-y-copyAhead, 0) ); | |
2859 | |
2860 /* duplicate last line of src to fill the void upto line (copyAhead+7) */ | |
2861 for(i=MAX(height-y, 8); i<copyAhead+8; i++) | |
2860 | 2862 memcpy(tempSrc + srcStride*i, src + srcStride*(height-1), srcStride); |
2863 | |
3031 | 2864 /* copy up to (copyAhead+1) lines of dst (line -1 to (copyAhead-1))*/ |
2865 memcpy(tempDst, dstBlock - dstStride, dstStride*MIN(height-y+1, copyAhead+1) ); | |
2866 | |
2867 /* duplicate last line of dst to fill the void upto line (copyAhead) */ | |
2868 for(i=height-y+1; i<=copyAhead; i++) | |
2860 | 2869 memcpy(tempDst + dstStride*i, dst + dstStride*(height-1), dstStride); |
2870 | |
2473 | 2871 dstBlock= tempDst + dstStride; |
2246 | 2872 srcBlock= tempSrc; |
2873 } | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2874 |
2285 | 2875 // From this point on it is guranteed that we can read and write 16 lines downward |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2876 // finish 1 block before the next otherwise we´ll might have a problem |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2877 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2878 for(x=0; x<width; x+=BLOCK_SIZE) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2879 { |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
2880 const int stride= dstStride; |
3099 | 2881 #ifdef HAVE_MMX |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
2882 uint8_t *tmpXchg; |
3099 | 2883 #endif |
2437 | 2884 #ifdef ARCH_X86 |
2860 | 2885 QP= *QPptr; |
2437 | 2886 asm volatile( |
2887 "addl %2, %1 \n\t" | |
2888 "sbbl %%eax, %%eax \n\t" | |
2889 "shll $2, %%eax \n\t" | |
2890 "subl %%eax, %0 \n\t" | |
2891 : "+r" (QPptr), "+m" (QPFrac) | |
2892 : "r" (QPDelta) | |
2893 : "%eax" | |
2894 ); | |
2895 #else | |
2860 | 2896 QP= isColor ? |
2437 | 2897 QPs[(y>>3)*QPStride + (x>>3)]: |
2898 QPs[(y>>4)*QPStride + (x>>4)]; | |
2899 #endif | |
2900 if(!isColor) | |
2428 | 2901 { |
4399 | 2902 QP= (QP* QPCorrecture + 256*128)>>16; |
2742
d5636499cafd
minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents:
2595
diff
changeset
|
2903 yHistogram[ srcBlock[srcStride*12 + 4] ]++; |
2428 | 2904 } |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2905 #ifdef HAVE_MMX |
2246 | 2906 asm volatile( |
2907 "movd %0, %%mm7 \n\t" | |
2908 "packuswb %%mm7, %%mm7 \n\t" // 0, 0, 0, QP, 0, 0, 0, QP | |
2909 "packuswb %%mm7, %%mm7 \n\t" // 0,QP, 0, QP, 0,QP, 0, QP | |
2910 "packuswb %%mm7, %%mm7 \n\t" // QP,..., QP | |
4248 | 2911 "movq %%mm7, "MANGLE(pQPb)" \n\t" |
2246 | 2912 : : "r" (QP) |
2913 ); | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2914 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2915 |
2221 | 2916 #ifdef MORE_TIMING |
2246 | 2917 T0= rdtsc(); |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2918 #endif |
2159 | 2919 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2920 #ifdef HAVE_MMX2 |
2437 | 2921 /* |
2922 prefetchnta(srcBlock + (((x>>2)&6) + 5)*srcStride + 32); | |
2923 prefetchnta(srcBlock + (((x>>2)&6) + 6)*srcStride + 32); | |
2924 prefetcht0(dstBlock + (((x>>2)&6) + 5)*dstStride + 32); | |
2925 prefetcht0(dstBlock + (((x>>2)&6) + 6)*dstStride + 32); | |
2926 */ | |
2927 | |
2928 asm( | |
2929 "movl %4, %%eax \n\t" | |
2930 "shrl $2, %%eax \n\t" | |
2931 "andl $6, %%eax \n\t" | |
3031 | 2932 "addl %5, %%eax \n\t" |
2437 | 2933 "movl %%eax, %%ebx \n\t" |
2934 "imul %1, %%eax \n\t" | |
2935 "imul %3, %%ebx \n\t" | |
2936 "prefetchnta 32(%%eax, %0) \n\t" | |
2937 "prefetcht0 32(%%ebx, %2) \n\t" | |
2938 "addl %1, %%eax \n\t" | |
2939 "addl %3, %%ebx \n\t" | |
2940 "prefetchnta 32(%%eax, %0) \n\t" | |
2941 "prefetcht0 32(%%ebx, %2) \n\t" | |
2942 :: "r" (srcBlock), "r" (srcStride), "r" (dstBlock), "r" (dstStride), | |
3031 | 2943 "m" (x), "m" (copyAhead) |
2437 | 2944 : "%eax", "%ebx" |
2945 ); | |
2946 | |
2159 | 2947 #elif defined(HAVE_3DNOW) |
2948 //FIXME check if this is faster on an 3dnow chip or if its faster without the prefetch or ... | |
2246 | 2949 /* prefetch(srcBlock + (((x>>3)&3) + 5)*srcStride + 32); |
2950 prefetch(srcBlock + (((x>>3)&3) + 9)*srcStride + 32); | |
2951 prefetchw(dstBlock + (((x>>3)&3) + 5)*dstStride + 32); | |
2952 prefetchw(dstBlock + (((x>>3)&3) + 9)*dstStride + 32); | |
2159 | 2953 */ |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2954 #endif |
2246 | 2955 |
2286 | 2956 #ifdef PP_FUNNY_STRIDE |
2285 | 2957 //can we mess with a 8x16 block, if not use a temp buffer, yes again |
2958 if(x+7 >= width) | |
2959 { | |
2960 int i; | |
2961 dstBlockPtrBackup= dstBlock; | |
2962 srcBlockPtrBackup= srcBlock; | |
2963 | |
2964 for(i=0;i<BLOCK_SIZE*2; i++) | |
2965 { | |
2966 memcpy(tempSrcBlock+i*srcStride, srcBlock+i*srcStride, width-x); | |
2967 memcpy(tempDstBlock+i*dstStride, dstBlock+i*dstStride, width-x); | |
2968 } | |
2969 | |
2970 dstBlock= tempDstBlock; | |
2971 srcBlock= tempSrcBlock; | |
2972 } | |
2286 | 2973 #endif |
2285 | 2974 |
3099 | 2975 RENAME(blockCopy)(dstBlock + dstStride*copyAhead, dstStride, |
3031 | 2976 srcBlock + srcStride*copyAhead, srcStride, mode & LEVEL_FIX); |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2977 |
2246 | 2978 if(mode & LINEAR_IPOL_DEINT_FILTER) |
3099 | 2979 RENAME(deInterlaceInterpolateLinear)(dstBlock, dstStride); |
2246 | 2980 else if(mode & LINEAR_BLEND_DEINT_FILTER) |
3099 | 2981 RENAME(deInterlaceBlendLinear)(dstBlock, dstStride); |
2246 | 2982 else if(mode & MEDIAN_DEINT_FILTER) |
3099 | 2983 RENAME(deInterlaceMedian)(dstBlock, dstStride); |
2246 | 2984 else if(mode & CUBIC_IPOL_DEINT_FILTER) |
3099 | 2985 RENAME(deInterlaceInterpolateCubic)(dstBlock, dstStride); |
2246 | 2986 /* else if(mode & CUBIC_BLEND_DEINT_FILTER) |
3099 | 2987 RENAME(deInterlaceBlendCubic)(dstBlock, dstStride); |
2203
f90b6e259dc8
rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents:
2195
diff
changeset
|
2988 */ |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2989 |
2246 | 2990 /* only deblock if we have 2 blocks */ |
2991 if(y + 8 < height) | |
2992 { | |
2221 | 2993 #ifdef MORE_TIMING |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2994 T1= rdtsc(); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2995 memcpyTime+= T1-T0; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2996 T0=T1; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
2997 #endif |
2300
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
2998 if(mode & V_RK1_FILTER) |
3099 | 2999 RENAME(vertRK1Filter)(dstBlock, stride, QP); |
2300
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
3000 else if(mode & V_X1_FILTER) |
3099 | 3001 RENAME(vertX1Filter)(dstBlock, stride, QP); |
2300
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
3002 else if(mode & V_DEBLOCK) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3003 { |
3099 | 3004 if( RENAME(isVertDC)(dstBlock, stride)) |
2159 | 3005 { |
3099 | 3006 if(RENAME(isVertMinMaxOk)(dstBlock, stride, QP)) |
3007 RENAME(doVertLowPass)(dstBlock, stride, QP); | |
2159 | 3008 } |
2300
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
3009 else |
3099 | 3010 RENAME(doVertDefFilter)(dstBlock, stride, QP); |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3011 } |
2221 | 3012 #ifdef MORE_TIMING |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3013 T1= rdtsc(); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3014 vertTime+= T1-T0; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3015 T0=T1; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3016 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3017 } |
2473 | 3018 |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3019 #ifdef HAVE_MMX |
3099 | 3020 RENAME(transpose1)(tempBlock1, tempBlock2, dstBlock, dstStride); |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3021 #endif |
2246 | 3022 /* check if we have a previous block to deblock it with dstBlock */ |
2285 | 3023 if(x - 8 >= 0) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3024 { |
2221 | 3025 #ifdef MORE_TIMING |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3026 T0= rdtsc(); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3027 #endif |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3028 #ifdef HAVE_MMX |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3029 if(mode & H_RK1_FILTER) |
3099 | 3030 RENAME(vertRK1Filter)(tempBlock1, 16, QP); |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3031 else if(mode & H_X1_FILTER) |
3099 | 3032 RENAME(vertX1Filter)(tempBlock1, 16, QP); |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3033 else if(mode & H_DEBLOCK) |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3034 { |
3099 | 3035 if( RENAME(isVertDC)(tempBlock1, 16) ) |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3036 { |
3099 | 3037 if(RENAME(isVertMinMaxOk)(tempBlock1, 16, QP)) |
3038 RENAME(doVertLowPass)(tempBlock1, 16, QP); | |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3039 } |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3040 else |
3099 | 3041 RENAME(doVertDefFilter)(tempBlock1, 16, QP); |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3042 } |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3043 |
3099 | 3044 RENAME(transpose2)(dstBlock-4, dstStride, tempBlock1 + 4*16); |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3045 |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3046 #else |
2300
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
3047 if(mode & H_X1_FILTER) |
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
3048 horizX1Filter(dstBlock-4, stride, QP); |
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
3049 else if(mode & H_DEBLOCK) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3050 { |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3051 if( isHorizDC(dstBlock-4, stride)) |
2159 | 3052 { |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3053 if(isHorizMinMaxOk(dstBlock-4, stride, QP)) |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3054 doHorizLowPass(dstBlock-4, stride, QP); |
2159 | 3055 } |
2300
e10f7dc4938f
more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents:
2286
diff
changeset
|
3056 else |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3057 doHorizDefFilter(dstBlock-4, stride, QP); |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3058 } |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3059 #endif |
2221 | 3060 #ifdef MORE_TIMING |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3061 T1= rdtsc(); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3062 horizTime+= T1-T0; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3063 T0=T1; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3064 #endif |
2473 | 3065 if(mode & DERING) |
3066 { | |
3067 //FIXME filter first line | |
3099 | 3068 if(y>0) RENAME(dering)(dstBlock - stride - 8, stride, QP); |
2473 | 3069 } |
2860 | 3070 |
3071 if(mode & TEMP_NOISE_FILTER) | |
3072 { | |
3099 | 3073 RENAME(tempNoiseReducer)(dstBlock-8, stride, |
2860 | 3074 tempBlured[isColor] + y*dstStride + x, |
2899 | 3075 tempBluredPast[isColor] + (y>>3)*256 + (x>>3), |
2860 | 3076 ppMode->maxTmpNoise); |
3077 } | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3078 } |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3079 |
2286 | 3080 #ifdef PP_FUNNY_STRIDE |
2285 | 3081 /* did we use a tmp-block buffer */ |
3082 if(x+7 >= width) | |
3083 { | |
3084 int i; | |
3085 dstBlock= dstBlockPtrBackup; | |
3086 srcBlock= srcBlockPtrBackup; | |
3087 | |
3088 for(i=0;i<BLOCK_SIZE*2; i++) | |
3089 { | |
3090 memcpy(dstBlock+i*dstStride, tempDstBlock+i*dstStride, width-x); | |
3091 } | |
3092 } | |
2286 | 3093 #endif |
2285 | 3094 |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3095 dstBlock+=8; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3096 srcBlock+=8; |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3097 |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
3098 #ifdef HAVE_MMX |
2454
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3099 tmpXchg= tempBlock1; |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3100 tempBlock1= tempBlock2; |
b74c2a08eac9
much better horizontal filters (transpose & use the vertical ones) :)
michael
parents:
2437
diff
changeset
|
3101 tempBlock2 = tmpXchg; |
2461
60f16575bece
fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents:
2454
diff
changeset
|
3102 #endif |
2246 | 3103 } |
3104 | |
2860 | 3105 if(mode & DERING) |
3106 { | |
3099 | 3107 if(y > 0) RENAME(dering)(dstBlock - dstStride - 8, dstStride, QP); |
2860 | 3108 } |
3109 | |
3110 if((mode & TEMP_NOISE_FILTER)) | |
3111 { | |
3099 | 3112 RENAME(tempNoiseReducer)(dstBlock-8, dstStride, |
2860 | 3113 tempBlured[isColor] + y*dstStride + x, |
2899 | 3114 tempBluredPast[isColor] + (y>>3)*256 + (x>>3), |
2860 | 3115 ppMode->maxTmpNoise); |
3116 } | |
3117 | |
2595 | 3118 /* did we use a tmp buffer for the last lines*/ |
2285 | 3119 if(y+15 >= height) |
2246 | 3120 { |
3121 uint8_t *dstBlock= &(dst[y*dstStride]); | |
2473 | 3122 memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y) ); |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3123 } |
3013 | 3124 /* |
3125 for(x=0; x<width; x+=32) | |
3126 { | |
3031 | 3127 volatile int i; |
3013 | 3128 i+= + dstBlock[x + 7*dstStride] + dstBlock[x + 8*dstStride] |
3129 + dstBlock[x + 9*dstStride] + dstBlock[x +10*dstStride] | |
3031 | 3130 + dstBlock[x +11*dstStride] + dstBlock[x +12*dstStride]; |
3131 // + dstBlock[x +13*dstStride] | |
3132 // + dstBlock[x +14*dstStride] + dstBlock[x +15*dstStride]; | |
3133 }*/ | |
3134 } | |
2159 | 3135 #ifdef HAVE_3DNOW |
3136 asm volatile("femms"); | |
3137 #elif defined (HAVE_MMX) | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3138 asm volatile("emms"); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3139 #endif |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3140 |
2221 | 3141 #ifdef TIMING |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3142 // FIXME diff is mostly the time spent for rdtsc (should subtract that but ...) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3143 sumTime= rdtsc() - sumTime; |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3144 if(!isColor) |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3145 printf("cpy:%4dk, vert:%4dk, horiz:%4dk, sum:%4dk, diff:%4dk, color: %d/%d \r", |
2168
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
3146 (int)(memcpyTime/1000), (int)(vertTime/1000), (int)(horizTime/1000), |
21a8f158d19f
bugfixes: last 3 lines not brightness/contrast corrected
michael
parents:
2159
diff
changeset
|
3147 (int)(sumTime/1000), (int)((sumTime-memcpyTime-vertTime-horizTime)/1000) |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3148 , black, white); |
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3149 #endif |
3013 | 3150 #ifdef DEBUG_BRIGHTNESS |
3151 if(!isColor) | |
3152 { | |
3153 int max=1; | |
3154 int i; | |
3155 for(i=0; i<256; i++) | |
3156 if(yHistogram[i] > max) max=yHistogram[i]; | |
3157 | |
3158 for(i=1; i<256; i++) | |
3159 { | |
3160 int x; | |
3161 int start=yHistogram[i-1]/(max/256+1); | |
3162 int end=yHistogram[i]/(max/256+1); | |
3163 int inc= end > start ? 1 : -1; | |
3164 for(x=start; x!=end+inc; x+=inc) | |
3165 dst[ i*dstStride + x]+=128; | |
3166 } | |
3167 | |
3168 for(i=0; i<100; i+=2) | |
3169 { | |
3170 dst[ (white)*dstStride + i]+=128; | |
3171 dst[ (black)*dstStride + i]+=128; | |
3172 } | |
3173 | |
3174 } | |
3175 #endif | |
3176 | |
2158
508468a75be0
new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff
changeset
|
3177 } |