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