annotate libpostproc/postprocess_template.c @ 142:da4c751fc151 libavcodec

deinterlace bugfix
author michael
date Wed, 31 Oct 2001 18:29:03 +0000
parents 626bfabff1f5
children 1cfc4d567c0a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2 Copyright (C) 2001 Michael Niedermayer (michaelni@gmx.at)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
6 the Free Software Foundation; either version 2 of the License, or
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
7 (at your option) any later version.
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
8
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
12 GNU General Public License for more details.
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
13
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
15 along with this program; if not, write to the Free Software
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
17 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
18
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
19 /*
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
20 C MMX MMX2 3DNow
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
21 isVertDC Ec Ec
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
22 isVertMinMaxOk Ec Ec
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
23 doVertLowPass E e e
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
24 doVertDefFilter Ec Ec Ec
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
25 isHorizDC Ec Ec
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
26 isHorizMinMaxOk a E
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
27 doHorizLowPass E e e
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
28 doHorizDefFilter Ec Ec Ec
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
29 deRing E e e*
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
30 Vertical RKAlgo1 E a a
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
31 Horizontal RKAlgo1 a a
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
32 Vertical X1 a E E
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
33 Horizontal X1 a E E
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
34 LinIpolDeinterlace e E E*
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
35 CubicIpolDeinterlace a e e*
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
36 LinBlendDeinterlace e E E*
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
37 MedianDeinterlace Ec Ec
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
38
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
39
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
40 * i dont have a 3dnow CPU -> its untested
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
41 E = Exact implementation
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
42 e = allmost exact implementation (slightly different rounding,...)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
43 a = alternative / approximate impl
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
44 c = checked against the other implementations (-vo md5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
45 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
46
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
47 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
48 TODO:
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
49 verify that everything workes as it should (how?)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
50 reduce the time wasted on the mem transfer
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
51 implement dering
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
52 implement everything in C at least (done at the moment but ...)
95
8bce253b537c 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
8bce253b537c 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?
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
55 move YScale thing to the end instead of fixing QP
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
56 write a faster and higher quality deblocking filter :)
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
57 do something about the speed of the horizontal filters
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
58 make the mainloop more flexible (variable number of blocks at once
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
59 (the if/else stuff per block is slowing things down)
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
60 compare the quality & speed of all filters
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
61 split this huge file
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
62 fix warnings (unused vars, ...)
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
63 noise reduction filters
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
64 border remover
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
65 optimize c versions
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
66 ...
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
67
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
68 Notes:
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
69 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
70
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
71 //Changelog: use the CVS log
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
72
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
73 #include <inttypes.h>
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
74 #include <stdio.h>
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
75 #include <stdlib.h>
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
76 #include <string.h>
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
77 #include "../config.h"
133
e0bf2e9ce24c a few warning fixes (missing #include's)
pl
parents: 132
diff changeset
78 #ifdef HAVE_MALLOC_H
e0bf2e9ce24c a few warning fixes (missing #include's)
pl
parents: 132
diff changeset
79 #include <malloc.h>
e0bf2e9ce24c a few warning fixes (missing #include's)
pl
parents: 132
diff changeset
80 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
81 //#undef HAVE_MMX2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
82 //#define HAVE_3DNOW
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
83 //#undef HAVE_MMX
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
84 #include "postprocess.h"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
85
104
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
86 #define MIN(a,b) ((a) > (b) ? (b) : (a))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
87 #define MAX(a,b) ((a) < (b) ? (b) : (a))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
88 #define ABS(a) ((a) > 0 ? (a) : (-(a)))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
89 #define SIGN(a) ((a) > 0 ? 1 : -1)
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
90
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
91 #ifdef HAVE_MMX2
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
92 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
93 #elif defined (HAVE_3DNOW)
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
94 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
95 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
96
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
97 #ifdef HAVE_MMX2
2c469e390117 dering in c
michael
parents: 133
diff changeset
98 #define PMINUB(a,b,t) "pminub " #a ", " #b " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
99 #elif defined (HAVE_MMX)
2c469e390117 dering in c
michael
parents: 133
diff changeset
100 #define PMINUB(b,a,t) \
2c469e390117 dering in c
michael
parents: 133
diff changeset
101 "movq " #a ", " #t " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
102 "psubusb " #b ", " #t " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
103 "psubb " #t ", " #a " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
104 #endif
2c469e390117 dering in c
michael
parents: 133
diff changeset
105
2c469e390117 dering in c
michael
parents: 133
diff changeset
106 #ifdef HAVE_MMX2
2c469e390117 dering in c
michael
parents: 133
diff changeset
107 #define PMAXUB(a,b) "pmaxub " #a ", " #b " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
108 #elif defined (HAVE_MMX)
2c469e390117 dering in c
michael
parents: 133
diff changeset
109 #define PMAXUB(a,b) \
2c469e390117 dering in c
michael
parents: 133
diff changeset
110 "psubusb " #a ", " #b " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
111 "paddb " #a ", " #b " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
112 #endif
2c469e390117 dering in c
michael
parents: 133
diff changeset
113
2c469e390117 dering in c
michael
parents: 133
diff changeset
114
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
115 #define GET_MODE_BUFFER_SIZE 500
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
116 #define OPTIONS_ARRAY_SIZE 10
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
117
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
118
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
119 static uint64_t packedYOffset= 0x0000000000000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
120 static uint64_t packedYScale= 0x0100010001000100LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
121 static uint64_t w05= 0x0005000500050005LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
122 static uint64_t w20= 0x0020002000200020LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
123 static uint64_t w1400= 0x1400140014001400LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
124 static uint64_t bm00000001= 0x00000000000000FFLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
125 static uint64_t bm00010000= 0x000000FF00000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
126 static uint64_t bm00001000= 0x00000000FF000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
127 static uint64_t bm10000000= 0xFF00000000000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
128 static uint64_t bm10000001= 0xFF000000000000FFLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
129 static uint64_t bm11000011= 0xFFFF00000000FFFFLL;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
130 static uint64_t bm00000011= 0x000000000000FFFFLL;
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
131 static uint64_t bm11111110= 0xFFFFFFFFFFFFFF00LL;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
132 static uint64_t bm11000000= 0xFFFF000000000000LL;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
133 static uint64_t bm00011000= 0x000000FFFF000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
134 static uint64_t bm00110011= 0x0000FFFF0000FFFFLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
135 static uint64_t bm11001100= 0xFFFF0000FFFF0000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
136 static uint64_t b00= 0x0000000000000000LL;
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
137 static uint64_t b01= 0x0101010101010101LL;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
138 static uint64_t b02= 0x0202020202020202LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
139 static uint64_t b0F= 0x0F0F0F0F0F0F0F0FLL;
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
140 static uint64_t b04= 0x0404040404040404LL;
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
141 static uint64_t b08= 0x0808080808080808LL;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
142 static uint64_t bFF= 0xFFFFFFFFFFFFFFFFLL;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
143 static uint64_t b20= 0x2020202020202020LL;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
144 static uint64_t b80= 0x8080808080808080LL;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
145 static uint64_t b7E= 0x7E7E7E7E7E7E7E7ELL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
146 static uint64_t b7C= 0x7C7C7C7C7C7C7C7CLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
147 static uint64_t b3F= 0x3F3F3F3F3F3F3F3FLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
148 static uint64_t temp0=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
149 static uint64_t temp1=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
150 static uint64_t temp2=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
151 static uint64_t temp3=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
152 static uint64_t temp4=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
153 static uint64_t temp5=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
154 static uint64_t pQPb=0;
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
155 static uint64_t pQPb2=0;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
156 static uint8_t tempBlocks[8*16*2]; //used for the horizontal code
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
157
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
158 int hFlatnessThreshold= 56 - 16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
159 int vFlatnessThreshold= 56 - 16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
160
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
161 //amount of "black" u r willing to loose to get a brightness corrected picture
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
162 double maxClippedThreshold= 0.01;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
163
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
164 int maxAllowedY=234;
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
165 int minAllowedY=16;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
166
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
167 static struct PPFilter filters[]=
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
168 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
169 {"hb", "hdeblock", 1, 1, 3, H_DEBLOCK},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
170 {"vb", "vdeblock", 1, 2, 4, V_DEBLOCK},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
171 {"vr", "rkvdeblock", 1, 2, 4, H_RK1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
172 {"h1", "x1hdeblock", 1, 1, 3, H_X1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
173 {"v1", "x1vdeblock", 1, 2, 4, V_X1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
174 {"dr", "dering", 1, 5, 6, DERING},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
175 {"al", "autolevels", 0, 1, 2, LEVEL_FIX},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
176 {"lb", "linblenddeint", 0, 1, 6, LINEAR_BLEND_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
177 {"li", "linipoldeint", 0, 1, 6, LINEAR_IPOL_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
178 {"ci", "cubicipoldeint", 0, 1, 6, CUBIC_IPOL_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
179 {"md", "mediandeint", 0, 1, 6, MEDIAN_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
180 {NULL, NULL,0,0,0,0} //End Marker
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
181 };
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
182
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
183 static char *replaceTable[]=
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
184 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
185 "default", "hdeblock:a,vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
186 "de", "hdeblock:a,vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
187 "fast", "x1hdeblock:a,x1vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
188 "fa", "x1hdeblock:a,x1vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
189 NULL //End Marker
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
190 };
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
191
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
192 static inline void unusedVariableWarningFixer()
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
193 {
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
194 if(
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
195 packedYOffset + packedYScale + w05 + w20 + w1400 + bm00000001 + bm00010000
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
196 + bm00001000 + bm10000000 + bm10000001 + bm11000011 + bm00000011 + bm11111110
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
197 + bm11000000 + bm00011000 + bm00110011 + bm11001100 + b00 + b01 + b02 + b0F
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
198 + bFF + b20 + b80 + b7E + b7C + b3F + temp0 + temp1 + temp2 + temp3 + temp4
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
199 + temp5 + pQPb== 0) b00=0;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
200 }
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
201
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
202 #ifdef TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
203 static inline long long rdtsc()
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
204 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
205 long long l;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
206 asm volatile( "rdtsc\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
207 : "=A" (l)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
208 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
209 // printf("%d\n", int(l/1000));
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
210 return l;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
211 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
212 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
213
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
214 #ifdef HAVE_MMX2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
215 static inline void prefetchnta(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
216 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
217 asm volatile( "prefetchnta (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
218 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
219 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
220 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
221
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
222 static inline void prefetcht0(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
223 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
224 asm volatile( "prefetcht0 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
225 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
226 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
227 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
228
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
229 static inline void prefetcht1(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
230 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
231 asm volatile( "prefetcht1 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
232 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
233 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
234 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
235
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
236 static inline void prefetcht2(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
237 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
238 asm volatile( "prefetcht2 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
239 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
240 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
241 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
242 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
243
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
244 //FIXME? |255-0| = 1 (shouldnt be a problem ...)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
245 /**
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
246 * Check if the middle 8x8 Block in the given 8x16 block is flat
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
247 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
248 static inline int isVertDC(uint8_t src[], int stride){
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
249 int numEq= 0;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
250 #ifndef HAVE_MMX
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
251 int y;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
252 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
253 src+= stride*4; // src points to begin of the 8x8 Block
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
254 #ifdef HAVE_MMX
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
255 asm volatile(
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
256 "leal (%1, %2), %%eax \n\t"
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
257 "leal (%%eax, %2, 4), %%ebx \n\t"
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
258 // 0 1 2 3 4 5 6 7 8 9
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
259 // %1 eax eax+%2 eax+2%2 %1+4%2 ebx ebx+%2 ebx+2%2 %1+8%2 ebx+4%2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
260 "movq b7E, %%mm7 \n\t" // mm7 = 0x7F
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
261 "movq b7C, %%mm6 \n\t" // mm6 = 0x7D
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
262 "movq (%1), %%mm0 \n\t"
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
263 "movq (%%eax), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
264 "psubb %%mm1, %%mm0 \n\t" // mm0 = differnece
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
265 "paddb %%mm7, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
266 "pcmpgtb %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
267
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
268 "movq (%%eax,%2), %%mm2 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
269 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
270 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
271 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
272 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
273
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
274 "movq (%%eax, %2, 2), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
275 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
276 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
277 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
278 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
279
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
280 "movq (%1, %2, 4), %%mm2 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
281 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
282 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
283 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
284 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
285
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
286 "movq (%%ebx), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
287 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
288 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
289 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
290 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
291
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
292 "movq (%%ebx, %2), %%mm2 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
293 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
294 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
295 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
296 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
297
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
298 "movq (%%ebx, %2, 2), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
299 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
300 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
301 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
302 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
303
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
304 " \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
305 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
306 "psrlw $8, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
307 "paddb %%mm1, %%mm0 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
308 #ifdef HAVE_MMX2
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
309 "pshufw $0xF9, %%mm0, %%mm1 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
310 "paddb %%mm1, %%mm0 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
311 "pshufw $0xFE, %%mm0, %%mm1 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
312 #else
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
313 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
314 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
315 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
316 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
317 "psrlq $32, %%mm0 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
318 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
319 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
320 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
321 : "=r" (numEq)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
322 : "r" (src), "r" (stride)
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
323 : "%eax", "%ebx"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
324 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
325
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
326 numEq= (256 - numEq) &0xFF;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
327
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
328 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
329 for(y=0; y<BLOCK_SIZE-1; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
330 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
331 if(((src[0] - src[0+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
332 if(((src[1] - src[1+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
333 if(((src[2] - src[2+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
334 if(((src[3] - src[3+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
335 if(((src[4] - src[4+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
336 if(((src[5] - src[5+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
337 if(((src[6] - src[6+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
338 if(((src[7] - src[7+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
339 src+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
340 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
341 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
342 /* if(abs(numEq - asmEq) > 0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
343 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
344 printf("\nasm:%d c:%d\n", asmEq, numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
345 for(int y=0; y<8; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
346 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
347 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
348 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
349 printf("%d ", temp[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
350 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
351 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
352 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
353 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
354 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
355 // for(int i=0; i<numEq/8; i++) src[i]=255;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
356 return (numEq > vFlatnessThreshold) ? 1 : 0;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
357 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
358
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
359 static inline int isVertMinMaxOk(uint8_t src[], int stride, int QP)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
360 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
361 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
362 int isOk;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
363 src+= stride*3;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
364 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
365 // "int $3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
366 "movq (%1, %2), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
367 "movq (%1, %2, 8), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
368 "movq %%mm0, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
369 "psubusb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
370 "psubusb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
371 "por %%mm1, %%mm0 \n\t" // ABS Diff
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
372
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
373 "movq pQPb, %%mm7 \n\t" // QP,..., QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
374 "paddusb %%mm7, %%mm7 \n\t" // 2QP ... 2QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
375 "psubusb %%mm7, %%mm0 \n\t" // Diff <= 2QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
376 "pcmpeqd b00, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
377 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
378 "pcmpeqd bFF, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
379 // "movd %%mm0, (%1, %2, 4)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
380 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
381 : "=r" (isOk)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
382 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
383 );
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
384 return isOk;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
385 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
386
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
387 int isOk2= 1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
388 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
389 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
390 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
391 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
392 if(abs((int)src[x + stride] - (int)src[x + (stride<<3)]) > 2*QP) isOk2=0;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
393 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
394 /* if(isOk && !isOk2 || !isOk && isOk2)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
395 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
396 printf("\nasm:%d c:%d QP:%d\n", isOk, isOk2, QP);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
397 for(int y=0; y<9; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
398 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
399 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
400 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
401 printf("%d ", src[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
402 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
403 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
404 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
405 } */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
406
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
407 return isOk2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
408 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
409
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
410 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
411
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
412 /**
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
413 * Do a vertical low pass filter on the 8x16 block (only write to the 8x8 block in the middle)
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
414 * using the 9-Tap Filter (1,1,2,2,4,2,2,1,1)/16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
415 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
416 static inline void doVertLowPass(uint8_t *src, int stride, int QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
417 {
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
418 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
419 src+= stride*3;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
420 asm volatile( //"movv %0 %1 %2\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
421 "movq pQPb, %%mm0 \n\t" // QP,..., QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
422
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
423 "movq (%0), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
424 "movq (%0, %1), %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
425 "movq %%mm5, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
426 "movq %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
427 "psubusb %%mm6, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
428 "psubusb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
429 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
430 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
431 "pcmpeqb b00, %%mm2 \n\t" // diff <= QP -> FF
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
432
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
433 "pand %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
434 "pandn %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
435 "por %%mm2, %%mm6 \n\t"// First Line to Filter
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
436
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
437 "movq (%0, %1, 8), %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
438 "leal (%0, %1, 4), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
439 "leal (%0, %1, 8), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
440 "subl %1, %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
441 "addl %1, %0 \n\t" // %0 points to line 1 not 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
442 "movq (%0, %1, 8), %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
443 "movq %%mm5, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
444 "movq %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
445 "psubusb %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
446 "psubusb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
447 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
448 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
449 "pcmpeqb b00, %%mm2 \n\t" // diff <= QP -> FF
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
450
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
451 "pand %%mm2, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
452 "pandn %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
453 "por %%mm2, %%mm7 \n\t" // First Line to Filter
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
454
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
455
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
456 // 1 2 3 4 5 6 7 8
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
457 // %0 %0+%1 %0+2%1 eax %0+4%1 eax+2%1 ebx eax+4%1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
458 // 6 4 2 2 1 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
459 // 6 4 4 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
460 // 6 8 2
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
461
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
462 "movq (%0, %1), %%mm0 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
463 "movq %%mm0, %%mm1 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
464 PAVGB(%%mm6, %%mm0) //1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
465 PAVGB(%%mm6, %%mm0) //3 1 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
466
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
467 "movq (%0, %1, 4), %%mm2 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
468 "movq %%mm2, %%mm5 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
469 PAVGB((%%eax), %%mm2) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
470 PAVGB((%0, %1, 2), %%mm2) // 211 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
471 "movq %%mm2, %%mm3 \n\t" // 211 /4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
472 "movq (%0), %%mm4 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
473 PAVGB(%%mm4, %%mm3) // 4 211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
474 PAVGB(%%mm0, %%mm3) //642211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
475 "movq %%mm3, (%0) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
476 // mm1=2 mm2=3(211) mm4=1 mm5=5 mm6=0 mm7=9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
477 "movq %%mm1, %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
478 PAVGB(%%mm6, %%mm0) //1 1 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
479 "movq %%mm4, %%mm3 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
480 PAVGB((%0,%1,2), %%mm3) // 1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
481 PAVGB((%%eax,%1,2), %%mm5) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
482 PAVGB((%%eax), %%mm5) // 211 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
483 PAVGB(%%mm5, %%mm3) // 2 2211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
484 PAVGB(%%mm0, %%mm3) //4242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
485 "movq %%mm3, (%0,%1) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
486 // mm1=2 mm2=3(211) mm4=1 mm5=4(211) mm6=0 mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
487 PAVGB(%%mm4, %%mm6) //11 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
488 "movq (%%ebx), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
489 PAVGB((%%eax, %1, 2), %%mm0) // 11/2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
490 "movq %%mm0, %%mm3 \n\t" // 11/2
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
491 PAVGB(%%mm1, %%mm0) // 2 11/4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
492 PAVGB(%%mm6, %%mm0) //222 11/8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
493 PAVGB(%%mm2, %%mm0) //22242211/16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
494 "movq (%0, %1, 2), %%mm2 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
495 "movq %%mm0, (%0, %1, 2) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
496 // mm1=2 mm2=3 mm3=6(11) mm4=1 mm5=4(211) mm6=0(11) mm7=9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
497 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
498 PAVGB((%%ebx), %%mm0) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
499 PAVGB(%%mm0, %%mm6) //11 11 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
500 PAVGB(%%mm1, %%mm4) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
501 PAVGB(%%mm2, %%mm1) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
502 PAVGB(%%mm1, %%mm6) //1122 11 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
503 PAVGB(%%mm5, %%mm6) //112242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
504 "movq (%%eax), %%mm5 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
505 "movq %%mm6, (%%eax) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
506 // mm0=7(11) mm1=2(11) mm2=3 mm3=6(11) mm4=1(11) mm5=4 mm7=9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
507 "movq (%%eax, %1, 4), %%mm6 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
508 PAVGB(%%mm7, %%mm6) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
509 PAVGB(%%mm4, %%mm6) // 11 11 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
510 PAVGB(%%mm3, %%mm6) // 11 2211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
511 PAVGB(%%mm5, %%mm2) // 11 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
512 "movq (%0, %1, 4), %%mm4 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
513 PAVGB(%%mm4, %%mm2) // 112 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
514 PAVGB(%%mm2, %%mm6) // 112242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
515 "movq %%mm6, (%0, %1, 4) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
516 // mm0=7(11) mm1=2(11) mm2=3(112) mm3=6(11) mm4=5 mm5=4 mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
517 PAVGB(%%mm7, %%mm1) // 11 2 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
518 PAVGB(%%mm4, %%mm5) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
519 PAVGB(%%mm5, %%mm0) // 11 11 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
520 "movq (%%eax, %1, 2), %%mm6 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
521 PAVGB(%%mm6, %%mm1) // 11 4 2 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
522 PAVGB(%%mm0, %%mm1) // 11224222 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
523 "movq %%mm1, (%%eax, %1, 2) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
524 // mm2=3(112) mm3=6(11) mm4=5 mm5=4(11) mm6=6 mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
525 PAVGB((%%ebx), %%mm2) // 112 4 /8
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
526 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
527 PAVGB(%%mm0, %%mm6) // 1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
528 PAVGB(%%mm7, %%mm6) // 1 12 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
529 PAVGB(%%mm2, %%mm6) // 1122424 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
530 "movq %%mm6, (%%ebx) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
531 // mm0=8 mm3=6(11) mm4=5 mm5=4(11) mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
532 PAVGB(%%mm7, %%mm5) // 11 2 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
533 PAVGB(%%mm7, %%mm5) // 11 6 /8
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
534
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
535 PAVGB(%%mm3, %%mm0) // 112 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
536 PAVGB(%%mm0, %%mm5) // 112246 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
537 "movq %%mm5, (%%eax, %1, 4) \n\t" // X
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
538 "subl %1, %0 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
539
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
540 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
541 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
542 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
543 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
544 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
545 const int l1= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
546 const int l2= stride + l1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
547 const int l3= stride + l2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
548 const int l4= stride + l3;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
549 const int l5= stride + l4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
550 const int l6= stride + l5;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
551 const int l7= stride + l6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
552 const int l8= stride + l7;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
553 const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
554 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
555 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
556 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
557 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
558 const int first= ABS(src[0] - src[l1]) < QP ? src[0] : src[l1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
559 const int last= ABS(src[l8] - src[l9]) < QP ? src[l9] : src[l8];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
560
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
561 int sums[9];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
562 sums[0] = first + src[l1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
563 sums[1] = src[l1] + src[l2];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
564 sums[2] = src[l2] + src[l3];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
565 sums[3] = src[l3] + src[l4];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
566 sums[4] = src[l4] + src[l5];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
567 sums[5] = src[l5] + src[l6];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
568 sums[6] = src[l6] + src[l7];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
569 sums[7] = src[l7] + src[l8];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
570 sums[8] = src[l8] + last;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
571
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
572 src[l1]= ((sums[0]<<2) + ((first + sums[2])<<1) + sums[4] + 8)>>4;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
573 src[l2]= ((src[l2]<<2) + ((first + sums[0] + sums[3])<<1) + sums[5] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
574 src[l3]= ((src[l3]<<2) + ((first + sums[1] + sums[4])<<1) + sums[6] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
575 src[l4]= ((src[l4]<<2) + ((sums[2] + sums[5])<<1) + sums[0] + sums[7] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
576 src[l5]= ((src[l5]<<2) + ((sums[3] + sums[6])<<1) + sums[1] + sums[8] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
577 src[l6]= ((src[l6]<<2) + ((last + sums[7] + sums[4])<<1) + sums[2] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
578 src[l7]= (((last + src[l7])<<2) + ((src[l8] + sums[5])<<1) + sums[3] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
579 src[l8]= ((sums[8]<<2) + ((last + sums[6])<<1) + sums[4] + 8)>>4;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
580
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
581 src++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
582 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
583
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
584 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
585 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
586
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
587 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
588 * Experimental implementation of the filter (Algorithm 1) described in a paper from Ramkishor & Karandikar
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
589 * values are correctly clipped (MMX2)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
590 * values are wraparound (C)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
591 * conclusion: its fast, but introduces ugly horizontal patterns if there is a continious gradient
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
592 0 8 16 24
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
593 x = 8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
594 x/2 = 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
595 x/8 = 1
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
596 1 12 12 23
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
597 */
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
598 static inline void vertRK1Filter(uint8_t *src, int stride, int QP)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
599 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
600 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
601 src+= stride*3;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
602 // FIXME rounding
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
603 asm volatile(
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
604 "pxor %%mm7, %%mm7 \n\t" // 0
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
605 "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
606 "leal (%0, %1), %%eax \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
607 "leal (%%eax, %1, 4), %%ebx \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
608 // 0 1 2 3 4 5 6 7 8 9
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
609 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
610 "movq pQPb, %%mm0 \n\t" // QP,..., QP
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
611 "movq %%mm0, %%mm1 \n\t" // QP,..., QP
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
612 "paddusb b02, %%mm0 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
613 "psrlw $2, %%mm0 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
614 "pand b3F, %%mm0 \n\t" // QP/4,..., QP/4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
615 "paddusb %%mm1, %%mm0 \n\t" // QP*1.25 ...
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
616 "movq (%0, %1, 4), %%mm2 \n\t" // line 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
617 "movq (%%ebx), %%mm3 \n\t" // line 5
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
618 "movq %%mm2, %%mm4 \n\t" // line 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
619 "pcmpeqb %%mm5, %%mm5 \n\t" // -1
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
620 "pxor %%mm2, %%mm5 \n\t" // -line 4 - 1
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
621 PAVGB(%%mm3, %%mm5)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
622 "paddb %%mm6, %%mm5 \n\t" // (l5-l4)/2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
623 "psubusb %%mm3, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
624 "psubusb %%mm2, %%mm3 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
625 "por %%mm3, %%mm4 \n\t" // |l4 - l5|
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
626 "psubusb %%mm0, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
627 "pcmpeqb %%mm7, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
628 "pand %%mm4, %%mm5 \n\t" // d/2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
629
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
630 // "paddb %%mm6, %%mm2 \n\t" // line 4 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
631 "paddb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
632 // "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
633 "movq %%mm2, (%0,%1, 4) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
634
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
635 "movq (%%ebx), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
636 // "paddb %%mm6, %%mm2 \n\t" // line 5 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
637 "psubb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
638 // "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
639 "movq %%mm2, (%%ebx) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
640
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
641 "paddb %%mm6, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
642 "psrlw $2, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
643 "pand b3F, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
644 "psubb b20, %%mm5 \n\t" // (l5-l4)/8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
645
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
646 "movq (%%eax, %1, 2), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
647 "paddb %%mm6, %%mm2 \n\t" // line 3 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
648 "paddsb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
649 "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
650 "movq %%mm2, (%%eax, %1, 2) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
651
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
652 "movq (%%ebx, %1), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
653 "paddb %%mm6, %%mm2 \n\t" // line 6 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
654 "psubsb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
655 "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
656 "movq %%mm2, (%%ebx, %1) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
657
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
658 :
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
659 : "r" (src), "r" (stride)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
660 : "%eax", "%ebx"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
661 );
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
662 #else
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
663 const int l1= stride;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
664 const int l2= stride + l1;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
665 const int l3= stride + l2;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
666 const int l4= stride + l3;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
667 const int l5= stride + l4;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
668 const int l6= stride + l5;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
669 // const int l7= stride + l6;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
670 // const int l8= stride + l7;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
671 // const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
672 int x;
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
673 const int QP15= QP + (QP>>2);
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
674 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
675 for(x=0; x<BLOCK_SIZE; x++)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
676 {
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
677 const int v = (src[x+l5] - src[x+l4]);
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
678 if(ABS(v) < QP15)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
679 {
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
680 src[x+l3] +=v>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
681 src[x+l4] +=v>>1;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
682 src[x+l5] -=v>>1;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
683 src[x+l6] -=v>>3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
684
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
685 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
686 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
687
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
688 #endif
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
689 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
690
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
691 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
692 * Experimental Filter 1
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
693 * will not damage linear gradients
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
694 * Flat blocks should look like they where passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
695 * can only smooth blocks at the expected locations (it cant smooth them if they did move)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
696 * MMX2 version does correct clipping C version doesnt
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
697 */
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
698 static inline void vertX1Filter(uint8_t *src, int stride, int QP)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
699 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
700 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
701 src+= stride*3;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
702
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
703 asm volatile(
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
704 "pxor %%mm7, %%mm7 \n\t" // 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
705 // "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
706 "leal (%0, %1), %%eax \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
707 "leal (%%eax, %1, 4), %%ebx \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
708 // 0 1 2 3 4 5 6 7 8 9
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
709 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
710 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
711 "movq (%0, %1, 4), %%mm1 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
712 "movq %%mm1, %%mm2 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
713 "psubusb %%mm0, %%mm1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
714 "psubusb %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
715 "por %%mm1, %%mm0 \n\t" // |l2 - l3|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
716 "movq (%%ebx), %%mm3 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
717 "movq (%%ebx, %1), %%mm4 \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
718 "movq %%mm3, %%mm5 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
719 "psubusb %%mm4, %%mm3 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
720 "psubusb %%mm5, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
721 "por %%mm4, %%mm3 \n\t" // |l5 - l6|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
722 PAVGB(%%mm3, %%mm0) // (|l2 - l3| + |l5 - l6|)/2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
723 "movq %%mm2, %%mm1 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
724 "psubusb %%mm5, %%mm2 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
725 "movq %%mm2, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
726 "pcmpeqb %%mm7, %%mm2 \n\t" // (l4 - l5) <= 0 ? -1 : 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
727 "psubusb %%mm1, %%mm5 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
728 "por %%mm5, %%mm4 \n\t" // |l4 - l5|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
729 "psubusb %%mm0, %%mm4 \n\t" //d = MAX(0, |l4-l5| - (|l2-l3| + |l5-l6|)/2)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
730 "movq %%mm4, %%mm3 \n\t" // d
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
731 "psubusb pQPb, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
732 "pcmpeqb %%mm7, %%mm4 \n\t" // d <= QP ? -1 : 0
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
733 "psubusb b01, %%mm3 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
734 "pand %%mm4, %%mm3 \n\t" // d <= QP ? d : 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
735
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
736 PAVGB(%%mm7, %%mm3) // d/2
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
737 "movq %%mm3, %%mm1 \n\t" // d/2
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
738 PAVGB(%%mm7, %%mm3) // d/4
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
739 PAVGB(%%mm1, %%mm3) // 3*d/8
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
740
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
741 "movq (%0, %1, 4), %%mm0 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
742 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l4-1 : l4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
743 "psubusb %%mm3, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
744 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
745 "movq %%mm0, (%0, %1, 4) \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
746
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
747 "movq (%%ebx), %%mm0 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
748 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l5-1 : l5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
749 "paddusb %%mm3, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
750 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
751 "movq %%mm0, (%%ebx) \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
752
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
753 PAVGB(%%mm7, %%mm1) // d/4
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
754
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
755 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
756 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l4-1 : l4
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
757 "psubusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
758 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
759 "movq %%mm0, (%%eax, %1, 2) \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
760
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
761 "movq (%%ebx, %1), %%mm0 \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
762 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l5-1 : l5
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
763 "paddusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
764 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
765 "movq %%mm0, (%%ebx, %1) \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
766
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
767 PAVGB(%%mm7, %%mm1) // d/8
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
768
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
769 "movq (%%eax, %1), %%mm0 \n\t" // line 2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
770 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l2-1 : l2
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
771 "psubusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
772 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
773 "movq %%mm0, (%%eax, %1) \n\t" // line 2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
774
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
775 "movq (%%ebx, %1, 2), %%mm0 \n\t" // line 7
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
776 "pxor %%mm2, %%mm0 \n\t" //(l4 - l5) <= 0 ? -l7-1 : l7
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
777 "paddusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
778 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
779 "movq %%mm0, (%%ebx, %1, 2) \n\t" // line 7
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
780
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
781 :
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
782 : "r" (src), "r" (stride)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
783 : "%eax", "%ebx"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
784 );
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
785 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
786
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
787 const int l1= stride;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
788 const int l2= stride + l1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
789 const int l3= stride + l2;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
790 const int l4= stride + l3;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
791 const int l5= stride + l4;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
792 const int l6= stride + l5;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
793 const int l7= stride + l6;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
794 // const int l8= stride + l7;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
795 // const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
796 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
797
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
798 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
799 for(x=0; x<BLOCK_SIZE; x++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
800 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
801 int a= src[l3] - src[l4];
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
802 int b= src[l4] - src[l5];
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
803 int c= src[l5] - src[l6];
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
804
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
805 int d= ABS(b) - ((ABS(a) + ABS(c))>>1);
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
806 d= MAX(d, 0);
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
807
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
808 if(d < QP)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
809 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
810 int v = d * SIGN(-b);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
811
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
812 src[l2] +=v>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
813 src[l3] +=v>>2;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
814 src[l4] +=(3*v)>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
815 src[l5] -=(3*v)>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
816 src[l6] -=v>>2;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
817 src[l7] -=v>>3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
818
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
819 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
820 src++;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
821 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
822 /*
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
823 const int l1= stride;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
824 const int l2= stride + l1;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
825 const int l3= stride + l2;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
826 const int l4= stride + l3;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
827 const int l5= stride + l4;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
828 const int l6= stride + l5;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
829 const int l7= stride + l6;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
830 const int l8= stride + l7;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
831 const int l9= stride + l8;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
832 for(int x=0; x<BLOCK_SIZE; x++)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
833 {
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
834 int v2= src[l2];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
835 int v3= src[l3];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
836 int v4= src[l4];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
837 int v5= src[l5];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
838 int v6= src[l6];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
839 int v7= src[l7];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
840
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
841 if(ABS(v4-v5)<QP && ABS(v4-v5) - (ABS(v3-v4) + ABS(v5-v6))>0 )
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
842 {
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
843 src[l3] = (6*v2 + 4*v3 + 3*v4 + 2*v5 + v6 )/16;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
844 src[l4] = (3*v2 + 3*v3 + 4*v4 + 3*v5 + 2*v6 + v7 )/16;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
845 src[l5] = (1*v2 + 2*v3 + 3*v4 + 4*v5 + 3*v6 + 3*v7)/16;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
846 src[l6] = ( 1*v3 + 2*v4 + 3*v5 + 4*v6 + 6*v7)/16;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
847 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
848 src++;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
849 }
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
850 */
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
851 #endif
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
852 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
853
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
854 /**
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
855 * Experimental Filter 1 (Horizontal)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
856 * will not damage linear gradients
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
857 * Flat blocks should look like they where passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
858 * can only smooth blocks at the expected locations (it cant smooth them if they did move)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
859 * MMX2 version does correct clipping C version doesnt
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
860 * not identical with the vertical one
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
861 */
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
862 static inline void horizX1Filter(uint8_t *src, int stride, int QP)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
863 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
864 int y;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
865 static uint64_t *lut= NULL;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
866 if(lut==NULL)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
867 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
868 int i;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
869 lut= (uint64_t*)memalign(8, 256*8);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
870 for(i=0; i<256; i++)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
871 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
872 int v= i < 128 ? 2*i : 2*(i-256);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
873 /*
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
874 //Simulate 112242211 9-Tap filter
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
875 uint64_t a= (v/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
876 uint64_t b= (v/8) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
877 uint64_t c= (v/4) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
878 uint64_t d= (3*v/8) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
879 */
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
880 //Simulate piecewise linear interpolation
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
881 uint64_t a= (v/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
882 uint64_t b= (v*3/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
883 uint64_t c= (v*5/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
884 uint64_t d= (7*v/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
885 uint64_t A= (0x100 - a)&0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
886 uint64_t B= (0x100 - b)&0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
887 uint64_t C= (0x100 - c)&0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
888 uint64_t D= (0x100 - c)&0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
889
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
890 lut[i] = (a<<56) | (b<<48) | (c<<40) | (d<<32) |
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
891 (D<<24) | (C<<16) | (B<<8) | (A);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
892 //lut[i] = (v<<32) | (v<<24);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
893 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
894 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
895
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
896 #if 0
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
897 asm volatile(
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
898 "pxor %%mm7, %%mm7 \n\t" // 0
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
899 // "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
900 "leal (%0, %1), %%eax \n\t"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
901 "leal (%%eax, %1, 4), %%ebx \n\t"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
902
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
903 "movq b80, %%mm6 \n\t"
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
904 "movd pQPb, %%mm5 \n\t" // QP
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
905 "movq %%mm5, %%mm4 \n\t"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
906 "paddusb %%mm5, %%mm5 \n\t" // 2QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
907 "paddusb %%mm5, %%mm4 \n\t" // 3QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
908 "pxor %%mm5, %%mm5 \n\t" // 0
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
909 "psubb %%mm4, %%mm5 \n\t" // -3QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
910 "por bm11111110, %%mm5 \n\t" // ...,FF,FF,-3QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
911 "psllq $24, %%mm5 \n\t"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
912
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
913 // 0 1 2 3 4 5 6 7 8 9
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
914 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
915
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
916 #define HX1old(a) \
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
917 "movd " #a ", %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
918 "movd 4" #a ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
919 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
920 "movq %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
921 "movq %%mm0, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
922 "psrlq $8, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
923 "psubusb %%mm1, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
924 "psubusb %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
925 "por %%mm2, %%mm1 \n\t" /* p´x = |px - p(x+1)| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
926 "pcmpeqb %%mm7, %%mm2 \n\t" /* p´x = sgn[px - p(x+1)] */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
927 "pshufw $0x00, %%mm1, %%mm3 \n\t" /* p´5 = |p1 - p2| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
928 PAVGB(%%mm1, %%mm3) /* p´5 = (|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
929 "psrlq $16, %%mm3 \n\t" /* p´3 = (|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
930 "psubusb %%mm3, %%mm1 \n\t" /* |p3-p4|-(|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
931 "paddb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
932 "psubusb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
933 PAVGB(%%mm7, %%mm1)\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
934 "pxor %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
935 "psubb %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
936 "psrlq $24, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
937 "movd %%mm1, %%ecx \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
938 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
939 "paddsb (%3, %%ecx, 8), %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
940 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
941 "movq %%mm0, " #a " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
942
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
943 /*
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
944 HX1old((%0))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
945 HX1old((%%eax))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
946 HX1old((%%eax, %1))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
947 HX1old((%%eax, %1, 2))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
948 HX1old((%0, %1, 4))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
949 HX1old((%%ebx))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
950 HX1old((%%ebx, %1))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
951 HX1old((%%ebx, %1, 2))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
952 */
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
953
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
954 //FIXME add some comments, its unreadable ...
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
955 #define HX1b(a, c, b, d) \
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
956 "movd " #a ", %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
957 "movd 4" #a ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
958 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
959 "movd " #b ", %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
960 "movq %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
961 "movq %%mm0, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
962 "psrlq $8, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
963 "movd 4" #b ", %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
964 "psubusb %%mm1, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
965 "psubusb %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
966 "por %%mm2, %%mm1 \n\t" /* p´x = |px - p(x+1)| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
967 "pcmpeqb %%mm7, %%mm2 \n\t" /* p´x = sgn[px - p(x+1)] */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
968 "punpckldq %%mm3, %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
969 "movq %%mm1, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
970 "psllq $32, %%mm3 \n\t" /* p´5 = |p1 - p2| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
971 PAVGB(%%mm1, %%mm3) /* p´5 = (|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
972 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
973 "psrlq $16, %%mm3 \n\t" /* p´3 = (|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
974 "psubusb %%mm3, %%mm1 \n\t" /* |p3-p4|-(|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
975 "movq %%mm4, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
976 "paddb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
977 "psubusb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
978 "psrlq $8, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
979 PAVGB(%%mm7, %%mm1)\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
980 "pxor %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
981 "psubb %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
982 "movq %%mm4, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
983 "psrlq $24, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
984 "psubusb %%mm3, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
985 "movd %%mm1, %%ecx \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
986 "psubusb %%mm4, %%mm3 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
987 "paddsb (%2, %%ecx, 8), %%mm0 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
988 "por %%mm2, %%mm3 \n\t" /* p´x = |px - p(x+1)| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
989 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
990 "pcmpeqb %%mm7, %%mm2 \n\t" /* p´x = sgn[px - p(x+1)] */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
991 "movq %%mm3, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
992 "psllq $32, %%mm1 \n\t" /* p´5 = |p1 - p2| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
993 "movq %%mm0, " #a " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
994 PAVGB(%%mm3, %%mm1) /* p´5 = (|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
995 "paddb %%mm6, %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
996 "psrlq $16, %%mm1 \n\t" /* p´3 = (|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
997 "psubusb %%mm1, %%mm3 \n\t" /* |p3-p4|-(|p2-p1| + |p6-p5|)/2 */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
998 "paddb %%mm5, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
999 "psubusb %%mm5, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1000 PAVGB(%%mm7, %%mm3)\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1001 "pxor %%mm2, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1002 "psubb %%mm2, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1003 "psrlq $24, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1004 "movd " #c ", %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1005 "movd 4" #c ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1006 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1007 "paddb %%mm6, %%mm0 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
1008 "paddsb (%2, %%ecx, 8), %%mm0 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1009 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1010 "movq %%mm0, " #c " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1011 "movd %%mm3, %%ecx \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1012 "movd " #d ", %%mm0 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
1013 "paddsb (%2, %%ecx, 8), %%mm4 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1014 "movd 4" #d ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1015 "paddb %%mm6, %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1016 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1017 "movq %%mm4, " #b " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1018 "paddb %%mm6, %%mm0 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
1019 "paddsb (%2, %%ecx, 8), %%mm0 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1020 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1021 "movq %%mm0, " #d " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1022
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1023 HX1b((%0),(%%eax),(%%eax, %1),(%%eax, %1, 2))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1024 HX1b((%0, %1, 4),(%%ebx),(%%ebx, %1),(%%ebx, %1, 2))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1025
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1026
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1027 :
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
1028 : "r" (src), "r" (stride), "r" (lut)
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1029 : "%eax", "%ebx", "%ecx"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1030 );
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1031 #else
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1032
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1033 //FIXME (has little in common with the mmx2 version)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1034 for(y=0; y<BLOCK_SIZE; y++)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1035 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1036 int a= src[1] - src[2];
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1037 int b= src[3] - src[4];
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1038 int c= src[5] - src[6];
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1039
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1040 int d= MAX(ABS(b) - (ABS(a) + ABS(c))/2, 0);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1041
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1042 if(d < QP)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1043 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1044 int v = d * SIGN(-b);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1045
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1046 src[1] +=v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1047 src[2] +=v/4;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1048 src[3] +=3*v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1049 src[4] -=3*v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1050 src[5] -=v/4;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1051 src[6] -=v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1052
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1053 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1054 src+=stride;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1055 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1056 #endif
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1057 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1058
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1059
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1060 static inline void doVertDefFilter(uint8_t src[], int stride, int QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1061 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1062 #ifdef HAVE_MMX
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1063 src+= stride*4;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1064 //FIXME try pmul for *5 stuff
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1065 // src[0]=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1066 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1067 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1068 "leal (%0, %1), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1069 "leal (%%eax, %1, 4), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1070 // 0 1 2 3 4 5 6 7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1071 // %0 %0+%1 %0+2%1 eax+2%1 %0+4%1 eax+4%1 ebx+%1 ebx+2%1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1072 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1073
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1074 "movq (%0), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1075 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1076 "punpcklbw %%mm7, %%mm0 \n\t" // low part of line 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1077 "punpckhbw %%mm7, %%mm1 \n\t" // high part of line 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1078
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1079 "movq (%%eax), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1080 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1081 "punpcklbw %%mm7, %%mm2 \n\t" // low part of line 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1082 "punpckhbw %%mm7, %%mm3 \n\t" // high part of line 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1083
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1084 "movq (%%eax, %1), %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1085 "movq %%mm4, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1086 "punpcklbw %%mm7, %%mm4 \n\t" // low part of line 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1087 "punpckhbw %%mm7, %%mm5 \n\t" // high part of line 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1088
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1089 "paddw %%mm0, %%mm0 \n\t" // 2L0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1090 "paddw %%mm1, %%mm1 \n\t" // 2H0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1091 "psubw %%mm4, %%mm2 \n\t" // L1 - L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1092 "psubw %%mm5, %%mm3 \n\t" // H1 - H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1093 "psubw %%mm2, %%mm0 \n\t" // 2L0 - L1 + L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1094 "psubw %%mm3, %%mm1 \n\t" // 2H0 - H1 + H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1095
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1096 "psllw $2, %%mm2 \n\t" // 4L1 - 4L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1097 "psllw $2, %%mm3 \n\t" // 4H1 - 4H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1098 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1099 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1100
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1101 "movq (%%eax, %1, 2), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1102 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1103 "punpcklbw %%mm7, %%mm2 \n\t" // L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1104 "punpckhbw %%mm7, %%mm3 \n\t" // H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1105
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1106 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1107 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1108 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1109 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1110 "movq %%mm0, temp0 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1111 "movq %%mm1, temp1 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1112
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1113 "movq (%0, %1, 4), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1114 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1115 "punpcklbw %%mm7, %%mm0 \n\t" // L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1116 "punpckhbw %%mm7, %%mm1 \n\t" // H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1117
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1118 "psubw %%mm0, %%mm2 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1119 "psubw %%mm1, %%mm3 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1120 "movq %%mm2, temp2 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1121 "movq %%mm3, temp3 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1122 "paddw %%mm4, %%mm4 \n\t" // 2L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1123 "paddw %%mm5, %%mm5 \n\t" // 2H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1124 "psubw %%mm2, %%mm4 \n\t" // 2L2 - L3 + L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1125 "psubw %%mm3, %%mm5 \n\t" // 2H2 - H3 + H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1126
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1127 "psllw $2, %%mm2 \n\t" // 4L3 - 4L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1128 "psllw $2, %%mm3 \n\t" // 4H3 - 4H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1129 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1130 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1131 //50 opcodes so far
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1132 "movq (%%ebx), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1133 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1134 "punpcklbw %%mm7, %%mm2 \n\t" // L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1135 "punpckhbw %%mm7, %%mm3 \n\t" // H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1136 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1137 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1138 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - 2L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1139 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - 2H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1140
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1141 "movq (%%ebx, %1), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1142 "punpcklbw %%mm7, %%mm6 \n\t" // L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1143 "psubw %%mm6, %%mm2 \n\t" // L5 - L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1144 "movq (%%ebx, %1), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1145 "punpckhbw %%mm7, %%mm6 \n\t" // H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1146 "psubw %%mm6, %%mm3 \n\t" // H5 - H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1147
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1148 "paddw %%mm0, %%mm0 \n\t" // 2L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1149 "paddw %%mm1, %%mm1 \n\t" // 2H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1150 "psubw %%mm2, %%mm0 \n\t" // 2L4 - L5 + L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1151 "psubw %%mm3, %%mm1 \n\t" // 2H4 - H5 + H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1152
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1153 "psllw $2, %%mm2 \n\t" // 4L5 - 4L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1154 "psllw $2, %%mm3 \n\t" // 4H5 - 4H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1155 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1156 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1157
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1158 "movq (%%ebx, %1, 2), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1159 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1160 "punpcklbw %%mm7, %%mm2 \n\t" // L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1161 "punpckhbw %%mm7, %%mm3 \n\t" // H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1162
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1163 "paddw %%mm2, %%mm2 \n\t" // 2L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1164 "paddw %%mm3, %%mm3 \n\t" // 2H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1165 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6 - 2L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1166 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6 - 2H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1167
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1168 "movq temp0, %%mm2 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1169 "movq temp1, %%mm3 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1170
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1171 #ifdef HAVE_MMX2
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1172 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1173 "psubw %%mm0, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1174 "pmaxsw %%mm6, %%mm0 \n\t" // |2L4 - 5L5 + 5L6 - 2L7|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1175 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1176 "psubw %%mm1, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1177 "pmaxsw %%mm6, %%mm1 \n\t" // |2H4 - 5H5 + 5H6 - 2H7|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1178 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1179 "psubw %%mm2, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1180 "pmaxsw %%mm6, %%mm2 \n\t" // |2L0 - 5L1 + 5L2 - 2L3|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1181 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1182 "psubw %%mm3, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1183 "pmaxsw %%mm6, %%mm3 \n\t" // |2H0 - 5H1 + 5H2 - 2H3|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1184 #else
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1185 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1186 "pcmpgtw %%mm0, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1187 "pxor %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1188 "psubw %%mm6, %%mm0 \n\t" // |2L4 - 5L5 + 5L6 - 2L7|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1189 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1190 "pcmpgtw %%mm1, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1191 "pxor %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1192 "psubw %%mm6, %%mm1 \n\t" // |2H4 - 5H5 + 5H6 - 2H7|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1193 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1194 "pcmpgtw %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1195 "pxor %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1196 "psubw %%mm6, %%mm2 \n\t" // |2L0 - 5L1 + 5L2 - 2L3|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1197 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1198 "pcmpgtw %%mm3, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1199 "pxor %%mm6, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1200 "psubw %%mm6, %%mm3 \n\t" // |2H0 - 5H1 + 5H2 - 2H3|
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1201 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1202
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1203 #ifdef HAVE_MMX2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1204 "pminsw %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1205 "pminsw %%mm3, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1206 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1207 "movq %%mm0, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1208 "psubusw %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1209 "psubw %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1210 "movq %%mm1, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1211 "psubusw %%mm3, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1212 "psubw %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1213 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1214
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1215 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1216 "pcmpgtw %%mm4, %%mm6 \n\t" // sign(2L2 - 5L3 + 5L4 - 2L5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1217 "pxor %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1218 "psubw %%mm6, %%mm4 \n\t" // |2L2 - 5L3 + 5L4 - 2L5|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1219 "pcmpgtw %%mm5, %%mm7 \n\t" // sign(2H2 - 5H3 + 5H4 - 2H5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1220 "pxor %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1221 "psubw %%mm7, %%mm5 \n\t" // |2H2 - 5H3 + 5H4 - 2H5|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1222 // 100 opcodes
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1223 "movd %2, %%mm2 \n\t" // QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1224 "punpcklwd %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1225 "punpcklwd %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1226 "psllw $3, %%mm2 \n\t" // 8QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1227 "movq %%mm2, %%mm3 \n\t" // 8QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1228 "pcmpgtw %%mm4, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1229 "pcmpgtw %%mm5, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1230 "pand %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1231 "pand %%mm3, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1232
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1233
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1234 "psubusw %%mm0, %%mm4 \n\t" // hd
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1235 "psubusw %%mm1, %%mm5 \n\t" // ld
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1236
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1237
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1238 "movq w05, %%mm2 \n\t" // 5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1239 "pmullw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1240 "pmullw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1241 "movq w20, %%mm2 \n\t" // 32
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1242 "paddw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1243 "paddw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1244 "psrlw $6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1245 "psrlw $6, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1246
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1247 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1248 "movq w06, %%mm2 \n\t" // 6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1249 "paddw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1250 "paddw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1251 "movq w1400, %%mm2 \n\t" // 1400h = 5120 = 5/64*2^16
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1252 //FIXME if *5/64 is supposed to be /13 then we should use 5041 instead of 5120
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1253 "pmulhw %%mm2, %%mm4 \n\t" // hd/13
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1254 "pmulhw %%mm2, %%mm5 \n\t" // ld/13
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1255 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1256
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1257 "movq temp2, %%mm0 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1258 "movq temp3, %%mm1 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1259
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1260 "pxor %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1261 "pxor %%mm3, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1262
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1263 "pcmpgtw %%mm0, %%mm2 \n\t" // sign (L3-L4)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1264 "pcmpgtw %%mm1, %%mm3 \n\t" // sign (H3-H4)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1265 "pxor %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1266 "pxor %%mm3, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1267 "psubw %%mm2, %%mm0 \n\t" // |L3-L4|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1268 "psubw %%mm3, %%mm1 \n\t" // |H3-H4|
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1269 "psrlw $1, %%mm0 \n\t" // |L3 - L4|/2
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1270 "psrlw $1, %%mm1 \n\t" // |H3 - H4|/2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1271
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1272 "pxor %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1273 "pxor %%mm7, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1274 "pand %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1275 "pand %%mm3, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1276
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1277 #ifdef HAVE_MMX2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1278 "pminsw %%mm0, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1279 "pminsw %%mm1, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1280 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1281 "movq %%mm4, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1282 "psubusw %%mm0, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1283 "psubw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1284 "movq %%mm5, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1285 "psubusw %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1286 "psubw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1287 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1288 "pxor %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1289 "pxor %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1290 "psubw %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1291 "psubw %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1292 "packsswb %%mm5, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1293 "movq (%%eax, %1, 2), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1294 "paddb %%mm4, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1295 "movq %%mm0, (%%eax, %1, 2) \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1296 "movq (%0, %1, 4), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1297 "psubb %%mm4, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1298 "movq %%mm0, (%0, %1, 4) \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1299
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1300 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1301 : "r" (src), "r" (stride), "r" (QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1302 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1303 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1304 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1305 const int l1= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1306 const int l2= stride + l1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1307 const int l3= stride + l2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1308 const int l4= stride + l3;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1309 const int l5= stride + l4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1310 const int l6= stride + l5;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1311 const int l7= stride + l6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1312 const int l8= stride + l7;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1313 // const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1314 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1315 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1316 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1317 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1318 const int middleEnergy= 5*(src[l5] - src[l4]) + 2*(src[l3] - src[l6]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1319 if(ABS(middleEnergy) < 8*QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1320 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1321 const int q=(src[l4] - src[l5])/2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1322 const int leftEnergy= 5*(src[l3] - src[l2]) + 2*(src[l1] - src[l4]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1323 const int rightEnergy= 5*(src[l7] - src[l6]) + 2*(src[l5] - src[l8]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1324
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1325 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1326 d= MAX(d, 0);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1327
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1328 d= (5*d + 32) >> 6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1329 d*= SIGN(-middleEnergy);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1330
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1331 if(q>0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1332 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1333 d= d<0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1334 d= d>q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1335 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1336 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1337 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1338 d= d>0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1339 d= d<q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1340 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1341
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1342 src[l4]-= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1343 src[l5]+= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1344 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1345 src++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1346 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1347 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1348 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1349
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1350 //FIXME? |255-0| = 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1351 /**
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1352 * Check if the given 8x8 Block is mostly "flat"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1353 */
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1354 static inline int isHorizDC(uint8_t src[], int stride)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1355 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1356 // src++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1357 int numEq= 0;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1358 #if 0
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1359 asm volatile (
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1360 // "int $3 \n\t"
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1361 "leal (%1, %2), %%ecx \n\t"
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1362 "leal (%%ecx, %2, 4), %%ebx \n\t"
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1363 // 0 1 2 3 4 5 6 7 8 9
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1364 // %1 ecx ecx+%2 ecx+2%2 %1+4%2 ebx ebx+%2 ebx+2%2 %1+8%2 ebx+4%2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1365 "movq b7E, %%mm7 \n\t" // mm7 = 0x7F
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1366 "movq b7C, %%mm6 \n\t" // mm6 = 0x7D
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1367 "pxor %%mm0, %%mm0 \n\t"
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1368 "movl %1, %%eax \n\t"
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1369 "andl $0x1F, %%eax \n\t"
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1370 "cmpl $24, %%eax \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1371 "leal tempBlock, %%eax \n\t"
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1372 "jb 1f \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1373
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1374 #define HDC_CHECK_AND_CPY(src, dst) \
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1375 "movd " #src ", %%mm2 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1376 "punpckldq 4" #src ", %%mm2 \n\t" /* (%1) */\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1377 "movq %%mm2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1378 "psrlq $8, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1379 "psubb %%mm1, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1380 "paddb %%mm7, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1381 "pcmpgtb %%mm6, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1382 "paddb %%mm2, %%mm0 \n\t"\
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1383 "movq %%mm1," #dst "(%%eax) \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1384
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1385 HDC_CHECK_AND_CPY((%1),0)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1386 HDC_CHECK_AND_CPY((%%ecx),8)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1387 HDC_CHECK_AND_CPY((%%ecx, %2),16)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1388 HDC_CHECK_AND_CPY((%%ecx, %2, 2),24)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1389 HDC_CHECK_AND_CPY((%1, %2, 4),32)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1390 HDC_CHECK_AND_CPY((%%ebx),40)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1391 HDC_CHECK_AND_CPY((%%ebx, %2),48)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1392 HDC_CHECK_AND_CPY((%%ebx, %2, 2),56)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1393 "jmp 2f \n\t"
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1394 "1: \n\t"
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1395 // src does not cross a 32 byte cache line so dont waste time with alignment
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1396 #define HDC_CHECK_AND_CPY2(src, dst) \
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1397 "movq " #src ", %%mm2 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1398 "movq " #src ", %%mm1 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1399 "psrlq $8, %%mm2 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1400 "psubb %%mm1, %%mm2 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1401 "paddb %%mm7, %%mm2 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1402 "pcmpgtb %%mm6, %%mm2 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1403 "paddb %%mm2, %%mm0 \n\t"\
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1404 "movq %%mm1," #dst "(%%eax) \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1405
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1406 HDC_CHECK_AND_CPY2((%1),0)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1407 HDC_CHECK_AND_CPY2((%%ecx),8)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1408 HDC_CHECK_AND_CPY2((%%ecx, %2),16)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1409 HDC_CHECK_AND_CPY2((%%ecx, %2, 2),24)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1410 HDC_CHECK_AND_CPY2((%1, %2, 4),32)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1411 HDC_CHECK_AND_CPY2((%%ebx),40)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1412 HDC_CHECK_AND_CPY2((%%ebx, %2),48)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1413 HDC_CHECK_AND_CPY2((%%ebx, %2, 2),56)
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1414 "2: \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1415 "psllq $8, %%mm0 \n\t" // remove dummy value
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1416 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1417 "psrlw $8, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1418 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1419 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1420 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1421 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1422 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1423 "psrlq $32, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1424 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1425 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1426 : "=r" (numEq)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1427 : "r" (src), "r" (stride)
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1428 : "%eax", "%ebx", "%ecx"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1429 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1430 // printf("%d\n", numEq);
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
1431 numEq= (256 - numEq) &0xFF;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1432 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1433 int y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1434 for(y=0; y<BLOCK_SIZE; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1435 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1436 if(((src[0] - src[1] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1437 if(((src[1] - src[2] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1438 if(((src[2] - src[3] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1439 if(((src[3] - src[4] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1440 if(((src[4] - src[5] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1441 if(((src[5] - src[6] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1442 if(((src[6] - src[7] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1443 src+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1444 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1445 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1446 /* if(abs(numEq - asmEq) > 0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1447 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1448 // printf("\nasm:%d c:%d\n", asmEq, numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1449 for(int y=0; y<8; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1450 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1451 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1452 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1453 printf("%d ", src[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1454 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1455 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1456 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1457 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1458 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1459 // printf("%d\n", numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1460 return numEq > hFlatnessThreshold;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1461 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1462
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1463 static inline int isHorizMinMaxOk(uint8_t src[], int stride, int QP)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1464 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1465 if(abs(src[0] - src[7]) > 2*QP) return 0;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1466
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1467 return 1;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1468 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1469
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1470 static inline void doHorizDefFilter(uint8_t dst[], int stride, int QP)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1471 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1472 #if 0
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1473 asm volatile(
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1474 "leal (%0, %1), %%ecx \n\t"
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1475 "leal (%%ecx, %1, 4), %%ebx \n\t"
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1476 // 0 1 2 3 4 5 6 7 8 9
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1477 // %0 ecx ecx+%1 ecx+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1478 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1479 "movq bm00001000, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1480 "movd %2, %%mm5 \n\t" // QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1481 "movq %%mm5, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1482 "paddusb %%mm5, %%mm5 \n\t" // 2QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1483 "paddusb %%mm5, %%mm4 \n\t" // 3QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1484 "psllq $24, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1485 "pxor %%mm5, %%mm5 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1486 "psubb %%mm4, %%mm5 \n\t" // -QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1487 "leal tempBlock, %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1488
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1489 //FIXME? "unroll by 2" and mix
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1490 #ifdef HAVE_MMX2
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1491 #define HDF(src, dst) \
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1492 "movq " #src "(%%eax), %%mm0 \n\t"\
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1493 "movq " #src "(%%eax), %%mm1 \n\t"\
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1494 "movq " #src "(%%eax), %%mm2 \n\t"\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1495 "psrlq $8, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1496 "psubusb %%mm1, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1497 "psubusb %%mm0, %%mm1 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1498 "por %%mm2, %%mm1 \n\t" /* p´x = |px - p(x+1)| */\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1499 "pcmpeqb %%mm7, %%mm2 \n\t" /* p´x = sgn[px - p(x+1)] */\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1500 "pshufw $0x00, %%mm1, %%mm3 \n\t" /* p´5 = |p1 - p2| */\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1501 "pminub %%mm1, %%mm3 \n\t" /* p´5 = min(|p2-p1|, |p6-p5|)*/\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1502 "psrlq $16, %%mm3 \n\t" /* p´3 = min(|p2-p1|, |p6-p5|)*/\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1503 "psubusb %%mm3, %%mm1 \n\t" /* |p3-p4|-min(|p1-p2|,|p5-p6|) */\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1504 "paddb %%mm5, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1505 "psubusb %%mm5, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1506 "psrlw $2, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1507 "pxor %%mm2, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1508 "psubb %%mm2, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1509 "pand %%mm6, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1510 "psubb %%mm1, %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1511 "psllq $8, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1512 "paddb %%mm1, %%mm0 \n\t"\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1513 "movd %%mm0, " #dst" \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1514 "psrlq $32, %%mm0 \n\t"\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1515 "movd %%mm0, 4" #dst" \n\t"
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1516 #else
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1517 #define HDF(src, dst)\
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1518 "movq " #src "(%%eax), %%mm0 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1519 "movq %%mm0, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1520 "movq %%mm0, %%mm2 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1521 "psrlq $8, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1522 "psubusb %%mm1, %%mm2 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1523 "psubusb %%mm0, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1524 "por %%mm2, %%mm1 \n\t" /* p´x = |px - p(x+1)| */\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1525 "pcmpeqb %%mm7, %%mm2 \n\t" /* p´x = sgn[px - p(x+1)] */\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1526 "movq %%mm1, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1527 "psllq $32, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1528 "movq %%mm3, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1529 "psubusb %%mm1, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1530 "psubb %%mm4, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1531 "psrlq $16, %%mm3 \n\t" /* p´3 = min(|p2-p1|, |p6-p5|)*/\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1532 "psubusb %%mm3, %%mm1 \n\t" /* |p3-p4|-min(|p1-p2|,|p5,ü6|) */\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1533 "paddb %%mm5, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1534 "psubusb %%mm5, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1535 "psrlw $2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1536 "pxor %%mm2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1537 "psubb %%mm2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1538 "pand %%mm6, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1539 "psubb %%mm1, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1540 "psllq $8, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1541 "paddb %%mm1, %%mm0 \n\t"\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1542 "movd %%mm0, " #dst " \n\t"\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1543 "psrlq $32, %%mm0 \n\t"\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1544 "movd %%mm0, 4" #dst " \n\t"
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1545 #endif
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1546 HDF(0,(%0))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1547 HDF(8,(%%ecx))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1548 HDF(16,(%%ecx, %1))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1549 HDF(24,(%%ecx, %1, 2))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1550 HDF(32,(%0, %1, 4))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1551 HDF(40,(%%ebx))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1552 HDF(48,(%%ebx, %1))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1553 HDF(56,(%%ebx, %1, 2))
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1554 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1555 : "r" (dst), "r" (stride), "r" (QP)
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1556 : "%eax", "%ebx", "%ecx"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1557 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1558 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1559 int y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1560 for(y=0; y<BLOCK_SIZE; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1561 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1562 const int middleEnergy= 5*(dst[4] - dst[5]) + 2*(dst[2] - dst[5]);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1563
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1564 if(ABS(middleEnergy) < 8*QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1565 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1566 const int q=(dst[3] - dst[4])/2;
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1567 const int leftEnergy= 5*(dst[2] - dst[1]) + 2*(dst[0] - dst[3]);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1568 const int rightEnergy= 5*(dst[6] - dst[5]) + 2*(dst[4] - dst[7]);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1569
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1570 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1571 d= MAX(d, 0);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1572
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1573 d= (5*d + 32) >> 6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1574 d*= SIGN(-middleEnergy);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1575
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1576 if(q>0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1577 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1578 d= d<0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1579 d= d>q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1580 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1581 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1582 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1583 d= d>0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1584 d= d<q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1585 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1586
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1587 dst[3]-= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1588 dst[4]+= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1589 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1590 dst+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1591 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1592 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1593 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1594
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1595 /**
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1596 * Do a horizontal low pass filter on the 10x8 block (dst points to middle 8x8 Block)
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
1597 * using the 9-Tap Filter (1,1,2,2,4,2,2,1,1)/16 (C version)
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
1598 * using the 7-Tap Filter (2,2,2,4,2,2,2)/16 (MMX2/3DNOW version)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1599 */
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1600 static inline void doHorizLowPass(uint8_t dst[], int stride, int QP)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1601 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1602
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1603 #if 0
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1604 asm volatile(
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1605 "leal (%0, %1), %%ecx \n\t"
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1606 "leal (%%ecx, %1, 4), %%ebx \n\t"
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1607 // 0 1 2 3 4 5 6 7 8 9
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1608 // %0 ecx ecx+%1 ecx+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1609 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1610 "leal tempBlock, %%eax \n\t"
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1611 /*
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1612 #define HLP1 "movq (%0), %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1613 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1614 "psllq $8, %%mm0 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1615 PAVGB(%%mm1, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1616 "psrlw $8, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1617 "pxor %%mm1, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1618 "packuswb %%mm1, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1619 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1620 "movq %%mm0, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1621 "psllq $32, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1622 "paddb %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1623 "psllq $16, %%mm2 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1624 PAVGB(%%mm2, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1625 "movq %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1626 "pand bm11001100, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1627 "paddusb %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1628 "psrlq $8, %%mm3 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1629 PAVGB(%%mm1, %%mm4)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1630 PAVGB(%%mm3, %%mm2)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1631 "psrlq $16, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1632 "punpcklbw %%mm2, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1633 "movq %%mm2, (%0) \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1634
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1635 #define HLP2 "movq (%0), %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1636 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1637 "psllq $8, %%mm0 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1638 PAVGB(%%mm1, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1639 "psrlw $8, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1640 "pxor %%mm1, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1641 "packuswb %%mm1, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1642 "movq %%mm0, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1643 "psllq $32, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1644 "psllq $16, %%mm2 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1645 PAVGB(%%mm2, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1646 "movq %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1647 "pand bm11001100, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1648 "paddusb %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1649 "psrlq $8, %%mm3 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1650 PAVGB(%%mm3, %%mm2)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1651 "psrlq $16, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1652 "punpcklbw %%mm2, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1653 "movq %%mm2, (%0) \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1654 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1655 // approximately a 7-Tap Filter with Vector (1,2,3,4,3,2,1)/16
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1656 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1657 Implemented Exact 7-Tap
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1658 9421 A321
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1659 36421 64321
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1660 334321 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1661 1234321 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1662 1234321 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1663 123433 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1664 12463 12346
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1665 1249 123A
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1666
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1667 */
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1668
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1669 #ifdef HAVE_MMX2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1670 #define HLP3(i) "movq " #i "(%%eax), %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1671 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1672 "movq %%mm0, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1673 "movq %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1674 "movq %%mm0, %%mm4 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1675 "psllq $8, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1676 "psrlq $8, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1677 "pand bm00000001, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1678 "pand bm10000000, %%mm4 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1679 "por %%mm3, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1680 "por %%mm4, %%mm2 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1681 PAVGB(%%mm2, %%mm1)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1682 PAVGB(%%mm1, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1683 \
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1684 "pshufw $0xF9, %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1685 "pshufw $0x90, %%mm0, %%mm4 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1686 PAVGB(%%mm3, %%mm4)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1687 PAVGB(%%mm4, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1688 "movd %%mm0, (%0) \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1689 "psrlq $32, %%mm0 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1690 "movd %%mm0, 4(%0) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1691 #else
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1692 #define HLP3(i) "movq " #i "(%%eax), %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1693 "movq %%mm0, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1694 "movq %%mm0, %%mm2 \n\t"\
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1695 "movd -4(%0), %%mm3 \n\t" /*0001000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1696 "movd 8(%0), %%mm4 \n\t" /*0001000*/\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1697 "psllq $8, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1698 "psrlq $8, %%mm2 \n\t"\
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1699 "psrlq $24, %%mm3 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1700 "psllq $56, %%mm4 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1701 "por %%mm3, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1702 "por %%mm4, %%mm2 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1703 PAVGB(%%mm2, %%mm1)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1704 PAVGB(%%mm1, %%mm0)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1705 \
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1706 "movq %%mm0, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1707 "movq %%mm0, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1708 "movq %%mm0, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1709 "psrlq $16, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1710 "psllq $16, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1711 "pand bm11000000, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1712 "por %%mm5, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1713 "movq %%mm0, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1714 "pand bm00000011, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1715 "por %%mm5, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1716 PAVGB(%%mm3, %%mm4)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1717 PAVGB(%%mm4, %%mm0)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1718 "movd %%mm0, (%0) \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1719 "psrlq $32, %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1720 "movd %%mm0, 4(%0) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1721 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1722
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1723 /* uses the 7-Tap Filter: 1112111 */
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1724 #define NEW_HLP(src, dst)\
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1725 "movq " #src "(%%eax), %%mm1 \n\t"\
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1726 "movq " #src "(%%eax), %%mm2 \n\t"\
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1727 "psllq $8, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1728 "psrlq $8, %%mm2 \n\t"\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1729 "movd -4" #dst ", %%mm3 \n\t" /*0001000*/\
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1730 "movd 8" #dst ", %%mm4 \n\t" /*0001000*/\
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1731 "psrlq $24, %%mm3 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1732 "psllq $56, %%mm4 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1733 "por %%mm3, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1734 "por %%mm4, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1735 "movq %%mm1, %%mm5 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1736 PAVGB(%%mm2, %%mm1)\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1737 "movq " #src "(%%eax), %%mm0 \n\t"\
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1738 PAVGB(%%mm1, %%mm0)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1739 "psllq $8, %%mm5 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1740 "psrlq $8, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1741 "por %%mm3, %%mm5 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1742 "por %%mm4, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1743 "movq %%mm5, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1744 PAVGB(%%mm2, %%mm5)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1745 "psllq $8, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1746 "psrlq $8, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1747 "por %%mm3, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1748 "por %%mm4, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1749 PAVGB(%%mm2, %%mm1)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1750 PAVGB(%%mm1, %%mm5)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1751 PAVGB(%%mm5, %%mm0)\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1752 "movd %%mm0, " #dst " \n\t"\
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1753 "psrlq $32, %%mm0 \n\t"\
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1754 "movd %%mm0, 4" #dst " \n\t"
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1755
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1756 /* uses the 9-Tap Filter: 112242211 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1757 #define NEW_HLP2(i)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1758 "movq " #i "(%%eax), %%mm0 \n\t" /*0001000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1759 "movq %%mm0, %%mm1 \n\t" /*0001000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1760 "movq %%mm0, %%mm2 \n\t" /*0001000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1761 "movd -4(%0), %%mm3 \n\t" /*0001000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1762 "movd 8(%0), %%mm4 \n\t" /*0001000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1763 "psllq $8, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1764 "psrlq $8, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1765 "psrlq $24, %%mm3 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1766 "psllq $56, %%mm4 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1767 "por %%mm3, %%mm1 \n\t" /*0010000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1768 "por %%mm4, %%mm2 \n\t" /*0000100*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1769 "movq %%mm1, %%mm5 \n\t" /*0010000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1770 PAVGB(%%mm2, %%mm1) /*0010100*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1771 PAVGB(%%mm1, %%mm0) /*0012100*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1772 "psllq $8, %%mm5 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1773 "psrlq $8, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1774 "por %%mm3, %%mm5 \n\t" /*0100000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1775 "por %%mm4, %%mm2 \n\t" /*0000010*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1776 "movq %%mm5, %%mm1 \n\t" /*0100000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1777 PAVGB(%%mm2, %%mm5) /*0100010*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1778 "psllq $8, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1779 "psrlq $8, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1780 "por %%mm3, %%mm1 \n\t" /*1000000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1781 "por %%mm4, %%mm2 \n\t" /*0000001*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1782 "movq %%mm1, %%mm6 \n\t" /*1000000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1783 PAVGB(%%mm2, %%mm1) /*1000001*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1784 "psllq $8, %%mm6 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1785 "psrlq $8, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1786 "por %%mm3, %%mm6 \n\t"/*100000000*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1787 "por %%mm4, %%mm2 \n\t"/*000000001*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1788 PAVGB(%%mm2, %%mm6) /*100000001*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1789 PAVGB(%%mm6, %%mm1) /*110000011*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1790 PAVGB(%%mm1, %%mm5) /*112000211*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1791 PAVGB(%%mm5, %%mm0) /*112242211*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1792 "movd %%mm0, (%0) \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1793 "psrlq $32, %%mm0 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1794 "movd %%mm0, 4(%0) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1795
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1796 #define HLP(src, dst) NEW_HLP(src, dst)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1797
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1798 HLP(0, (%0))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1799 HLP(8, (%%ecx))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1800 HLP(16, (%%ecx, %1))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1801 HLP(24, (%%ecx, %1, 2))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1802 HLP(32, (%0, %1, 4))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1803 HLP(40, (%%ebx))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1804 HLP(48, (%%ebx, %1))
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1805 HLP(56, (%%ebx, %1, 2))
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1806
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1807 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1808 : "r" (dst), "r" (stride)
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
1809 : "%eax", "%ebx", "%ecx"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1810 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1811
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1812 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1813 int y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1814 for(y=0; y<BLOCK_SIZE; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1815 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1816 const int first= ABS(dst[-1] - dst[0]) < QP ? dst[-1] : dst[0];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1817 const int last= ABS(dst[8] - dst[7]) < QP ? dst[8] : dst[7];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1818
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1819 int sums[9];
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1820 sums[0] = first + dst[0];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1821 sums[1] = dst[0] + dst[1];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1822 sums[2] = dst[1] + dst[2];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1823 sums[3] = dst[2] + dst[3];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1824 sums[4] = dst[3] + dst[4];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1825 sums[5] = dst[4] + dst[5];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1826 sums[6] = dst[5] + dst[6];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1827 sums[7] = dst[6] + dst[7];
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
1828 sums[8] = dst[7] + last;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1829
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1830 dst[0]= ((sums[0]<<2) + ((first + sums[2])<<1) + sums[4] + 8)>>4;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1831 dst[1]= ((dst[1]<<2) + ((first + sums[0] + sums[3])<<1) + sums[5] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1832 dst[2]= ((dst[2]<<2) + ((first + sums[1] + sums[4])<<1) + sums[6] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1833 dst[3]= ((dst[3]<<2) + ((sums[2] + sums[5])<<1) + sums[0] + sums[7] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1834 dst[4]= ((dst[4]<<2) + ((sums[3] + sums[6])<<1) + sums[1] + sums[8] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1835 dst[5]= ((dst[5]<<2) + ((last + sums[7] + sums[4])<<1) + sums[2] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1836 dst[6]= (((last + dst[6])<<2) + ((dst[7] + sums[5])<<1) + sums[3] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1837 dst[7]= ((sums[8]<<2) + ((last + sums[6])<<1) + sums[4] + 8)>>4;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1838
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1839 dst+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1840 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1841 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1842 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1843
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1844 static inline void dering(uint8_t src[], int stride, int QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1845 {
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1846 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1847 asm volatile(
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1848 "movq pQPb, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1849 "paddusb %%mm0, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1850 "movq %%mm0, pQPb2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1851
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1852 "leal (%0, %1), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1853 "leal (%%eax, %1, 4), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1854 // 0 1 2 3 4 5 6 7 8 9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1855 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1856
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1857 "pcmpeqb %%mm6, %%mm6 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1858 "pxor %%mm7, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1859 #ifdef HAVE_MMX2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1860 #define FIND_MIN_MAX(addr)\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1861 "movq " #addr ", %%mm0 \n\t"\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1862 "pminub %%mm0, %%mm6 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1863 "pmaxub %%mm0, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1864 #else
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1865 #define FIND_MIN_MAX(addr)\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1866 "movq " #addr ", %%mm0 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1867 "movq %%mm6, %%mm1 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1868 "psubusb %%mm0, %%mm7 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1869 "paddb %%mm0, %%mm7 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1870 "psubusb %%mm0, %%mm1 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1871 "psubb %%mm1, %%mm6 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1872 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1873
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1874 FIND_MIN_MAX((%%eax))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1875 FIND_MIN_MAX((%%eax, %1))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1876 FIND_MIN_MAX((%%eax, %1, 2))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1877 FIND_MIN_MAX((%0, %1, 4))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1878 FIND_MIN_MAX((%%ebx))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1879 FIND_MIN_MAX((%%ebx, %1))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1880 FIND_MIN_MAX((%%ebx, %1, 2))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1881 FIND_MIN_MAX((%0, %1, 8))
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1882
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1883 "movq %%mm6, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1884 "psrlq $8, %%mm6 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1885 #ifdef HAVE_MMX2
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1886 "pminub %%mm4, %%mm6 \n\t" // min of pixels
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1887 "pshufw $0xF9, %%mm6, %%mm4 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1888 "pminub %%mm4, %%mm6 \n\t" // min of pixels
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1889 "pshufw $0xFE, %%mm6, %%mm4 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1890 "pminub %%mm4, %%mm6 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1891 #else
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1892 "movq %%mm6, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1893 "psubusb %%mm4, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1894 "psubb %%mm1, %%mm6 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1895 "movq %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1896 "psrlq $16, %%mm6 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1897 "movq %%mm6, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1898 "psubusb %%mm4, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1899 "psubb %%mm1, %%mm6 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1900 "movq %%mm6, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1901 "psrlq $32, %%mm6 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1902 "movq %%mm6, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1903 "psubusb %%mm4, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1904 "psubb %%mm1, %%mm6 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1905 #endif
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1906
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1907
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1908 "movq %%mm7, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1909 "psrlq $8, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1910 #ifdef HAVE_MMX2
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1911 "pmaxub %%mm4, %%mm7 \n\t" // max of pixels
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1912 "pshufw $0xF9, %%mm7, %%mm4 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1913 "pmaxub %%mm4, %%mm7 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1914 "pshufw $0xFE, %%mm7, %%mm4 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1915 "pmaxub %%mm4, %%mm7 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1916 #else
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1917 "psubusb %%mm4, %%mm7 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1918 "paddb %%mm4, %%mm7 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1919 "movq %%mm7, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1920 "psrlq $16, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1921 "psubusb %%mm4, %%mm7 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1922 "paddb %%mm4, %%mm7 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1923 "movq %%mm7, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1924 "psrlq $32, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1925 "psubusb %%mm4, %%mm7 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1926 "paddb %%mm4, %%mm7 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1927 #endif
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1928 PAVGB(%%mm6, %%mm7) // a=(max + min)/2
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1929 "punpcklbw %%mm7, %%mm7 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1930 "punpcklbw %%mm7, %%mm7 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1931 "punpcklbw %%mm7, %%mm7 \n\t"
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1932 "movq %%mm7, temp0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1933
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1934 "movq (%0), %%mm0 \n\t" // L10
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1935 "movq %%mm0, %%mm1 \n\t" // L10
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1936 "movq %%mm0, %%mm2 \n\t" // L10
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1937 "psllq $8, %%mm1 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1938 "psrlq $8, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1939 "movd -4(%0), %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1940 "movd 8(%0), %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1941 "psrlq $24, %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1942 "psllq $56, %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1943 "por %%mm3, %%mm1 \n\t" // L00
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1944 "por %%mm4, %%mm2 \n\t" // L20
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1945 "movq %%mm1, %%mm3 \n\t" // L00
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1946 PAVGB(%%mm2, %%mm1) // (L20 + L00)/2
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1947 PAVGB(%%mm0, %%mm1) // (L20 + L00 + 2L10)/4
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1948 "psubusb %%mm7, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1949 "psubusb %%mm7, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1950 "psubusb %%mm7, %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1951 "pcmpeqb b00, %%mm0 \n\t" // L10 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1952 "pcmpeqb b00, %%mm2 \n\t" // L20 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1953 "pcmpeqb b00, %%mm3 \n\t" // L00 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1954 "paddb %%mm2, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1955 "paddb %%mm3, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1956
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1957 "movq (%%eax), %%mm2 \n\t" // L11
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1958 "movq %%mm2, %%mm3 \n\t" // L11
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1959 "movq %%mm2, %%mm4 \n\t" // L11
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1960 "psllq $8, %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1961 "psrlq $8, %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1962 "movd -4(%%eax), %%mm5 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1963 "movd 8(%%eax), %%mm6 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1964 "psrlq $24, %%mm5 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1965 "psllq $56, %%mm6 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1966 "por %%mm5, %%mm3 \n\t" // L01
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1967 "por %%mm6, %%mm4 \n\t" // L21
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1968 "movq %%mm3, %%mm5 \n\t" // L01
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1969 PAVGB(%%mm4, %%mm3) // (L21 + L01)/2
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1970 PAVGB(%%mm2, %%mm3) // (L21 + L01 + 2L11)/4
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1971 "psubusb %%mm7, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1972 "psubusb %%mm7, %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1973 "psubusb %%mm7, %%mm5 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1974 "pcmpeqb b00, %%mm2 \n\t" // L11 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1975 "pcmpeqb b00, %%mm4 \n\t" // L21 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1976 "pcmpeqb b00, %%mm5 \n\t" // L01 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1977 "paddb %%mm4, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1978 "paddb %%mm5, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1979 // 0, 2, 3, 1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1980 #define DERING_CORE(dst,src,ppsx,psx,sx,pplx,plx,lx,t0,t1) \
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1981 "movq " #src ", " #sx " \n\t" /* src[0] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1982 "movq " #sx ", " #lx " \n\t" /* src[0] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1983 "movq " #sx ", " #t0 " \n\t" /* src[0] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1984 "psllq $8, " #lx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1985 "psrlq $8, " #t0 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1986 "movd -4" #src ", " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1987 "psrlq $24, " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1988 "por " #t1 ", " #lx " \n\t" /* src[-1] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1989 "movd 8" #src ", " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1990 "psllq $56, " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1991 "por " #t1 ", " #t0 " \n\t" /* src[+1] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1992 "movq " #lx ", " #t1 " \n\t" /* src[-1] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1993 PAVGB(t0, lx) /* (src[-1] + src[+1])/2 */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1994 PAVGB(sx, lx) /* (src[-1] + 2src[0] + src[+1])/4 */\
135
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1995 PAVGB(lx, pplx) \
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1996 "movq " #lx ", temp1 \n\t"\
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1997 "movq temp0, " #lx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1998 "psubusb " #lx ", " #t1 " \n\t"\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1999 "psubusb " #lx ", " #t0 " \n\t"\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
2000 "psubusb " #lx ", " #sx " \n\t"\
135
5083d662ff85 faster dering
michael
parents: 134
diff changeset
2001 "movq b00, " #lx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
2002 "pcmpeqb " #lx ", " #t1 " \n\t" /* src[-1] > a ? 0 : -1*/\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
2003 "pcmpeqb " #lx ", " #t0 " \n\t" /* src[+1] > a ? 0 : -1*/\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
2004 "pcmpeqb " #lx ", " #sx " \n\t" /* src[0] > a ? 0 : -1*/\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2005 "paddb " #t1 ", " #t0 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2006 "paddb " #t0 ", " #sx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2007 \
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2008 PAVGB(plx, pplx) /* filtered */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2009 "movq " #dst ", " #t0 " \n\t" /* dst */\
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
2010 "movq " #t0 ", " #t1 " \n\t" /* dst */\
2c469e390117 dering in c
michael
parents: 133
diff changeset
2011 "psubusb pQPb2, " #t0 " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
2012 "paddusb pQPb2, " #t1 " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
2013 PMAXUB(t0, pplx)\
2c469e390117 dering in c
michael
parents: 133
diff changeset
2014 PMINUB(t1, pplx, t0)\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2015 "paddb " #sx ", " #ppsx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2016 "paddb " #psx ", " #ppsx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2017 "#paddb b02, " #ppsx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2018 "pand b08, " #ppsx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
2019 "pcmpeqb " #lx ", " #ppsx " \n\t"\
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
2020 "pand " #ppsx ", " #pplx " \n\t"\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2021 "pandn " #dst ", " #ppsx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
2022 "por " #pplx ", " #ppsx " \n\t"\
135
5083d662ff85 faster dering
michael
parents: 134
diff changeset
2023 "movq " #ppsx ", " #dst " \n\t"\
5083d662ff85 faster dering
michael
parents: 134
diff changeset
2024 "movq temp1, " #lx " \n\t"
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
2025
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2026 /*
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2027 0000000
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2028 1111111
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2029
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2030 1111110
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2031 1111101
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2032 1111100
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2033 1111011
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2034 1111010
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2035 1111001
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2036
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2037 1111000
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2038 1110111
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2039
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2040 */
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2041 //DERING_CORE(dst,src ,ppsx ,psx ,sx ,pplx ,plx ,lx ,t0 ,t1)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2042 DERING_CORE((%%eax),(%%eax, %1) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2043 DERING_CORE((%%eax, %1),(%%eax, %1, 2) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2044 DERING_CORE((%%eax, %1, 2),(%0, %1, 4) ,%%mm4,%%mm0,%%mm2,%%mm5,%%mm1,%%mm3,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2045 DERING_CORE((%0, %1, 4),(%%ebx) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2046 DERING_CORE((%%ebx),(%%ebx, %1) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2047 DERING_CORE((%%ebx, %1), (%%ebx, %1, 2),%%mm4,%%mm0,%%mm2,%%mm5,%%mm1,%%mm3,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2048 DERING_CORE((%%ebx, %1, 2),(%0, %1, 8) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
2049 DERING_CORE((%0, %1, 8),(%%ebx, %1, 4) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2050
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2051
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2052 : : "r" (src), "r" (stride), "r" (QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2053 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2054 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2055 #else
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
2056 int y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2057 int min=255;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2058 int max=0;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2059 int avg;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2060 uint8_t *p;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2061 int s[10];
2c469e390117 dering in c
michael
parents: 133
diff changeset
2062
2c469e390117 dering in c
michael
parents: 133
diff changeset
2063 for(y=1; y<9; y++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
2064 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
2065 int x;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2066 p= src + stride*y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2067 for(x=1; x<9; x++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
2068 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
2069 p++;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2070 if(*p > max) max= *p;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2071 if(*p < min) min= *p;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2072 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
2073 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
2074 avg= (min + max + 1)/2;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2075
2c469e390117 dering in c
michael
parents: 133
diff changeset
2076 for(y=0; y<10; y++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
2077 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
2078 int x;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2079 int t = 0;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2080 p= src + stride*y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2081 for(x=0; x<10; x++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
2082 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
2083 if(*p > avg) t |= (1<<x);
2c469e390117 dering in c
michael
parents: 133
diff changeset
2084 p++;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2085 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
2086 t |= (~t)<<16;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2087 t &= (t<<1) & (t>>1);
2c469e390117 dering in c
michael
parents: 133
diff changeset
2088 s[y] = t;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2089 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
2090
2c469e390117 dering in c
michael
parents: 133
diff changeset
2091 for(y=1; y<9; y++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
2092 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
2093 int x;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2094 int t = s[y-1] & s[y] & s[y+1];
2c469e390117 dering in c
michael
parents: 133
diff changeset
2095 t|= t>>16;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2096
2c469e390117 dering in c
michael
parents: 133
diff changeset
2097 p= src + stride*y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2098 for(x=1; x<9; x++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
2099 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
2100 p++;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2101 if(t & (1<<x))
2c469e390117 dering in c
michael
parents: 133
diff changeset
2102 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
2103 int f= (*(p-stride-1)) + 2*(*(p-stride)) + (*(p-stride+1))
2c469e390117 dering in c
michael
parents: 133
diff changeset
2104 +2*(*(p -1)) + 4*(*p ) + 2*(*(p +1))
2c469e390117 dering in c
michael
parents: 133
diff changeset
2105 +(*(p+stride-1)) + 2*(*(p+stride)) + (*(p+stride+1));
2c469e390117 dering in c
michael
parents: 133
diff changeset
2106 f= (f + 8)>>4;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2107
2c469e390117 dering in c
michael
parents: 133
diff changeset
2108 if (*p + 2*QP < f) *p= *p + 2*QP;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2109 else if(*p - 2*QP > f) *p= *p - 2*QP;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2110 else *p=f;
2c469e390117 dering in c
michael
parents: 133
diff changeset
2111 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
2112 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
2113 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
2114
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2115 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2116 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2117
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2118 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2119 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2120 * will be called for every 8x8 block and can read & write from line 4-15
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2121 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2122 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2123 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2124 static inline void deInterlaceInterpolateLinear(uint8_t src[], int stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2125 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2126 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2127 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2128 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2129 "leal (%0, %1), %%eax \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2130 "leal (%%eax, %1, 4), %%ebx \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2131 // 0 1 2 3 4 5 6 7 8 9
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2132 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2133
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2134 "movq (%0), %%mm0 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2135 "movq (%%eax, %1), %%mm1 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2136 PAVGB(%%mm1, %%mm0)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2137 "movq %%mm0, (%%eax) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2138 "movq (%0, %1, 4), %%mm0 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2139 PAVGB(%%mm0, %%mm1)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2140 "movq %%mm1, (%%eax, %1, 2) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2141 "movq (%%ebx, %1), %%mm1 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2142 PAVGB(%%mm1, %%mm0)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2143 "movq %%mm0, (%%ebx) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2144 "movq (%0, %1, 8), %%mm0 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2145 PAVGB(%%mm0, %%mm1)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2146 "movq %%mm1, (%%ebx, %1, 2) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2147
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2148 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2149 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2150 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2151 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2152 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2153 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2154 for(x=0; x<8; x++)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2155 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2156 src[stride] = (src[0] + src[stride*2])>>1;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2157 src[stride*3] = (src[stride*2] + src[stride*4])>>1;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2158 src[stride*5] = (src[stride*4] + src[stride*6])>>1;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2159 src[stride*7] = (src[stride*6] + src[stride*8])>>1;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2160 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2161 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2162 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2163 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2164
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2165 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2166 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2167 * will be called for every 8x8 block and can read & write from line 4-15
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2168 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2169 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2170 * this filter will read lines 3-15 and write 7-13
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2171 * no cliping in C version
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2172 */
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2173 static inline void deInterlaceInterpolateCubic(uint8_t src[], int stride)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2174 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2175 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2176 src+= stride*3;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2177 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2178 "leal (%0, %1), %%eax \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2179 "leal (%%eax, %1, 4), %%ebx \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2180 "leal (%%ebx, %1, 4), %%ecx \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2181 "addl %1, %%ecx \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2182 "pxor %%mm7, %%mm7 \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2183 // 0 1 2 3 4 5 6 7 8 9 10
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2184 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1 ecx
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2185
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2186 #define DEINT_CUBIC(a,b,c,d,e)\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2187 "movq " #a ", %%mm0 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2188 "movq " #b ", %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2189 "movq " #d ", %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2190 "movq " #e ", %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2191 PAVGB(%%mm2, %%mm1) /* (b+d) /2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2192 PAVGB(%%mm3, %%mm0) /* a(a+e) /2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2193 "movq %%mm0, %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2194 "punpcklbw %%mm7, %%mm0 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2195 "punpckhbw %%mm7, %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2196 "movq %%mm1, %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2197 "punpcklbw %%mm7, %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2198 "punpckhbw %%mm7, %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2199 "psubw %%mm1, %%mm0 \n\t" /* L(a+e - (b+d))/2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2200 "psubw %%mm3, %%mm2 \n\t" /* H(a+e - (b+d))/2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2201 "psraw $3, %%mm0 \n\t" /* L(a+e - (b+d))/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2202 "psraw $3, %%mm2 \n\t" /* H(a+e - (b+d))/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2203 "psubw %%mm0, %%mm1 \n\t" /* L(9b + 9d - a - e)/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2204 "psubw %%mm2, %%mm3 \n\t" /* H(9b + 9d - a - e)/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2205 "packuswb %%mm3, %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2206 "movq %%mm1, " #c " \n\t"
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2207
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2208 DEINT_CUBIC((%0), (%%eax, %1), (%%eax, %1, 2), (%0, %1, 4), (%%ebx, %1))
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2209 DEINT_CUBIC((%%eax, %1), (%0, %1, 4), (%%ebx), (%%ebx, %1), (%0, %1, 8))
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2210 DEINT_CUBIC((%0, %1, 4), (%%ebx, %1), (%%ebx, %1, 2), (%0, %1, 8), (%%ecx))
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2211 DEINT_CUBIC((%%ebx, %1), (%0, %1, 8), (%%ebx, %1, 4), (%%ecx), (%%ecx, %1, 2))
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2212
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2213 : : "r" (src), "r" (stride)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2214 : "%eax", "%ebx", "ecx"
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2215 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2216 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2217 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2218 src+= stride*3;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2219 for(x=0; x<8; x++)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2220 {
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2221 src[stride*3] = (-src[0] + 9*src[stride*2] + 9*src[stride*4] - src[stride*6])>>4;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2222 src[stride*5] = (-src[stride*2] + 9*src[stride*4] + 9*src[stride*6] - src[stride*8])>>4;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2223 src[stride*7] = (-src[stride*4] + 9*src[stride*6] + 9*src[stride*8] - src[stride*10])>>4;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2224 src[stride*9] = (-src[stride*6] + 9*src[stride*8] + 9*src[stride*10] - src[stride*12])>>4;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2225 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2226 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2227 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2228 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2229
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2230 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2231 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2232 * will be called for every 8x8 block and can read & write from line 4-15
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2233 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2234 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2235 * will shift the image up by 1 line (FIXME if this is a problem)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2236 * this filter will read lines 4-13 and write 4-11
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2237 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2238 static inline void deInterlaceBlendLinear(uint8_t src[], int stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2239 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2240 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2241 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2242 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2243 "leal (%0, %1), %%eax \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2244 "leal (%%eax, %1, 4), %%ebx \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2245 // 0 1 2 3 4 5 6 7 8 9
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2246 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2247
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2248 "movq (%0), %%mm0 \n\t" // L0
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2249 "movq (%%eax, %1), %%mm1 \n\t" // L2
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2250 PAVGB(%%mm1, %%mm0) // L0+L2
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2251 "movq (%%eax), %%mm2 \n\t" // L1
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2252 PAVGB(%%mm2, %%mm0)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2253 "movq %%mm0, (%0) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2254 "movq (%%eax, %1, 2), %%mm0 \n\t" // L3
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2255 PAVGB(%%mm0, %%mm2) // L1+L3
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2256 PAVGB(%%mm1, %%mm2) // 2L2 + L1 + L3
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2257 "movq %%mm2, (%%eax) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2258 "movq (%0, %1, 4), %%mm2 \n\t" // L4
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2259 PAVGB(%%mm2, %%mm1) // L2+L4
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2260 PAVGB(%%mm0, %%mm1) // 2L3 + L2 + L4
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2261 "movq %%mm1, (%%eax, %1) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2262 "movq (%%ebx), %%mm1 \n\t" // L5
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2263 PAVGB(%%mm1, %%mm0) // L3+L5
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2264 PAVGB(%%mm2, %%mm0) // 2L4 + L3 + L5
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2265 "movq %%mm0, (%%eax, %1, 2) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2266 "movq (%%ebx, %1), %%mm0 \n\t" // L6
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2267 PAVGB(%%mm0, %%mm2) // L4+L6
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2268 PAVGB(%%mm1, %%mm2) // 2L5 + L4 + L6
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2269 "movq %%mm2, (%0, %1, 4) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2270 "movq (%%ebx, %1, 2), %%mm2 \n\t" // L7
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2271 PAVGB(%%mm2, %%mm1) // L5+L7
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2272 PAVGB(%%mm0, %%mm1) // 2L6 + L5 + L7
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2273 "movq %%mm1, (%%ebx) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2274 "movq (%0, %1, 8), %%mm1 \n\t" // L8
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2275 PAVGB(%%mm1, %%mm0) // L6+L8
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2276 PAVGB(%%mm2, %%mm0) // 2L7 + L6 + L8
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2277 "movq %%mm0, (%%ebx, %1) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2278 "movq (%%ebx, %1, 4), %%mm0 \n\t" // L9
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2279 PAVGB(%%mm0, %%mm2) // L7+L9
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2280 PAVGB(%%mm1, %%mm2) // 2L8 + L7 + L9
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2281 "movq %%mm2, (%%ebx, %1, 2) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2282
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2283
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2284 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2285 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2286 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2287 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2288 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2289 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2290 for(x=0; x<8; x++)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2291 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2292 src[0 ] = (src[0 ] + 2*src[stride ] + src[stride*2])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2293 src[stride ] = (src[stride ] + 2*src[stride*2] + src[stride*3])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2294 src[stride*2] = (src[stride*2] + 2*src[stride*3] + src[stride*4])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2295 src[stride*3] = (src[stride*3] + 2*src[stride*4] + src[stride*5])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2296 src[stride*4] = (src[stride*4] + 2*src[stride*5] + src[stride*6])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2297 src[stride*5] = (src[stride*5] + 2*src[stride*6] + src[stride*7])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2298 src[stride*6] = (src[stride*6] + 2*src[stride*7] + src[stride*8])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2299 src[stride*7] = (src[stride*7] + 2*src[stride*8] + src[stride*9])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2300 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2301 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2302 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2303 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2304
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2305 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2306 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2307 * will be called for every 8x8 block and can read & write from line 4-15,
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2308 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2309 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2310 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2311 static inline void deInterlaceMedian(uint8_t src[], int stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2312 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2313 #ifdef HAVE_MMX
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2314 src+= 4*stride;
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2315 #ifdef HAVE_MMX2
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2316 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2317 "leal (%0, %1), %%eax \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2318 "leal (%%eax, %1, 4), %%ebx \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2319 // 0 1 2 3 4 5 6 7 8 9
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2320 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2321
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2322 "movq (%0), %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2323 "movq (%%eax, %1), %%mm2 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2324 "movq (%%eax), %%mm1 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2325 "movq %%mm0, %%mm3 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2326 "pmaxub %%mm1, %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2327 "pminub %%mm3, %%mm1 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2328 "pmaxub %%mm2, %%mm1 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2329 "pminub %%mm1, %%mm0 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2330 "movq %%mm0, (%%eax) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2331
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2332 "movq (%0, %1, 4), %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2333 "movq (%%eax, %1, 2), %%mm1 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2334 "movq %%mm2, %%mm3 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2335 "pmaxub %%mm1, %%mm2 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2336 "pminub %%mm3, %%mm1 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2337 "pmaxub %%mm0, %%mm1 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2338 "pminub %%mm1, %%mm2 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2339 "movq %%mm2, (%%eax, %1, 2) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2340
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2341 "movq (%%ebx), %%mm2 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2342 "movq (%%ebx, %1), %%mm1 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2343 "movq %%mm2, %%mm3 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2344 "pmaxub %%mm0, %%mm2 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2345 "pminub %%mm3, %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2346 "pmaxub %%mm1, %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2347 "pminub %%mm0, %%mm2 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2348 "movq %%mm2, (%%ebx) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2349
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2350 "movq (%%ebx, %1, 2), %%mm2 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2351 "movq (%0, %1, 8), %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2352 "movq %%mm2, %%mm3 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2353 "pmaxub %%mm0, %%mm2 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2354 "pminub %%mm3, %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2355 "pmaxub %%mm1, %%mm0 \n\t" //
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2356 "pminub %%mm0, %%mm2 \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2357 "movq %%mm2, (%%ebx, %1, 2) \n\t"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2358
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2359
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2360 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2361 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2362 );
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2363
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2364 #else // MMX without MMX2
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2365 asm volatile(
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2366 "leal (%0, %1), %%eax \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2367 "leal (%%eax, %1, 4), %%ebx \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2368 // 0 1 2 3 4 5 6 7 8 9
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2369 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2370 "pxor %%mm7, %%mm7 \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2371
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2372 #define MEDIAN(a,b,c)\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2373 "movq " #a ", %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2374 "movq " #b ", %%mm2 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2375 "movq " #c ", %%mm1 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2376 "movq %%mm0, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2377 "movq %%mm1, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2378 "movq %%mm2, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2379 "psubusb %%mm1, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2380 "psubusb %%mm2, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2381 "psubusb %%mm0, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2382 "pcmpeqb %%mm7, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2383 "pcmpeqb %%mm7, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2384 "pcmpeqb %%mm7, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2385 "movq %%mm3, %%mm6 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2386 "pxor %%mm4, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2387 "pxor %%mm5, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2388 "pxor %%mm6, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2389 "por %%mm3, %%mm1 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2390 "por %%mm4, %%mm2 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2391 "por %%mm5, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2392 "pand %%mm2, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2393 "pand %%mm1, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2394 "movq %%mm0, " #b " \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2395
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2396 MEDIAN((%0), (%%eax), (%%eax, %1))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2397 MEDIAN((%%eax, %1), (%%eax, %1, 2), (%0, %1, 4))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2398 MEDIAN((%0, %1, 4), (%%ebx), (%%ebx, %1))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2399 MEDIAN((%%ebx, %1), (%%ebx, %1, 2), (%0, %1, 8))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2400
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2401 : : "r" (src), "r" (stride)
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2402 : "%eax", "%ebx"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2403 );
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2404 #endif // MMX
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2405 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2406 //FIXME
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2407 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2408 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2409 for(x=0; x<8; x++)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2410 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2411 src[0 ] = (src[0 ] + 2*src[stride ] + src[stride*2])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2412 src[stride ] = (src[stride ] + 2*src[stride*2] + src[stride*3])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2413 src[stride*2] = (src[stride*2] + 2*src[stride*3] + src[stride*4])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2414 src[stride*3] = (src[stride*3] + 2*src[stride*4] + src[stride*5])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2415 src[stride*4] = (src[stride*4] + 2*src[stride*5] + src[stride*6])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2416 src[stride*5] = (src[stride*5] + 2*src[stride*6] + src[stride*7])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2417 src[stride*6] = (src[stride*6] + 2*src[stride*7] + src[stride*8])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2418 src[stride*7] = (src[stride*7] + 2*src[stride*8] + src[stride*9])>>2;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2419 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2420 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2421 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2422 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2423
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
2424 #ifdef HAVE_MMX
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2425 /**
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2426 * transposes and shift the given 8x8 Block into dst1 and dst2
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2427 */
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2428 static inline void transpose1(uint8_t *dst1, uint8_t *dst2, uint8_t *src, int srcStride)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2429 {
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2430 asm(
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2431 "leal (%0, %1), %%eax \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2432 "leal (%%eax, %1, 4), %%ebx \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2433 // 0 1 2 3 4 5 6 7 8 9
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2434 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2435 "movq (%0), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2436 "movq (%%eax), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2437 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2438 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2439 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2440
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2441 "movq (%%eax, %1), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2442 "movq (%%eax, %1, 2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2443 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2444 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2445 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2446
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2447 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2448 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2449 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2450 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2451 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2452 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2453
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2454 "movd %%mm0, 128(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2455 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2456 "movd %%mm0, 144(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2457 "movd %%mm3, 160(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2458 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2459 "movd %%mm3, 176(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2460 "movd %%mm3, 48(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2461 "movd %%mm2, 192(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2462 "movd %%mm2, 64(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2463 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2464 "movd %%mm2, 80(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2465 "movd %%mm1, 96(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2466 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2467 "movd %%mm1, 112(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2468
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2469 "movq (%0, %1, 4), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2470 "movq (%%ebx), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2471 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2472 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2473 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2474
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2475 "movq (%%ebx, %1), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2476 "movq (%%ebx, %1, 2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2477 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2478 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2479 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2480
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2481 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2482 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2483 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2484 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2485 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2486 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2487
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2488 "movd %%mm0, 132(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2489 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2490 "movd %%mm0, 148(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2491 "movd %%mm3, 164(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2492 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2493 "movd %%mm3, 180(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2494 "movd %%mm3, 52(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2495 "movd %%mm2, 196(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2496 "movd %%mm2, 68(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2497 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2498 "movd %%mm2, 84(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2499 "movd %%mm1, 100(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2500 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2501 "movd %%mm1, 116(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2502
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2503
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2504 :: "r" (src), "r" (srcStride), "r" (dst1), "r" (dst2)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2505 : "%eax", "%ebx"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2506 );
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2507 }
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2508
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2509 /**
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2510 * transposes the given 8x8 block
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2511 */
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2512 static inline void transpose2(uint8_t *dst, int dstStride, uint8_t *src)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2513 {
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2514 asm(
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2515 "leal (%0, %1), %%eax \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2516 "leal (%%eax, %1, 4), %%ebx \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2517 // 0 1 2 3 4 5 6 7 8 9
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2518 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2519 "movq (%2), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2520 "movq 16(%2), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2521 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2522 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2523 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2524
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2525 "movq 32(%2), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2526 "movq 48(%2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2527 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2528 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2529 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2530
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2531 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2532 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2533 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2534 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2535 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2536 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2537
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2538 "movd %%mm0, (%0) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2539 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2540 "movd %%mm0, (%%eax) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2541 "movd %%mm3, (%%eax, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2542 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2543 "movd %%mm3, (%%eax, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2544 "movd %%mm2, (%0, %1, 4) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2545 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2546 "movd %%mm2, (%%ebx) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2547 "movd %%mm1, (%%ebx, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2548 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2549 "movd %%mm1, (%%ebx, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2550
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2551
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2552 "movq 64(%2), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2553 "movq 80(%2), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2554 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2555 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2556 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2557
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2558 "movq 96(%2), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2559 "movq 112(%2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2560 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2561 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2562 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2563
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2564 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2565 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2566 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2567 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2568 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2569 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2570
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2571 "movd %%mm0, 4(%0) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2572 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2573 "movd %%mm0, 4(%%eax) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2574 "movd %%mm3, 4(%%eax, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2575 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2576 "movd %%mm3, 4(%%eax, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2577 "movd %%mm2, 4(%0, %1, 4) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2578 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2579 "movd %%mm2, 4(%%ebx) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2580 "movd %%mm1, 4(%%ebx, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2581 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2582 "movd %%mm1, 4(%%ebx, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2583
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2584 :: "r" (dst), "r" (dstStride), "r" (src)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2585 : "%eax", "%ebx"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2586 );
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2587 }
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
2588 #endif
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2589
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2590 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2591 #include "../opendivx/postprocess.h"
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2592 int use_old_pp=0;
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2593 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2594
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2595 static void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2596 QP_STORE_T QPs[], int QPStride, int isColor, int mode);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2597
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2598 /* -pp Command line Help
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2599 NOTE/FIXME: put this at an appropriate place (--help, html docs, man mplayer)?
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2600
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2601 -pp <filterName>[:<option>[:<option>...]][,[-]<filterName>[:<option>...]]...
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2602
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2603 long form example:
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2604 -pp vdeblock:autoq,hdeblock:autoq,linblenddeint -pp default,-vdeblock
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2605 short form example:
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2606 -pp vb:a,hb:a,lb -pp de,-vb
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2607
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2608 Filters Options
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2609 short long name short long option Description
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2610 * * a autoq cpu power dependant enabler
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2611 c chrom chrominance filtring enabled
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2612 y nochrom chrominance filtring disabled
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2613 hb hdeblock horizontal deblocking filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2614 vb vdeblock vertical deblocking filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2615 vr rkvdeblock
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2616 h1 x1hdeblock Experimental horizontal deblock filter 1
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2617 v1 x1vdeblock Experimental vertical deblock filter 1
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2618 dr dering not implemented yet
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2619 al autolevels automatic brightness / contrast fixer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2620 f fullyrange stretch luminance range to (0..255)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2621 lb linblenddeint linear blend deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2622 li linipoldeint linear interpolating deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2623 ci cubicipoldeint cubic interpolating deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2624 md mediandeint median deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2625 de default hdeblock:a,vdeblock:a,dering:a,autolevels
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2626 fa fast x1hdeblock:a,x1vdeblock:a,dering:a,autolevels
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2627 */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2628
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2629 /**
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2630 * returns a PPMode struct which will have a non 0 error variable if an error occured
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2631 * name is the string after "-pp" on the command line
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2632 * quality is a number from 0 to GET_PP_QUALITY_MAX
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2633 */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2634 struct PPMode getPPModeByNameAndQuality(char *name, int quality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2635 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2636 char temp[GET_MODE_BUFFER_SIZE];
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2637 char *p= temp;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2638 char *filterDelimiters= ",";
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2639 char *optionDelimiters= ":";
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2640 struct PPMode ppMode= {0,0,0,0,0,0};
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2641 char *filterToken;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2642
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2643 strncpy(temp, name, GET_MODE_BUFFER_SIZE);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2644
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2645 for(;;){
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2646 char *filterName;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2647 int q= GET_PP_QUALITY_MAX;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2648 int chrom=-1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2649 char *option;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2650 char *options[OPTIONS_ARRAY_SIZE];
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2651 int i;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2652 int filterNameOk=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2653 int numOfUnknownOptions=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2654 int enable=1; //does the user want us to enabled or disabled the filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2655
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2656 filterToken= strtok(p, filterDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2657 if(filterToken == NULL) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2658 p+= strlen(filterToken) + 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2659 filterName= strtok(filterToken, optionDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2660 printf("%s::%s\n", filterToken, filterName);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2661
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2662 if(*filterName == '-')
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2663 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2664 enable=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2665 filterName++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2666 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2667 for(;;){ //for all options
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2668 option= strtok(NULL, optionDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2669 if(option == NULL) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2670
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2671 printf("%s\n", option);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2672 if(!strcmp("autoq", option) || !strcmp("a", option)) q= quality;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2673 else if(!strcmp("nochrom", option) || !strcmp("y", option)) chrom=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2674 else if(!strcmp("chrom", option) || !strcmp("c", option)) chrom=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2675 else
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2676 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2677 options[numOfUnknownOptions] = option;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2678 numOfUnknownOptions++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2679 options[numOfUnknownOptions] = NULL;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2680 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2681 if(numOfUnknownOptions >= OPTIONS_ARRAY_SIZE-1) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2682 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2683
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2684 /* replace stuff from the replace Table */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2685 for(i=0; replaceTable[2*i]!=NULL; i++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2686 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2687 if(!strcmp(replaceTable[2*i], filterName))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2688 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2689 int newlen= strlen(replaceTable[2*i + 1]);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2690 int plen;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2691 int spaceLeft;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2692
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2693 if(p==NULL) p= temp, *p=0; //last filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2694 else p--, *p=','; //not last filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2695
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2696 plen= strlen(p);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2697 spaceLeft= (int)p - (int)temp + plen;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2698 if(spaceLeft + newlen >= GET_MODE_BUFFER_SIZE)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2699 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2700 ppMode.error++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2701 break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2702 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2703 memmove(p + newlen, p, plen+1);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2704 memcpy(p, replaceTable[2*i + 1], newlen);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2705 filterNameOk=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2706 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2707 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2708
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2709 for(i=0; filters[i].shortName!=NULL; i++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2710 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2711 if( !strcmp(filters[i].longName, filterName)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2712 || !strcmp(filters[i].shortName, filterName))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2713 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2714 ppMode.lumMode &= ~filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2715 ppMode.chromMode &= ~filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2716
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2717 filterNameOk=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2718 if(!enable) break; // user wants to disable it
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2719
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2720 if(q >= filters[i].minLumQuality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2721 ppMode.lumMode|= filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2722 if(chrom==1 || (chrom==-1 && filters[i].chromDefault))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2723 if(q >= filters[i].minChromQuality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2724 ppMode.chromMode|= filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2725
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2726 if(filters[i].mask == LEVEL_FIX)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2727 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2728 int o;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2729 ppMode.minAllowedY= 16;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2730 ppMode.maxAllowedY= 234;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2731 for(o=0; options[o]!=NULL; o++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2732 if( !strcmp(options[o],"fullyrange")
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2733 ||!strcmp(options[o],"f"))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2734 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2735 ppMode.minAllowedY= 0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2736 ppMode.maxAllowedY= 255;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2737 numOfUnknownOptions--;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2738 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2739 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2740 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2741 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2742 if(!filterNameOk) ppMode.error++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2743 ppMode.error += numOfUnknownOptions;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2744 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2745
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2746 if(ppMode.lumMode & H_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_Y_H;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2747 if(ppMode.lumMode & V_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_Y_V;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2748 if(ppMode.chromMode & H_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_C_H;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2749 if(ppMode.chromMode & V_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_C_V;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2750 if(ppMode.lumMode & DERING) ppMode.oldMode |= PP_DERING_Y;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2751 if(ppMode.chromMode & DERING) ppMode.oldMode |= PP_DERING_C;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2752
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2753 return ppMode;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2754 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2755
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2756 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2757 * ...
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2758 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2759 void postprocess(unsigned char * src[], int src_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2760 unsigned char * dst[], int dst_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2761 int horizontal_size, int vertical_size,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2762 QP_STORE_T *QP_store, int QP_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2763 int mode)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2764 {
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2765 /*
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2766 static int qual=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2767
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2768 struct PPMode ppMode= getPPModeByNameAndQuality("fast,default,-hdeblock,-vdeblock", qual);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2769 qual++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2770 qual%=7;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2771 printf("\n%d %d %d %d\n", ppMode.lumMode, ppMode.chromMode, ppMode.oldMode, ppMode.error);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2772 postprocess2(src, src_stride, dst, dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2773 horizontal_size, vertical_size, QP_store, QP_stride, &ppMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2774
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2775 return;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2776 */
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2777
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2778 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2779 // Note: I could make this shit outside of this file, but it would mean one
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2780 // more function call...
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2781 if(use_old_pp){
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2782 odivx_postprocess(src,src_stride,dst,dst_stride,horizontal_size,vertical_size,QP_store,QP_stride,mode);
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2783 return;
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2784 }
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2785 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2786
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2787 postProcess(src[0], src_stride, dst[0], dst_stride,
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2788 horizontal_size, vertical_size, QP_store, QP_stride, 0, mode);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2789
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2790 horizontal_size >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2791 vertical_size >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2792 src_stride >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2793 dst_stride >>= 1;
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
2794 mode= ((mode&0xFF)>>4) | (mode&0xFFFFFF00);
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2795 // mode&= ~(LINEAR_IPOL_DEINT_FILTER | LINEAR_BLEND_DEINT_FILTER |
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2796 // MEDIAN_DEINT_FILTER | CUBIC_IPOL_DEINT_FILTER);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2797
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2798 if(1)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2799 {
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2800 postProcess(src[1], src_stride, dst[1], dst_stride,
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
2801 horizontal_size, vertical_size, QP_store, QP_stride, 1, mode);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2802 postProcess(src[2], src_stride, dst[2], dst_stride,
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2803 horizontal_size, vertical_size, QP_store, QP_stride, 2, mode);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2804 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2805 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2806 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2807 memcpy(dst[1], src[1], src_stride*horizontal_size);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2808 memcpy(dst[2], src[2], src_stride*horizontal_size);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2809 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2810 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2811
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2812 void postprocess2(unsigned char * src[], int src_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2813 unsigned char * dst[], int dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2814 int horizontal_size, int vertical_size,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2815 QP_STORE_T *QP_store, int QP_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2816 struct PPMode *mode)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2817 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2818
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2819 #ifdef HAVE_ODIVX_POSTPROCESS
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2820 // Note: I could make this shit outside of this file, but it would mean one
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2821 // more function call...
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2822 if(use_old_pp){
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2823 odivx_postprocess(src,src_stride,dst,dst_stride,horizontal_size,vertical_size,QP_store,QP_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2824 mode->oldMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2825 return;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2826 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2827 #endif
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2828
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2829 postProcess(src[0], src_stride, dst[0], dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2830 horizontal_size, vertical_size, QP_store, QP_stride, 0, mode->lumMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2831
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2832 horizontal_size >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2833 vertical_size >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2834 src_stride >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2835 dst_stride >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2836
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2837 postProcess(src[1], src_stride, dst[1], dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2838 horizontal_size, vertical_size, QP_store, QP_stride, 1, mode->chromMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2839 postProcess(src[2], src_stride, dst[2], dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2840 horizontal_size, vertical_size, QP_store, QP_stride, 2, mode->chromMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2841 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2842
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2843
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2844 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2845 * gets the mode flags for a given quality (larger values mean slower but better postprocessing)
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2846 * 0 <= quality <= 6
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2847 */
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2848 int getPpModeForQuality(int quality){
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2849 int modes[1+GET_PP_QUALITY_MAX]= {
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2850 0,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2851 #if 1
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2852 // horizontal filters first
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2853 LUM_H_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2854 LUM_H_DEBLOCK | LUM_V_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2855 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2856 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK | CHROM_V_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2857 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK | CHROM_V_DEBLOCK | LUM_DERING,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2858 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK | CHROM_V_DEBLOCK | LUM_DERING | CHROM_DERING
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2859 #else
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2860 // vertical filters first
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2861 LUM_V_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2862 LUM_V_DEBLOCK | LUM_H_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2863 LUM_V_DEBLOCK | LUM_H_DEBLOCK | CHROM_V_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2864 LUM_V_DEBLOCK | LUM_H_DEBLOCK | CHROM_V_DEBLOCK | CHROM_H_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2865 LUM_V_DEBLOCK | LUM_H_DEBLOCK | CHROM_V_DEBLOCK | CHROM_H_DEBLOCK | LUM_DERING,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2866 LUM_V_DEBLOCK | LUM_H_DEBLOCK | CHROM_V_DEBLOCK | CHROM_H_DEBLOCK | LUM_DERING | CHROM_DERING
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2867 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2868 };
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2869
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2870 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2871 int odivx_modes[1+GET_PP_QUALITY_MAX]= {
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2872 0,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2873 PP_DEBLOCK_Y_H,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2874 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2875 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V|PP_DEBLOCK_C_H,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2876 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V|PP_DEBLOCK_C_H|PP_DEBLOCK_C_V,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2877 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V|PP_DEBLOCK_C_H|PP_DEBLOCK_C_V|PP_DERING_Y,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2878 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V|PP_DEBLOCK_C_H|PP_DEBLOCK_C_V|PP_DERING_Y|PP_DERING_C
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2879 };
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2880 if(use_old_pp) return odivx_modes[quality];
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2881 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2882 return modes[quality];
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2883 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2884
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2885 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2886 * Copies a block from src to dst and fixes the blacklevel
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2887 * numLines must be a multiple of 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2888 * levelFix == 0 -> dont touch the brighness & contrast
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2889 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2890 static inline void blockCopy(uint8_t dst[], int dstStride, uint8_t src[], int srcStride,
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2891 int numLines, int levelFix)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2892 {
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
2893 #ifndef HAVE_MMX
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2894 int i;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
2895 #endif
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2896 if(levelFix)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2897 {
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2898 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2899 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2900 "leal (%2,%2), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2901 "leal (%3,%3), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2902 "movq packedYOffset, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2903 "movq packedYScale, %%mm3 \n\t"
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2904 "pxor %%mm4, %%mm4 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2905
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2906 #define SCALED_CPY \
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2907 "movq (%0), %%mm0 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2908 "movq (%0), %%mm5 \n\t"\
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2909 "punpcklbw %%mm4, %%mm0 \n\t"\
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2910 "punpckhbw %%mm4, %%mm5 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2911 "psubw %%mm2, %%mm0 \n\t"\
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2912 "psubw %%mm2, %%mm5 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2913 "movq (%0,%2), %%mm1 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2914 "psllw $6, %%mm0 \n\t"\
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2915 "psllw $6, %%mm5 \n\t"\
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2916 "pmulhw %%mm3, %%mm0 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2917 "movq (%0,%2), %%mm6 \n\t"\
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2918 "pmulhw %%mm3, %%mm5 \n\t"\
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2919 "punpcklbw %%mm4, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2920 "punpckhbw %%mm4, %%mm6 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2921 "psubw %%mm2, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2922 "psubw %%mm2, %%mm6 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2923 "psllw $6, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2924 "psllw $6, %%mm6 \n\t"\
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2925 "pmulhw %%mm3, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2926 "pmulhw %%mm3, %%mm6 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2927 "addl %%eax, %0 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2928 "packuswb %%mm5, %%mm0 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2929 "packuswb %%mm6, %%mm1 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2930 "movq %%mm0, (%1) \n\t"\
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
2931 "movq %%mm1, (%1, %3) \n\t"\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2932
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2933 SCALED_CPY
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2934 "addl %%ebx, %1 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2935 SCALED_CPY
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2936 "addl %%ebx, %1 \n\t"
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2937 SCALED_CPY
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2938 "addl %%ebx, %1 \n\t"
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2939 SCALED_CPY
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2940
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
2941 : "+r"(src),
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
2942 "+r"(dst)
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
2943 :"r" (srcStride),
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2944 "r" (dstStride)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2945 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2946 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2947 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2948 for(i=0; i<numLines; i++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2949 memcpy( &(dst[dstStride*i]),
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2950 &(src[srcStride*i]), BLOCK_SIZE);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2951 #endif
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2952 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2953 else
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2954 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2955 #ifdef HAVE_MMX
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2956 asm volatile(
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2957 "movl %4, %%eax \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2958 "movl %%eax, temp0\n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2959 "pushl %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2960 "pushl %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2961 "leal (%2,%2), %%eax \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2962 "leal (%3,%3), %%ebx \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2963 "movq packedYOffset, %%mm2 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2964 "movq packedYScale, %%mm3 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2965
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2966 #define SIMPLE_CPY \
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2967 "movq (%0), %%mm0 \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2968 "movq (%0,%2), %%mm1 \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2969 "movq %%mm0, (%1) \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2970 "movq %%mm1, (%1, %3) \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2971
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2972 "1: \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2973 SIMPLE_CPY
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2974 "addl %%eax, %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2975 "addl %%ebx, %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2976 SIMPLE_CPY
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2977 "addl %%eax, %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2978 "addl %%ebx, %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2979 "decl temp0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2980 "jnz 1b \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2981
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2982 "popl %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2983 "popl %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2984 : : "r" (src),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2985 "r" (dst),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2986 "r" (srcStride),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2987 "r" (dstStride),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2988 "m" (numLines>>2)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2989 : "%eax", "%ebx"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2990 );
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2991 #else
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2992 for(i=0; i<numLines; i++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2993 memcpy( &(dst[dstStride*i]),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2994 &(src[srcStride*i]), BLOCK_SIZE);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2995 #endif
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2996 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2997 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2998
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2999
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3000 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3001 * Filters array of bytes (Y or U or V values)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3002 */
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3003 static void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3004 QP_STORE_T QPs[], int QPStride, int isColor, int mode)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3005 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3006 int x,y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3007 /* we need 64bit here otherwise we´ll going to have a problem
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3008 after watching a black picture for 5 hours*/
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3009 static uint64_t *yHistogram= NULL;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3010 int black=0, white=255; // blackest black and whitest white in the picture
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3011 int QPCorrecture= 256;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3012
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3013 /* Temporary buffers for handling the last row(s) */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3014 static uint8_t *tempDst= NULL;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3015 static uint8_t *tempSrc= NULL;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3016
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3017 /* Temporary buffers for handling the last block */
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3018 static uint8_t *tempDstBlock= NULL;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3019 static uint8_t *tempSrcBlock= NULL;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3020
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3021 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3022 uint8_t *dstBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3023 uint8_t *srcBlockPtrBackup;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3024 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3025
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3026 #ifdef MORE_TIMING
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3027 long long T0, T1, diffTime=0;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3028 #endif
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3029 #ifdef TIMING
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3030 long long memcpyTime=0, vertTime=0, horizTime=0, sumTime;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3031 sumTime= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3032 #endif
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
3033 //mode= 0x7F;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3034
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3035 if(tempDst==NULL)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3036 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3037 tempDst= (uint8_t*)memalign(8, 1024*24);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3038 tempSrc= (uint8_t*)memalign(8, 1024*24);
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3039 tempDstBlock= (uint8_t*)memalign(8, 1024*24);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3040 tempSrcBlock= (uint8_t*)memalign(8, 1024*24);
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3041 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3042
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3043 if(!yHistogram)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3044 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3045 int i;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3046 yHistogram= (uint64_t*)malloc(8*256);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3047 for(i=0; i<256; i++) yHistogram[i]= width*height/64*15/256;
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3048
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3049 if(mode & FULL_Y_RANGE)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3050 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3051 maxAllowedY=255;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3052 minAllowedY=0;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3053 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3054 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3055
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3056 if(!isColor)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3057 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3058 uint64_t sum= 0;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3059 int i;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3060 static int framenum= -1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3061 uint64_t maxClipped;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3062 uint64_t clipped;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3063 double scale;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3064
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3065 framenum++;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3066 if(framenum == 1) yHistogram[0]= width*height/64*15/256;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3067
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3068 for(i=0; i<256; i++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3069 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3070 sum+= yHistogram[i];
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3071 // printf("%d ", yHistogram[i]);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3072 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3073 // printf("\n\n");
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3074
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3075 /* we allways get a completly black picture first */
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3076 maxClipped= (uint64_t)(sum * maxClippedThreshold);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3077
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3078 clipped= sum;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3079 for(black=255; black>0; black--)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3080 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3081 if(clipped < maxClipped) break;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3082 clipped-= yHistogram[black];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3083 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3084
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3085 clipped= sum;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3086 for(white=0; white<256; white++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3087 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3088 if(clipped < maxClipped) break;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3089 clipped-= yHistogram[white];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3090 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3091
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3092 packedYOffset= (black - minAllowedY) & 0xFFFF;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3093 packedYOffset|= packedYOffset<<32;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3094 packedYOffset|= packedYOffset<<16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3095
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3096 scale= (double)(maxAllowedY - minAllowedY) / (double)(white-black);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3097
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3098 packedYScale= (uint16_t)(scale*1024.0 + 0.5);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3099 packedYScale|= packedYScale<<32;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3100 packedYScale|= packedYScale<<16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3101 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3102 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3103 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3104 packedYScale= 0x0100010001000100LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3105 packedYOffset= 0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3106 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3107
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3108 if(mode & LEVEL_FIX) QPCorrecture= packedYScale &0xFFFF;
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3109 else QPCorrecture= 256;
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3110
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3111 /* line before the first one */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3112 y=-BLOCK_SIZE;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3113 {
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3114 //1% speedup if these are here instead of the inner loop
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3115 uint8_t *srcBlock= &(src[y*srcStride]);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3116 uint8_t *dstBlock= &(dst[y*dstStride]);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3117
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3118 dstBlock= tempDst + dstStride;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3119
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3120 // From this point on it is guranteed that we can read and write 16 lines downward
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3121 // finish 1 block before the next otherwise we´ll might have a problem
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3122 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3123 for(x=0; x<width; x+=BLOCK_SIZE)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3124 {
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3125
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3126 #ifdef HAVE_MMX2
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3127 /*
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3128 prefetchnta(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3129 prefetchnta(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3130 prefetcht0(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3131 prefetcht0(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3132 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3133 /*
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3134 prefetchnta(srcBlock + (((x>>2)&6) + 5)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3135 prefetchnta(srcBlock + (((x>>2)&6) + 6)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3136 prefetcht0(dstBlock + (((x>>2)&6) + 5)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3137 prefetcht0(dstBlock + (((x>>2)&6) + 6)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3138 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3139
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3140 asm(
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3141 "movl %4, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3142 "shrl $2, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3143 "andl $6, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3144 "addl $8, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3145 "movl %%eax, %%ebx \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3146 "imul %1, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3147 "imul %3, %%ebx \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3148 "prefetchnta 32(%%eax, %0) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3149 "prefetcht0 32(%%ebx, %2) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3150 "addl %1, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3151 "addl %3, %%ebx \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3152 "prefetchnta 32(%%eax, %0) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3153 "prefetcht0 32(%%ebx, %2) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3154 :: "r" (srcBlock), "r" (srcStride), "r" (dstBlock), "r" (dstStride),
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3155 "m" (x)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3156 : "%eax", "%ebx"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3157 );
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3158
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3159 #elif defined(HAVE_3DNOW)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3160 //FIXME check if this is faster on an 3dnow chip or if its faster without the prefetch or ...
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3161 /* prefetch(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3162 prefetch(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3163 prefetchw(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3164 prefetchw(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3165 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3166 #endif
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3167
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3168 blockCopy(dstBlock + dstStride*8, dstStride,
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3169 srcBlock + srcStride*8, srcStride, 8, mode & LEVEL_FIX);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3170
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3171 if(mode & LINEAR_IPOL_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3172 deInterlaceInterpolateLinear(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3173 else if(mode & LINEAR_BLEND_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3174 deInterlaceBlendLinear(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3175 else if(mode & MEDIAN_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3176 deInterlaceMedian(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3177 else if(mode & CUBIC_IPOL_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3178 deInterlaceInterpolateCubic(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3179 /* else if(mode & CUBIC_BLEND_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3180 deInterlaceBlendCubic(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3181 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3182 dstBlock+=8;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3183 srcBlock+=8;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3184 }
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3185 memcpy(&(dst[y*dstStride]) + 8*dstStride, tempDst + 9*dstStride, 8*dstStride );
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3186 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3187
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3188 for(y=0; y<height; y+=BLOCK_SIZE)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3189 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3190 //1% speedup if these are here instead of the inner loop
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3191 uint8_t *srcBlock= &(src[y*srcStride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3192 uint8_t *dstBlock= &(dst[y*dstStride]);
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3193 #ifdef ARCH_X86
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3194 int *QPptr= isColor ? &QPs[(y>>3)*QPStride] :&QPs[(y>>4)*QPStride];
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3195 int QPDelta= isColor ? 1<<(32-3) : 1<<(32-4);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3196 int QPFrac= QPDelta;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3197 uint8_t *tempBlock1= tempBlocks;
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3198 uint8_t *tempBlock2= tempBlocks + 8;
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3199 #endif
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3200 /* can we mess with a 8x16 block from srcBlock/dstBlock downwards and 1 line upwards
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3201 if not than use a temporary buffer */
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3202 if(y+15 >= height)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3203 {
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3204 /* copy from line 8 to 15 of src, these will be copied with
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3205 blockcopy to dst later */
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3206 memcpy(tempSrc + srcStride*8, srcBlock + srcStride*8,
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3207 srcStride*MAX(height-y-8, 0) );
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3208
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3209 /* duplicate last line to fill the void upto line 15 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3210 if(y+15 >= height)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3211 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3212 int i;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3213 for(i=height-y; i<=15; i++)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3214 memcpy(tempSrc + srcStride*i,
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3215 src + srcStride*(height-1), srcStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3216 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3217
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3218 /* copy up to 9 lines of dst */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3219 memcpy(tempDst, dstBlock - dstStride, dstStride*MIN(height-y+1, 9) );
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3220 dstBlock= tempDst + dstStride;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3221 srcBlock= tempSrc;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3222 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3223
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3224 // From this point on it is guranteed that we can read and write 16 lines downward
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3225 // finish 1 block before the next otherwise we´ll might have a problem
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3226 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3227 for(x=0; x<width; x+=BLOCK_SIZE)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3228 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3229 const int stride= dstStride;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3230 uint8_t *tmpXchg;
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3231 #ifdef ARCH_X86
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3232 int QP= *QPptr;
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3233 asm volatile(
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3234 "addl %2, %1 \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3235 "sbbl %%eax, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3236 "shll $2, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3237 "subl %%eax, %0 \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3238 : "+r" (QPptr), "+m" (QPFrac)
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3239 : "r" (QPDelta)
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3240 : "%eax"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3241 );
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3242 #else
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3243 int QP= isColor ?
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3244 QPs[(y>>3)*QPStride + (x>>3)]:
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3245 QPs[(y>>4)*QPStride + (x>>4)];
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3246 #endif
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3247 if(!isColor)
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
3248 {
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3249 QP= (QP* QPCorrecture)>>8;
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3250 yHistogram[ srcBlock[srcStride*4 + 4] ]++;
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
3251 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3252 #ifdef HAVE_MMX
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3253 asm volatile(
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3254 "movd %0, %%mm7 \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3255 "packuswb %%mm7, %%mm7 \n\t" // 0, 0, 0, QP, 0, 0, 0, QP
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3256 "packuswb %%mm7, %%mm7 \n\t" // 0,QP, 0, QP, 0,QP, 0, QP
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3257 "packuswb %%mm7, %%mm7 \n\t" // QP,..., QP
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3258 "movq %%mm7, pQPb \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3259 : : "r" (QP)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3260 );
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3261 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3262
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3263 #ifdef MORE_TIMING
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3264 T0= rdtsc();
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3265 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3266
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3267 #ifdef HAVE_MMX2
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3268 /*
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3269 prefetchnta(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3270 prefetchnta(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3271 prefetcht0(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3272 prefetcht0(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3273 */
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3274 /*
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3275 prefetchnta(srcBlock + (((x>>2)&6) + 5)*srcStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3276 prefetchnta(srcBlock + (((x>>2)&6) + 6)*srcStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3277 prefetcht0(dstBlock + (((x>>2)&6) + 5)*dstStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3278 prefetcht0(dstBlock + (((x>>2)&6) + 6)*dstStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3279 */
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3280
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3281 asm(
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3282 "movl %4, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3283 "shrl $2, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3284 "andl $6, %%eax \n\t"
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3285 "addl $8, %%eax \n\t"
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3286 "movl %%eax, %%ebx \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3287 "imul %1, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3288 "imul %3, %%ebx \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3289 "prefetchnta 32(%%eax, %0) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3290 "prefetcht0 32(%%ebx, %2) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3291 "addl %1, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3292 "addl %3, %%ebx \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3293 "prefetchnta 32(%%eax, %0) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3294 "prefetcht0 32(%%ebx, %2) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3295 :: "r" (srcBlock), "r" (srcStride), "r" (dstBlock), "r" (dstStride),
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3296 "m" (x)
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3297 : "%eax", "%ebx"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3298 );
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3299
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3300 #elif defined(HAVE_3DNOW)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3301 //FIXME check if this is faster on an 3dnow chip or if its faster without the prefetch or ...
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3302 /* prefetch(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3303 prefetch(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3304 prefetchw(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3305 prefetchw(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3306 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3307 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3308
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3309 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3310 //can we mess with a 8x16 block, if not use a temp buffer, yes again
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3311 if(x+7 >= width)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3312 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3313 int i;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3314 dstBlockPtrBackup= dstBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3315 srcBlockPtrBackup= srcBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3316
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3317 for(i=0;i<BLOCK_SIZE*2; i++)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3318 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3319 memcpy(tempSrcBlock+i*srcStride, srcBlock+i*srcStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3320 memcpy(tempDstBlock+i*dstStride, dstBlock+i*dstStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3321 }
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3322
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3323 dstBlock= tempDstBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3324 srcBlock= tempSrcBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3325 }
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3326 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3327
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3328 blockCopy(dstBlock + dstStride*8, dstStride,
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3329 srcBlock + srcStride*8, srcStride, 8, mode & LEVEL_FIX);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3330
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3331 if(mode & LINEAR_IPOL_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3332 deInterlaceInterpolateLinear(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3333 else if(mode & LINEAR_BLEND_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3334 deInterlaceBlendLinear(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3335 else if(mode & MEDIAN_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3336 deInterlaceMedian(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3337 else if(mode & CUBIC_IPOL_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3338 deInterlaceInterpolateCubic(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3339 /* else if(mode & CUBIC_BLEND_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3340 deInterlaceBlendCubic(dstBlock, dstStride);
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
3341 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3342
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3343 /* only deblock if we have 2 blocks */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3344 if(y + 8 < height)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3345 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3346 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3347 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3348 memcpyTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3349 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3350 #endif
115
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3351 if(mode & V_RK1_FILTER)
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3352 vertRK1Filter(dstBlock, stride, QP);
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3353 else if(mode & V_X1_FILTER)
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3354 vertX1Filter(dstBlock, stride, QP);
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3355 else if(mode & V_DEBLOCK)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3356 {
115
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3357 if( isVertDC(dstBlock, stride))
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3358 {
115
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3359 if(isVertMinMaxOk(dstBlock, stride, QP))
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3360 doVertLowPass(dstBlock, stride, QP);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3361 }
115
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3362 else
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3363 doVertDefFilter(dstBlock, stride, QP);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3364 }
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3365 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3366 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3367 vertTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3368 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3369 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3370 }
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3371
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3372 #ifdef HAVE_MMX
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3373 transpose1(tempBlock1, tempBlock2, dstBlock, dstStride);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3374 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3375 /* check if we have a previous block to deblock it with dstBlock */
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3376 if(x - 8 >= 0)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3377 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3378 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3379 T0= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3380 #endif
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3381 #ifdef HAVE_MMX
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3382 if(mode & H_RK1_FILTER)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3383 vertRK1Filter(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3384 else if(mode & H_X1_FILTER)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3385 vertX1Filter(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3386 else if(mode & H_DEBLOCK)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3387 {
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3388 if( isVertDC(tempBlock1, 16))
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3389 {
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3390 if(isVertMinMaxOk(tempBlock1, 16, QP))
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3391 doVertLowPass(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3392 }
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3393 else
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3394 doVertDefFilter(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3395 }
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3396
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3397 transpose2(dstBlock-4, dstStride, tempBlock1 + 4*16);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3398
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3399 #else
115
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3400 if(mode & H_X1_FILTER)
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3401 horizX1Filter(dstBlock-4, stride, QP);
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3402 else if(mode & H_DEBLOCK)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3403 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3404 if( isHorizDC(dstBlock-4, stride))
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3405 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3406 if(isHorizMinMaxOk(dstBlock-4, stride, QP))
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3407 doHorizLowPass(dstBlock-4, stride, QP);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3408 }
115
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3409 else
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3410 doHorizDefFilter(dstBlock-4, stride, QP);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3411 }
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3412 #endif
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3413 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3414 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3415 horizTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3416 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3417 #endif
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3418 if(mode & DERING)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3419 {
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3420 //FIXME filter first line
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3421 if(y>0) dering(dstBlock - stride - 8, stride, QP);
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3422 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3423 }
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3424 else if(mode & DERING)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3425 {
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3426 //FIXME y+15 is required cuz of the tempBuffer thing -> bottom right block isnt filtered
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3427 if(y > 8 && y+15 < height) dering(dstBlock - stride*9 + width - 8, stride, QP);
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3428 }
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3429
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3430
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3431 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3432 /* did we use a tmp-block buffer */
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3433 if(x+7 >= width)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3434 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3435 int i;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3436 dstBlock= dstBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3437 srcBlock= srcBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3438
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3439 for(i=0;i<BLOCK_SIZE*2; i++)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3440 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3441 memcpy(dstBlock+i*dstStride, tempDstBlock+i*dstStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3442 }
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3443 }
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3444 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3445
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3446 dstBlock+=8;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3447 srcBlock+=8;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3448
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3449 #ifdef HAVE_MMX
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3450 tmpXchg= tempBlock1;
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3451 tempBlock1= tempBlock2;
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3452 tempBlock2 = tmpXchg;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3453 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3454 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3455
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3456 /* did we use a tmp buffer for the last lines*/
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3457 if(y+15 >= height)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3458 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3459 uint8_t *dstBlock= &(dst[y*dstStride]);
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3460 memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y) );
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3461 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3462 }
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3463 #ifdef HAVE_3DNOW
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3464 asm volatile("femms");
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3465 #elif defined (HAVE_MMX)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3466 asm volatile("emms");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3467 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3468
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3469 #ifdef TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3470 // FIXME diff is mostly the time spent for rdtsc (should subtract that but ...)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3471 sumTime= rdtsc() - sumTime;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3472 if(!isColor)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3473 printf("cpy:%4dk, vert:%4dk, horiz:%4dk, sum:%4dk, diff:%4dk, color: %d/%d \r",
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3474 (int)(memcpyTime/1000), (int)(vertTime/1000), (int)(horizTime/1000),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3475 (int)(sumTime/1000), (int)((sumTime-memcpyTime-vertTime-horizTime)/1000)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3476 , black, white);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3477 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3478 }