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