annotate libpostproc/postprocess_template.c @ 2036:6a6c678517b3 libavcodec

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