annotate libpostproc/postprocess_template.c @ 118:3dd1950ac98d libavcodec

brightness / contrast fix/copy optimizations +2% speedup
author michael
date Tue, 23 Oct 2001 01:46:50 +0000
parents a02f3088b0cf
children b2f0e40866b1
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
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
26 isHorizMinMaxOk a
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
27 doHorizLowPass E a a
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
28 doHorizDefFilter E ac ac
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
29 deRing
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
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
31 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
32 Horizontal X1 a E E
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
33 LinIpolDeinterlace e E E*
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
34 CubicIpolDeinterlace a e e*
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
35 LinBlendDeinterlace e E E*
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
36 MedianDeinterlace Ec Ec
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
37
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
38
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
39 * i dont have a 3dnow CPU -> its untested
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
40 E = Exact implementation
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
41 e = allmost exact implementation (slightly different rounding,...)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
42 a = alternative / approximate impl
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
43 c = checked against the other implementations (-vo md5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
44 */
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 TODO:
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
48 verify that everything workes as it should (how?)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
49 reduce the time wasted on the mem transfer
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
50 implement dering
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
51 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
52 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
53 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
54 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
55 write a faster and higher quality deblocking filter :)
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
56 do something about the speed of the horizontal filters
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
57 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
58 (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
59 compare the quality & speed of all filters
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
60 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
61 fix warnings (unused vars, ...)
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
62 noise reduction filters
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
63 ...
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
64
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
65 Notes:
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
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
69 //Changelog: use the CVS log
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
70
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
71 #include <inttypes.h>
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
72 #include <stdio.h>
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
73 #include <stdlib.h>
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
74 #include <string.h>
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
75 #include "../config.h"
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
76 //#undef HAVE_MMX2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
77 //#define HAVE_3DNOW
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
78 //#undef HAVE_MMX
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
79 #include "postprocess.h"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
80
104
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
81 #define MIN(a,b) ((a) > (b) ? (b) : (a))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
82 #define MAX(a,b) ((a) < (b) ? (b) : (a))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
83 #define ABS(a) ((a) > 0 ? (a) : (-(a)))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
84 #define SIGN(a) ((a) > 0 ? 1 : -1)
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
85
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
86 #ifdef HAVE_MMX2
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
87 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
88 #elif defined (HAVE_3DNOW)
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
89 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
90 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
91
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
92 #define GET_MODE_BUFFER_SIZE 500
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
93 #define OPTIONS_ARRAY_SIZE 10
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
94
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
95
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
96 static uint64_t packedYOffset= 0x0000000000000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
97 static uint64_t packedYScale= 0x0100010001000100LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
98 static uint64_t w05= 0x0005000500050005LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
99 static uint64_t w20= 0x0020002000200020LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
100 static uint64_t w1400= 0x1400140014001400LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
101 static uint64_t bm00000001= 0x00000000000000FFLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
102 static uint64_t bm00010000= 0x000000FF00000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
103 static uint64_t bm00001000= 0x00000000FF000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
104 static uint64_t bm10000000= 0xFF00000000000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
105 static uint64_t bm10000001= 0xFF000000000000FFLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
106 static uint64_t bm11000011= 0xFFFF00000000FFFFLL;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
107 static uint64_t bm00000011= 0x000000000000FFFFLL;
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
108 static uint64_t bm11111110= 0xFFFFFFFFFFFFFF00LL;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
109 static uint64_t bm11000000= 0xFFFF000000000000LL;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
110 static uint64_t bm00011000= 0x000000FFFF000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
111 static uint64_t bm00110011= 0x0000FFFF0000FFFFLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
112 static uint64_t bm11001100= 0xFFFF0000FFFF0000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
113 static uint64_t b00= 0x0000000000000000LL;
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
114 static uint64_t b01= 0x0101010101010101LL;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
115 static uint64_t b02= 0x0202020202020202LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
116 static uint64_t b0F= 0x0F0F0F0F0F0F0F0FLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
117 static uint64_t bFF= 0xFFFFFFFFFFFFFFFFLL;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
118 static uint64_t b20= 0x2020202020202020LL;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
119 static uint64_t b80= 0x8080808080808080LL;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
120 static uint64_t b7E= 0x7E7E7E7E7E7E7E7ELL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
121 static uint64_t b7C= 0x7C7C7C7C7C7C7C7CLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
122 static uint64_t b3F= 0x3F3F3F3F3F3F3F3FLL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
123 static uint64_t temp0=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
124 static uint64_t temp1=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
125 static uint64_t temp2=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
126 static uint64_t temp3=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
127 static uint64_t temp4=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
128 static uint64_t temp5=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
129 static uint64_t pQPb=0;
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
130 static uint8_t tempBlock[16*16]; //used so the horizontal code gets aligned data
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
131
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
132 int hFlatnessThreshold= 56 - 16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
133 int vFlatnessThreshold= 56 - 16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
134
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
135 //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
136 double maxClippedThreshold= 0.01;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
137
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
138 int maxAllowedY=234;
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
139 int minAllowedY=16;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
140
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
141 static struct PPFilter filters[]=
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
142 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
143 {"hb", "hdeblock", 1, 1, 3, H_DEBLOCK},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
144 {"vb", "vdeblock", 1, 2, 4, V_DEBLOCK},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
145 {"vr", "rkvdeblock", 1, 2, 4, H_RK1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
146 {"h1", "x1hdeblock", 1, 1, 3, H_X1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
147 {"v1", "x1vdeblock", 1, 2, 4, V_X1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
148 {"dr", "dering", 1, 5, 6, DERING},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
149 {"al", "autolevels", 0, 1, 2, LEVEL_FIX},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
150 {"lb", "linblenddeint", 0, 1, 6, LINEAR_BLEND_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
151 {"li", "linipoldeint", 0, 1, 6, LINEAR_IPOL_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
152 {"ci", "cubicipoldeint", 0, 1, 6, CUBIC_IPOL_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
153 {"md", "mediandeint", 0, 1, 6, MEDIAN_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
154 {NULL, NULL,0,0,0,0} //End Marker
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
155 };
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
156
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
157 static char *replaceTable[]=
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
158 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
159 "default", "hdeblock:a,vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
160 "de", "hdeblock:a,vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
161 "fast", "x1hdeblock:a,x1vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
162 "fa", "x1hdeblock:a,x1vdeblock:a,dering:a,autolevels",
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
163 NULL //End Marker
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
164 };
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
165
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
166 #ifdef TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
167 static inline long long rdtsc()
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
168 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
169 long long l;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
170 asm volatile( "rdtsc\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
171 : "=A" (l)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
172 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
173 // printf("%d\n", int(l/1000));
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
174 return l;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
175 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
176 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
177
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
178 #ifdef HAVE_MMX2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
179 static inline void prefetchnta(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
180 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
181 asm volatile( "prefetchnta (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
182 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
183 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
184 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
185
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
186 static inline void prefetcht0(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
187 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
188 asm volatile( "prefetcht0 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
189 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
190 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
191 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
192
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
193 static inline void prefetcht1(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
194 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
195 asm volatile( "prefetcht1 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
196 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
197 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
198 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
199
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
200 static inline void prefetcht2(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
201 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
202 asm volatile( "prefetcht2 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
203 : : "r" (p)
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 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
206 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
207
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
208 //FIXME? |255-0| = 1 (shouldnt be a problem ...)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
209 /**
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
210 * 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
211 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
212 static inline int isVertDC(uint8_t src[], int stride){
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
213 int numEq= 0;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
214 int y;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
215 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
216 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
217 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
218 "pushl %1\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
219 "movq b7E, %%mm7 \n\t" // mm7 = 0x7F
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
220 "movq b7C, %%mm6 \n\t" // mm6 = 0x7D
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
221 "movq (%1), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
222 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
223 "movq (%1), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
224 "psubb %%mm1, %%mm0 \n\t" // mm0 = differnece
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
225 "paddb %%mm7, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
226 "pcmpgtb %%mm6, %%mm0 \n\t"
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 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
229 "movq (%1), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
230 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
231 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
232 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
233 "paddb %%mm1, %%mm0 \n\t"
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 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
236 "movq (%1), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
237 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
238 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
239 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
240 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
241
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
242 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
243 "movq (%1), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
244 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
245 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
246 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
247 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
248
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
249 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
250 "movq (%1), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
251 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
252 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
253 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
254 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
255
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
256 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
257 "movq (%1), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
258 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
259 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
260 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
261 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
262
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
263 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
264 "movq (%1), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
265 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
266 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
267 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
268 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
269
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
270 " \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
271 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
272 "psrlw $8, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
273 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
274 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
275 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
276 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
277 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
278 "psrlq $32, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
279 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
280 "popl %1\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
281 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
282 : "=r" (numEq)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
283 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
284 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
285 // printf("%d\n", numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
286 numEq= (256 - (numEq & 0xFF)) &0xFF;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
287
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
288 // int asmEq= numEq;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
289 // numEq=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
290 // uint8_t *temp= src;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
291
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
292 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
293 for(y=0; y<BLOCK_SIZE-1; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
294 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
295 if(((src[0] - src[0+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
296 if(((src[1] - src[1+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
297 if(((src[2] - src[2+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
298 if(((src[3] - src[3+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
299 if(((src[4] - src[4+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
300 if(((src[5] - src[5+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
301 if(((src[6] - src[6+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
302 if(((src[7] - src[7+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
303 src+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
304 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
305 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
306 /* if(abs(numEq - asmEq) > 0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
307 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
308 printf("\nasm:%d c:%d\n", asmEq, numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
309 for(int y=0; y<8; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
310 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
311 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
312 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
313 printf("%d ", temp[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
314 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
315 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
316 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
317 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
318 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
319 // 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
320 return (numEq > vFlatnessThreshold) ? 1 : 0;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
321 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
322
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
323 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
324 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
325 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
326 int isOk;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
327 src+= stride*3;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
328 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
329 // "int $3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
330 "movq (%1, %2), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
331 "movq (%1, %2, 8), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
332 "movq %%mm0, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
333 "psubusb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
334 "psubusb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
335 "por %%mm1, %%mm0 \n\t" // ABS Diff
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
336
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
337 "movq pQPb, %%mm7 \n\t" // QP,..., QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
338 "paddusb %%mm7, %%mm7 \n\t" // 2QP ... 2QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
339 "psubusb %%mm7, %%mm0 \n\t" // Diff <= 2QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
340 "pcmpeqd b00, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
341 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
342 "pcmpeqd bFF, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
343 // "movd %%mm0, (%1, %2, 4)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
344 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
345 : "=r" (isOk)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
346 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
347 );
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
348 return isOk ? 1 : 0;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
349 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
350
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
351 int isOk2= 1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
352 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
353 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
354 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
355 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
356 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
357 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
358 /* if(isOk && !isOk2 || !isOk && isOk2)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
359 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
360 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
361 for(int y=0; y<9; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
362 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
363 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
364 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
365 printf("%d ", src[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
366 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
367 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
368 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
369 } */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
370
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
371 return isOk2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
372 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
373
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
374 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
375
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
376 /**
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
377 * 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
378 * 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
379 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
380 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
381 {
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
382 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
383 src+= stride*3;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
384 asm volatile( //"movv %0 %1 %2\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
385 "pushl %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
386 "movq pQPb, %%mm0 \n\t" // QP,..., QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
387
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
388 "movq (%0), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
389 "movq (%0, %1), %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
390 "movq %%mm5, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
391 "movq %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
392 "psubusb %%mm6, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
393 "psubusb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
394 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
395 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
396 "pcmpeqb b00, %%mm2 \n\t" // diff <= QP -> FF
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
397
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
398 "pand %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
399 "pandn %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
400 "por %%mm2, %%mm6 \n\t"// First Line to Filter
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
401
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
402 "movq (%0, %1, 8), %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
403 "leal (%0, %1, 4), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
404 "leal (%0, %1, 8), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
405 "subl %1, %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
406 "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
407 "movq (%0, %1, 8), %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
408 "movq %%mm5, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
409 "movq %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
410 "psubusb %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
411 "psubusb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
412 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
413 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
414 "pcmpeqb b00, %%mm2 \n\t" // diff <= QP -> FF
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 "pand %%mm2, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
417 "pandn %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
418 "por %%mm2, %%mm7 \n\t" // First Line to Filter
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
419
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
420
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
421 // 1 2 3 4 5 6 7 8
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
422 // %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
423 // 6 4 2 2 1 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
424 // 6 4 4 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
425 // 6 8 2
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
426
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
427 "movq (%0, %1), %%mm0 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
428 "movq %%mm0, %%mm1 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
429 PAVGB(%%mm6, %%mm0) //1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
430 PAVGB(%%mm6, %%mm0) //3 1 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
431
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
432 "movq (%0, %1, 4), %%mm2 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
433 "movq %%mm2, %%mm5 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
434 PAVGB((%%eax), %%mm2) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
435 PAVGB((%0, %1, 2), %%mm2) // 211 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
436 "movq %%mm2, %%mm3 \n\t" // 211 /4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
437 "movq (%0), %%mm4 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
438 PAVGB(%%mm4, %%mm3) // 4 211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
439 PAVGB(%%mm0, %%mm3) //642211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
440 "movq %%mm3, (%0) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
441 // 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
442 "movq %%mm1, %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
443 PAVGB(%%mm6, %%mm0) //1 1 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
444 "movq %%mm4, %%mm3 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
445 PAVGB((%0,%1,2), %%mm3) // 1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
446 PAVGB((%%eax,%1,2), %%mm5) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
447 PAVGB((%%eax), %%mm5) // 211 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
448 PAVGB(%%mm5, %%mm3) // 2 2211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
449 PAVGB(%%mm0, %%mm3) //4242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
450 "movq %%mm3, (%0,%1) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
451 // 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
452 PAVGB(%%mm4, %%mm6) //11 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
453 "movq (%%ebx), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
454 PAVGB((%%eax, %1, 2), %%mm0) // 11/2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
455 "movq %%mm0, %%mm3 \n\t" // 11/2
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
456 PAVGB(%%mm1, %%mm0) // 2 11/4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
457 PAVGB(%%mm6, %%mm0) //222 11/8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
458 PAVGB(%%mm2, %%mm0) //22242211/16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
459 "movq (%0, %1, 2), %%mm2 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
460 "movq %%mm0, (%0, %1, 2) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
461 // 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
462 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
463 PAVGB((%%ebx), %%mm0) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
464 PAVGB(%%mm0, %%mm6) //11 11 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
465 PAVGB(%%mm1, %%mm4) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
466 PAVGB(%%mm2, %%mm1) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
467 PAVGB(%%mm1, %%mm6) //1122 11 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
468 PAVGB(%%mm5, %%mm6) //112242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
469 "movq (%%eax), %%mm5 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
470 "movq %%mm6, (%%eax) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
471 // 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
472 "movq (%%eax, %1, 4), %%mm6 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
473 PAVGB(%%mm7, %%mm6) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
474 PAVGB(%%mm4, %%mm6) // 11 11 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
475 PAVGB(%%mm3, %%mm6) // 11 2211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
476 PAVGB(%%mm5, %%mm2) // 11 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
477 "movq (%0, %1, 4), %%mm4 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
478 PAVGB(%%mm4, %%mm2) // 112 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
479 PAVGB(%%mm2, %%mm6) // 112242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
480 "movq %%mm6, (%0, %1, 4) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
481 // 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
482 PAVGB(%%mm7, %%mm1) // 11 2 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
483 PAVGB(%%mm4, %%mm5) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
484 PAVGB(%%mm5, %%mm0) // 11 11 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
485 "movq (%%eax, %1, 2), %%mm6 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
486 PAVGB(%%mm6, %%mm1) // 11 4 2 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
487 PAVGB(%%mm0, %%mm1) // 11224222 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
488 "movq %%mm1, (%%eax, %1, 2) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
489 // 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
490 PAVGB((%%ebx), %%mm2) // 112 4 /8
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
491 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
492 PAVGB(%%mm0, %%mm6) // 1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
493 PAVGB(%%mm7, %%mm6) // 1 12 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
494 PAVGB(%%mm2, %%mm6) // 1122424 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
495 "movq %%mm6, (%%ebx) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
496 // 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
497 PAVGB(%%mm7, %%mm5) // 11 2 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
498 PAVGB(%%mm7, %%mm5) // 11 6 /8
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
499
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
500 PAVGB(%%mm3, %%mm0) // 112 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
501 PAVGB(%%mm0, %%mm5) // 112246 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
502 "movq %%mm5, (%%eax, %1, 4) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
503 "popl %0\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
504
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
505 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
506 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
507 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
508 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
509 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
510 const int l1= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
511 const int l2= stride + l1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
512 const int l3= stride + l2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
513 const int l4= stride + l3;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
514 const int l5= stride + l4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
515 const int l6= stride + l5;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
516 const int l7= stride + l6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
517 const int l8= stride + l7;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
518 const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
519 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
520 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
521 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
522 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
523 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
524 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
525
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
526 int sums[9];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
527 sums[0] = first + src[l1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
528 sums[1] = src[l1] + src[l2];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
529 sums[2] = src[l2] + src[l3];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
530 sums[3] = src[l3] + src[l4];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
531 sums[4] = src[l4] + src[l5];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
532 sums[5] = src[l5] + src[l6];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
533 sums[6] = src[l6] + src[l7];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
534 sums[7] = src[l7] + src[l8];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
535 sums[8] = src[l8] + last;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
536
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
537 src[l1]= ((sums[0]<<2) + ((first + sums[2])<<1) + sums[4] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
538 src[l2]= ((src[l2]<<2) + (first + sums[0] + sums[3]<<1) + sums[5] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
539 src[l3]= ((src[l3]<<2) + (first + sums[1] + sums[4]<<1) + sums[6] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
540 src[l4]= ((src[l4]<<2) + (sums[2] + sums[5]<<1) + sums[0] + sums[7] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
541 src[l5]= ((src[l5]<<2) + (sums[3] + sums[6]<<1) + sums[1] + sums[8] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
542 src[l6]= ((src[l6]<<2) + (last + sums[7] + sums[4]<<1) + sums[2] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
543 src[l7]= ((last + src[l7]<<2) + (src[l8] + sums[5]<<1) + sums[3] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
544 src[l8]= ((sums[8]<<2) + (last + sums[6]<<1) + sums[4] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
545
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
546 src++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
547 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
548
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
549 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
550 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
551
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
552 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
553 * 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
554 * values are correctly clipped (MMX2)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
555 * values are wraparound (C)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
556 * 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
557 0 8 16 24
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
558 x = 8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
559 x/2 = 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
560 x/8 = 1
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
561 1 12 12 23
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
562 */
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
563 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
564 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
565 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
566 src+= stride*3;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
567 // FIXME rounding
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
568 asm volatile(
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
569 "pxor %%mm7, %%mm7 \n\t" // 0
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
570 "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
571 "leal (%0, %1), %%eax \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
572 "leal (%%eax, %1, 4), %%ebx \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
573 // 0 1 2 3 4 5 6 7 8 9
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
574 // %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
575 "movq pQPb, %%mm0 \n\t" // QP,..., QP
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
576 "movq %%mm0, %%mm1 \n\t" // QP,..., QP
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
577 "paddusb b02, %%mm0 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
578 "psrlw $2, %%mm0 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
579 "pand b3F, %%mm0 \n\t" // QP/4,..., QP/4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
580 "paddusb %%mm1, %%mm0 \n\t" // QP*1.25 ...
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
581 "movq (%0, %1, 4), %%mm2 \n\t" // line 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
582 "movq (%%ebx), %%mm3 \n\t" // line 5
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
583 "movq %%mm2, %%mm4 \n\t" // line 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
584 "pcmpeqb %%mm5, %%mm5 \n\t" // -1
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
585 "pxor %%mm2, %%mm5 \n\t" // -line 4 - 1
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
586 PAVGB(%%mm3, %%mm5)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
587 "paddb %%mm6, %%mm5 \n\t" // (l5-l4)/2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
588 "psubusb %%mm3, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
589 "psubusb %%mm2, %%mm3 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
590 "por %%mm3, %%mm4 \n\t" // |l4 - l5|
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
591 "psubusb %%mm0, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
592 "pcmpeqb %%mm7, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
593 "pand %%mm4, %%mm5 \n\t" // d/2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
594
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
595 // "paddb %%mm6, %%mm2 \n\t" // line 4 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
596 "paddb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
597 // "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
598 "movq %%mm2, (%0,%1, 4) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
599
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
600 "movq (%%ebx), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
601 // "paddb %%mm6, %%mm2 \n\t" // line 5 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
602 "psubb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
603 // "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
604 "movq %%mm2, (%%ebx) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
605
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
606 "paddb %%mm6, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
607 "psrlw $2, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
608 "pand b3F, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
609 "psubb b20, %%mm5 \n\t" // (l5-l4)/8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
610
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
611 "movq (%%eax, %1, 2), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
612 "paddb %%mm6, %%mm2 \n\t" // line 3 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
613 "paddsb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
614 "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
615 "movq %%mm2, (%%eax, %1, 2) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
616
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
617 "movq (%%ebx, %1), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
618 "paddb %%mm6, %%mm2 \n\t" // line 6 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
619 "psubsb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
620 "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
621 "movq %%mm2, (%%ebx, %1) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
622
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
623 :
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
624 : "r" (src), "r" (stride)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
625 : "%eax", "%ebx"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
626 );
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
627 #else
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
628 const int l1= stride;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
629 const int l2= stride + l1;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
630 const int l3= stride + l2;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
631 const int l4= stride + l3;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
632 const int l5= stride + l4;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
633 const int l6= stride + l5;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
634 const int l7= stride + l6;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
635 const int l8= stride + l7;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
636 const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
637 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
638 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
639 for(x=0; x<BLOCK_SIZE; x++)
96
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 if(ABS(src[l4]-src[l5]) < QP + QP/4)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
642 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
643 int v = (src[l5] - src[l4]);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
644
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
645 src[l3] +=v/8;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
646 src[l4] +=v/2;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
647 src[l5] -=v/2;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
648 src[l6] -=v/8;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
649
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
650 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
651 src++;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
652 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
653
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
654 #endif
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
655 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
656
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 * Experimental Filter 1
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
659 * will not damage linear gradients
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
660 * 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
661 * 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
662 * MMX2 version does correct clipping C version doesnt
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
663 */
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
664 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
665 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
666 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
667 src+= stride*3;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
668
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
669 asm volatile(
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
670 "pxor %%mm7, %%mm7 \n\t" // 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
671 // "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
672 "leal (%0, %1), %%eax \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
673 "leal (%%eax, %1, 4), %%ebx \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
674 // 0 1 2 3 4 5 6 7 8 9
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
675 // %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
676 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
677 "movq (%0, %1, 4), %%mm1 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
678 "movq %%mm1, %%mm2 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
679 "psubusb %%mm0, %%mm1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
680 "psubusb %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
681 "por %%mm1, %%mm0 \n\t" // |l2 - l3|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
682 "movq (%%ebx), %%mm3 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
683 "movq (%%ebx, %1), %%mm4 \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
684 "movq %%mm3, %%mm5 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
685 "psubusb %%mm4, %%mm3 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
686 "psubusb %%mm5, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
687 "por %%mm4, %%mm3 \n\t" // |l5 - l6|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
688 PAVGB(%%mm3, %%mm0) // (|l2 - l3| + |l5 - l6|)/2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
689 "movq %%mm2, %%mm1 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
690 "psubusb %%mm5, %%mm2 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
691 "movq %%mm2, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
692 "pcmpeqb %%mm7, %%mm2 \n\t" // (l4 - l5) <= 0 ? -1 : 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
693 "psubusb %%mm1, %%mm5 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
694 "por %%mm5, %%mm4 \n\t" // |l4 - l5|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
695 "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
696 "movq %%mm4, %%mm3 \n\t" // d
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
697 "psubusb pQPb, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
698 "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
699 "psubusb b01, %%mm3 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
700 "pand %%mm4, %%mm3 \n\t" // d <= QP ? d : 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
701
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
702 PAVGB(%%mm7, %%mm3) // d/2
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
703 "movq %%mm3, %%mm1 \n\t" // d/2
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
704 PAVGB(%%mm7, %%mm3) // d/4
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
705 PAVGB(%%mm1, %%mm3) // 3*d/8
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
706
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
707 "movq (%0, %1, 4), %%mm0 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
708 "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
709 "psubusb %%mm3, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
710 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
711 "movq %%mm0, (%0, %1, 4) \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
712
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
713 "movq (%%ebx), %%mm0 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
714 "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
715 "paddusb %%mm3, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
716 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
717 "movq %%mm0, (%%ebx) \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
718
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
719 PAVGB(%%mm7, %%mm1) // d/4
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
720
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
721 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
722 "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
723 "psubusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
724 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
725 "movq %%mm0, (%%eax, %1, 2) \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
726
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
727 "movq (%%ebx, %1), %%mm0 \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
728 "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
729 "paddusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
730 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
731 "movq %%mm0, (%%ebx, %1) \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
732
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
733 PAVGB(%%mm7, %%mm1) // d/8
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
734
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
735 "movq (%%eax, %1), %%mm0 \n\t" // line 2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
736 "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
737 "psubusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
738 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
739 "movq %%mm0, (%%eax, %1) \n\t" // line 2
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 (%%ebx, %1, 2), %%mm0 \n\t" // line 7
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
742 "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
743 "paddusb %%mm1, %%mm0 \n\t"
97
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, (%%ebx, %1, 2) \n\t" // line 7
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
746
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
747 :
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
748 : "r" (src), "r" (stride)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
749 : "%eax", "%ebx"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
750 );
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
751 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
752
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
753 const int l1= stride;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
754 const int l2= stride + l1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
755 const int l3= stride + l2;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
756 const int l4= stride + l3;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
757 const int l5= stride + l4;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
758 const int l6= stride + l5;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
759 const int l7= stride + l6;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
760 const int l8= stride + l7;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
761 const int l9= stride + l8;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
762 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
763
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
764 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
765 for(x=0; x<BLOCK_SIZE; x++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
766 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
767 int a= src[l3] - src[l4];
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
768 int b= src[l4] - src[l5];
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
769 int c= src[l5] - src[l6];
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
770
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
771 int d= MAX(ABS(b) - (ABS(a) + ABS(c))/2, 0);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
772
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
773 if(d < QP)
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 int v = d * SIGN(-b);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
776
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
777 src[l2] +=v/8;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
778 src[l3] +=v/4;
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
779 src[l4] +=3*v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
780 src[l5] -=3*v/8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
781 src[l6] -=v/4;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
782 src[l7] -=v/8;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
783
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
784 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
785 src++;
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 /*
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
788 const int l1= stride;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
789 const int l2= stride + l1;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
790 const int l3= stride + l2;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
791 const int l4= stride + l3;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
792 const int l5= stride + l4;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
793 const int l6= stride + l5;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
794 const int l7= stride + l6;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
795 const int l8= stride + l7;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
796 const int l9= stride + l8;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
797 for(int x=0; x<BLOCK_SIZE; x++)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
798 {
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
799 int v2= src[l2];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
800 int v3= src[l3];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
801 int v4= src[l4];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
802 int v5= src[l5];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
803 int v6= src[l6];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
804 int v7= src[l7];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
805
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
806 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
807 {
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
808 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
809 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
810 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
811 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
812 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
813 src++;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
814 }
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
815 */
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
816 #endif
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
817 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
818
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
819 /**
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
820 * Experimental Filter 1 (Horizontal)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
821 * will not damage linear gradients
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
822 * 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
823 * 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
824 * MMX2 version does correct clipping C version doesnt
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
825 * not identical with the vertical one
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
826 */
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
827 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
828 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
829 int y;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
830 static uint64_t *lut= NULL;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
831 if(lut==NULL)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
832 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
833 int i;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
834 lut= (uint64_t*)memalign(8, 256*8);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
835 for(i=0; i<256; i++)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
836 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
837 int v= i < 128 ? 2*i : 2*(i-256);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
838 /*
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
839 //Simulate 112242211 9-Tap filter
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
840 uint64_t a= (v/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
841 uint64_t b= (v/8) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
842 uint64_t c= (v/4) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
843 uint64_t d= (3*v/8) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
844 */
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
845 //Simulate piecewise linear interpolation
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
846 uint64_t a= (v/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
847 uint64_t b= (v*3/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
848 uint64_t c= (v*5/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
849 uint64_t d= (7*v/16) & 0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
850 uint64_t A= (0x100 - a)&0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
851 uint64_t B= (0x100 - b)&0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
852 uint64_t C= (0x100 - c)&0xFF;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
853 uint64_t D= (0x100 - c)&0xFF;
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 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
856 (D<<24) | (C<<16) | (B<<8) | (A);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
857 //lut[i] = (v<<32) | (v<<24);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
858 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
859 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
860
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
861 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
862 asm volatile(
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
863 "pxor %%mm7, %%mm7 \n\t" // 0
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
864 // "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
865 "leal (%0, %1), %%eax \n\t"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
866 "leal (%%eax, %1, 4), %%ebx \n\t"
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 "movq b80, %%mm6 \n\t"
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
869 "movd pQPb, %%mm5 \n\t" // QP
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
870 "movq %%mm5, %%mm4 \n\t"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
871 "paddusb %%mm5, %%mm5 \n\t" // 2QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
872 "paddusb %%mm5, %%mm4 \n\t" // 3QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
873 "pxor %%mm5, %%mm5 \n\t" // 0
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
874 "psubb %%mm4, %%mm5 \n\t" // -3QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
875 "por bm11111110, %%mm5 \n\t" // ...,FF,FF,-3QP
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
876 "psllq $24, %%mm5 \n\t"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
877
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
878 // 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
879 // %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
880
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
881 #define HX1old(a) \
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
882 "movd " #a ", %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
883 "movd 4" #a ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
884 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
885 "movq %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
886 "movq %%mm0, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
887 "psrlq $8, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
888 "psubusb %%mm1, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
889 "psubusb %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
890 "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
891 "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
892 "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
893 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
894 "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
895 "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
896 "paddb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
897 "psubusb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
898 PAVGB(%%mm7, %%mm1)\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
899 "pxor %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
900 "psubb %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
901 "psrlq $24, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
902 "movd %%mm1, %%ecx \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
903 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
904 "paddsb (%3, %%ecx, 8), %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
905 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
906 "movq %%mm0, " #a " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
907
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
908 /*
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
909 HX1old((%0))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
910 HX1old((%%eax))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
911 HX1old((%%eax, %1))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
912 HX1old((%%eax, %1, 2))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
913 HX1old((%0, %1, 4))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
914 HX1old((%%ebx))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
915 HX1old((%%ebx, %1))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
916 HX1old((%%ebx, %1, 2))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
917 */
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
918
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
919 //FIXME add some comments, its unreadable ...
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
920 #define HX1b(a, c, b, d) \
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
921 "movd " #a ", %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
922 "movd 4" #a ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
923 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
924 "movd " #b ", %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
925 "movq %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
926 "movq %%mm0, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
927 "psrlq $8, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
928 "movd 4" #b ", %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
929 "psubusb %%mm1, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
930 "psubusb %%mm0, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
931 "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
932 "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
933 "punpckldq %%mm3, %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
934 "movq %%mm1, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
935 "psllq $32, %%mm3 \n\t" /* p´5 = |p1 - p2| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
936 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
937 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
938 "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
939 "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
940 "movq %%mm4, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
941 "paddb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
942 "psubusb %%mm5, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
943 "psrlq $8, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
944 PAVGB(%%mm7, %%mm1)\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
945 "pxor %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
946 "psubb %%mm2, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
947 "movq %%mm4, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
948 "psrlq $24, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
949 "psubusb %%mm3, %%mm2 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
950 "movd %%mm1, %%ecx \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
951 "psubusb %%mm4, %%mm3 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
952 "paddsb (%2, %%ecx, 8), %%mm0 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
953 "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
954 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
955 "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
956 "movq %%mm3, %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
957 "psllq $32, %%mm1 \n\t" /* p´5 = |p1 - p2| */\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
958 "movq %%mm0, " #a " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
959 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
960 "paddb %%mm6, %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
961 "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
962 "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
963 "paddb %%mm5, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
964 "psubusb %%mm5, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
965 PAVGB(%%mm7, %%mm3)\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
966 "pxor %%mm2, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
967 "psubb %%mm2, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
968 "psrlq $24, %%mm3 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
969 "movd " #c ", %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
970 "movd 4" #c ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
971 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
972 "paddb %%mm6, %%mm0 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
973 "paddsb (%2, %%ecx, 8), %%mm0 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
974 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
975 "movq %%mm0, " #c " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
976 "movd %%mm3, %%ecx \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
977 "movd " #d ", %%mm0 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
978 "paddsb (%2, %%ecx, 8), %%mm4 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
979 "movd 4" #d ", %%mm1 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
980 "paddb %%mm6, %%mm4 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
981 "punpckldq %%mm1, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
982 "movq %%mm4, " #b " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
983 "paddb %%mm6, %%mm0 \n\t"\
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
984 "paddsb (%2, %%ecx, 8), %%mm0 \n\t"\
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
985 "paddb %%mm6, %%mm0 \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
986 "movq %%mm0, " #d " \n\t"\
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
987
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
988 HX1b((%0),(%%eax),(%%eax, %1),(%%eax, %1, 2))
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
989 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
990
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
991
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
992 :
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
993 : "r" (src), "r" (stride), "r" (lut)
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
994 : "%eax", "%ebx", "%ecx"
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
995 );
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
996 #else
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
997
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
998 //FIXME (has little in common with the mmx2 version)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
999 for(y=0; y<BLOCK_SIZE; y++)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1000 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1001 int a= src[1] - src[2];
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1002 int b= src[3] - src[4];
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1003 int c= src[5] - src[6];
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1004
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1005 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
1006
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1007 if(d < QP)
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1008 {
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1009 int v = d * SIGN(-b);
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1010
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1011 src[1] +=v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1012 src[2] +=v/4;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1013 src[3] +=3*v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1014 src[4] -=3*v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1015 src[5] -=v/4;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1016 src[6] -=v/8;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1017
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1018 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1019 src+=stride;
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1020 }
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
1021 #endif
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
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1024
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1025 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
1026 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1027 #ifdef HAVE_MMX
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1028 src+= stride*4;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1029 //FIXME try pmul for *5 stuff
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1030 // src[0]=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1031 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1032 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1033 "leal (%0, %1), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1034 "leal (%%eax, %1, 4), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1035 // 0 1 2 3 4 5 6 7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1036 // %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
1037 // %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
1038
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1039 "movq (%0), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1040 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1041 "punpcklbw %%mm7, %%mm0 \n\t" // low part of line 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1042 "punpckhbw %%mm7, %%mm1 \n\t" // high part of line 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1043
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1044 "movq (%%eax), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1045 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1046 "punpcklbw %%mm7, %%mm2 \n\t" // low part of line 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1047 "punpckhbw %%mm7, %%mm3 \n\t" // high part of line 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1048
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1049 "movq (%%eax, %1), %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1050 "movq %%mm4, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1051 "punpcklbw %%mm7, %%mm4 \n\t" // low part of line 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1052 "punpckhbw %%mm7, %%mm5 \n\t" // high part of line 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1053
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1054 "paddw %%mm0, %%mm0 \n\t" // 2L0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1055 "paddw %%mm1, %%mm1 \n\t" // 2H0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1056 "psubw %%mm4, %%mm2 \n\t" // L1 - L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1057 "psubw %%mm5, %%mm3 \n\t" // H1 - H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1058 "psubw %%mm2, %%mm0 \n\t" // 2L0 - L1 + L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1059 "psubw %%mm3, %%mm1 \n\t" // 2H0 - H1 + H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1060
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1061 "psllw $2, %%mm2 \n\t" // 4L1 - 4L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1062 "psllw $2, %%mm3 \n\t" // 4H1 - 4H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1063 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1064 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1065
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1066 "movq (%%eax, %1, 2), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1067 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1068 "punpcklbw %%mm7, %%mm2 \n\t" // L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1069 "punpckhbw %%mm7, %%mm3 \n\t" // H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1070
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1071 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1072 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1073 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1074 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1075 "movq %%mm0, temp0 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1076 "movq %%mm1, temp1 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1077
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1078 "movq (%0, %1, 4), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1079 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1080 "punpcklbw %%mm7, %%mm0 \n\t" // L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1081 "punpckhbw %%mm7, %%mm1 \n\t" // H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1082
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1083 "psubw %%mm0, %%mm2 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1084 "psubw %%mm1, %%mm3 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1085 "movq %%mm2, temp2 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1086 "movq %%mm3, temp3 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1087 "paddw %%mm4, %%mm4 \n\t" // 2L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1088 "paddw %%mm5, %%mm5 \n\t" // 2H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1089 "psubw %%mm2, %%mm4 \n\t" // 2L2 - L3 + L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1090 "psubw %%mm3, %%mm5 \n\t" // 2H2 - H3 + H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1091
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1092 "psllw $2, %%mm2 \n\t" // 4L3 - 4L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1093 "psllw $2, %%mm3 \n\t" // 4H3 - 4H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1094 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1095 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1096 //50 opcodes so far
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1097 "movq (%%ebx), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1098 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1099 "punpcklbw %%mm7, %%mm2 \n\t" // L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1100 "punpckhbw %%mm7, %%mm3 \n\t" // H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1101 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1102 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1103 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - 2L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1104 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - 2H5
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 "movq (%%ebx, %1), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1107 "punpcklbw %%mm7, %%mm6 \n\t" // L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1108 "psubw %%mm6, %%mm2 \n\t" // L5 - L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1109 "movq (%%ebx, %1), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1110 "punpckhbw %%mm7, %%mm6 \n\t" // H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1111 "psubw %%mm6, %%mm3 \n\t" // H5 - H6
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 "paddw %%mm0, %%mm0 \n\t" // 2L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1114 "paddw %%mm1, %%mm1 \n\t" // 2H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1115 "psubw %%mm2, %%mm0 \n\t" // 2L4 - L5 + L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1116 "psubw %%mm3, %%mm1 \n\t" // 2H4 - H5 + H6
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 "psllw $2, %%mm2 \n\t" // 4L5 - 4L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1119 "psllw $2, %%mm3 \n\t" // 4H5 - 4H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1120 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1121 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1122
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1123 "movq (%%ebx, %1, 2), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1124 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1125 "punpcklbw %%mm7, %%mm2 \n\t" // L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1126 "punpckhbw %%mm7, %%mm3 \n\t" // H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1127
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1128 "paddw %%mm2, %%mm2 \n\t" // 2L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1129 "paddw %%mm3, %%mm3 \n\t" // 2H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1130 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6 - 2L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1131 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6 - 2H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1132
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1133 "movq temp0, %%mm2 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1134 "movq temp1, %%mm3 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1135 //FIXME pxor, psubw, pmax for abs
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1136 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1137 "pcmpgtw %%mm0, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1138 "pxor %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1139 "psubw %%mm6, %%mm0 \n\t" // |2L4 - 5L5 + 5L6 - 2L7|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1140 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1141 "pcmpgtw %%mm1, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1142 "pxor %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1143 "psubw %%mm6, %%mm1 \n\t" // |2H4 - 5H5 + 5H6 - 2H7|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1144
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1145 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1146 "pcmpgtw %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1147 "pxor %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1148 "psubw %%mm6, %%mm2 \n\t" // |2L0 - 5L1 + 5L2 - 2L3|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1149 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1150 "pcmpgtw %%mm3, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1151 "pxor %%mm6, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1152 "psubw %%mm6, %%mm3 \n\t" // |2H0 - 5H1 + 5H2 - 2H3|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1153
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1154 #ifdef HAVE_MMX2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1155 "pminsw %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1156 "pminsw %%mm3, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1157 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1158 "movq %%mm0, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1159 "psubusw %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1160 "psubw %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1161 "movq %%mm1, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1162 "psubusw %%mm3, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1163 "psubw %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1164 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1165
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1166 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1167 "pcmpgtw %%mm4, %%mm6 \n\t" // sign(2L2 - 5L3 + 5L4 - 2L5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1168 "pxor %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1169 "psubw %%mm6, %%mm4 \n\t" // |2L2 - 5L3 + 5L4 - 2L5|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1170 "pcmpgtw %%mm5, %%mm7 \n\t" // sign(2H2 - 5H3 + 5H4 - 2H5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1171 "pxor %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1172 "psubw %%mm7, %%mm5 \n\t" // |2H2 - 5H3 + 5H4 - 2H5|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1173 // 100 opcodes
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1174 "movd %2, %%mm2 \n\t" // QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1175 "punpcklwd %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1176 "punpcklwd %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1177 "psllw $3, %%mm2 \n\t" // 8QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1178 "movq %%mm2, %%mm3 \n\t" // 8QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1179 "pcmpgtw %%mm4, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1180 "pcmpgtw %%mm5, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1181 "pand %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1182 "pand %%mm3, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1183
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1184
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1185 "psubusw %%mm0, %%mm4 \n\t" // hd
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1186 "psubusw %%mm1, %%mm5 \n\t" // ld
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1187
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1188
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1189 "movq w05, %%mm2 \n\t" // 5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1190 "pmullw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1191 "pmullw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1192 "movq w20, %%mm2 \n\t" // 32
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1193 "paddw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1194 "paddw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1195 "psrlw $6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1196 "psrlw $6, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1197
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1198 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1199 "movq w06, %%mm2 \n\t" // 6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1200 "paddw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1201 "paddw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1202 "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
1203 //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
1204 "pmulhw %%mm2, %%mm4 \n\t" // hd/13
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1205 "pmulhw %%mm2, %%mm5 \n\t" // ld/13
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1206 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1207
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1208 "movq temp2, %%mm0 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1209 "movq temp3, %%mm1 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1210
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1211 "pxor %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1212 "pxor %%mm3, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1213
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1214 // FIXME rounding error
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1215 "psraw $1, %%mm0 \n\t" // (L3 - L4)/2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1216 "psraw $1, %%mm1 \n\t" // (H3 - H4)/2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1217 "pcmpgtw %%mm0, %%mm2 \n\t" // sign (L3-L4)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1218 "pcmpgtw %%mm1, %%mm3 \n\t" // sign (H3-H4)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1219 "pxor %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1220 "pxor %%mm3, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1221 "psubw %%mm2, %%mm0 \n\t" // |L3-L4|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1222 "psubw %%mm3, %%mm1 \n\t" // |H3-H4|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1223 // "psrlw $1, %%mm0 \n\t" // |L3 - L4|/2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1224 // "psrlw $1, %%mm1 \n\t" // |H3 - H4|/2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1225
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1226 "pxor %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1227 "pxor %%mm7, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1228 "pand %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1229 "pand %%mm3, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1230
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1231 #ifdef HAVE_MMX2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1232 "pminsw %%mm0, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1233 "pminsw %%mm1, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1234 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1235 "movq %%mm4, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1236 "psubusw %%mm0, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1237 "psubw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1238 "movq %%mm5, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1239 "psubusw %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1240 "psubw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1241 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1242 "pxor %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1243 "pxor %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1244 "psubw %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1245 "psubw %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1246 "packsswb %%mm5, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1247 "movq (%%eax, %1, 2), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1248 "paddb %%mm4, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1249 "movq %%mm0, (%%eax, %1, 2) \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1250 "movq (%0, %1, 4), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1251 "psubb %%mm4, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1252 "movq %%mm0, (%0, %1, 4) \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1253
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1254 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1255 : "r" (src), "r" (stride), "r" (QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1256 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1257 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1258 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1259 const int l1= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1260 const int l2= stride + l1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1261 const int l3= stride + l2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1262 const int l4= stride + l3;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1263 const int l5= stride + l4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1264 const int l6= stride + l5;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1265 const int l7= stride + l6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1266 const int l8= stride + l7;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1267 // const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1268 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1269 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1270 for(x=0; x<BLOCK_SIZE; x++)
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 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
1273 if(ABS(middleEnergy) < 8*QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1274 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1275 const int q=(src[l4] - src[l5])/2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1276 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
1277 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
1278
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1279 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1280 d= MAX(d, 0);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1281
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1282 d= (5*d + 32) >> 6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1283 d*= SIGN(-middleEnergy);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1284
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1285 if(q>0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1286 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1287 d= d<0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1288 d= d>q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1289 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1290 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1291 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1292 d= d>0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1293 d= d<q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1294 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1295
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1296 src[l4]-= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1297 src[l5]+= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1298 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1299 src++;
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 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1302 }
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 //FIXME? |255-0| = 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1305 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1306 * Check if the given 8x8 Block is mostly "flat" and copy the unaliged data into tempBlock.
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1307 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1308 static inline int isHorizDCAndCopy2Temp(uint8_t src[], int stride)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1309 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1310 // src++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1311 int numEq= 0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1312 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1313 asm volatile (
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1314 // "int $3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1315 "pushl %1\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1316 "movq b7E, %%mm7 \n\t" // mm7 = 0x7F
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1317 "movq b7C, %%mm6 \n\t" // mm6 = 0x7D
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1318 "leal tempBlock, %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1319 "pxor %%mm0, %%mm0 \n\t"
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 #define HDC_CHECK_AND_CPY(i) \
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1322 "movq -4(%1), %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1323 "psrlq $32, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1324 "punpckldq 4(%1), %%mm2 \n\t" /* (%1) */\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1325 "movq %%mm2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1326 "psrlq $8, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1327 "psubb %%mm1, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1328 "paddb %%mm7, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1329 "pcmpgtb %%mm6, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1330 "paddb %%mm2, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1331 "movq %%mm1," #i "(%%eax) \n\t"
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 HDC_CHECK_AND_CPY(0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1334 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1335 HDC_CHECK_AND_CPY(8)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1336 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1337 HDC_CHECK_AND_CPY(16)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1338 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1339 HDC_CHECK_AND_CPY(24)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1340 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1341 HDC_CHECK_AND_CPY(32)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1342 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1343 HDC_CHECK_AND_CPY(40)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1344 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1345 HDC_CHECK_AND_CPY(48)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1346 "addl %2, %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1347 HDC_CHECK_AND_CPY(56)
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 "psllq $8, %%mm0 \n\t" // remove dummy value
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1350 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1351 "psrlw $8, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1352 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1353 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1354 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1355 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1356 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1357 "psrlq $32, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1358 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1359 "popl %1\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1360 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1361 : "=r" (numEq)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1362 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1363 : "%eax"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1364 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1365 // printf("%d\n", numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1366 numEq= (256 - (numEq & 0xFF)) &0xFF;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1367 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1368 int y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1369 for(y=0; y<BLOCK_SIZE; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1370 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1371 if(((src[0] - src[1] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1372 if(((src[1] - src[2] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1373 if(((src[2] - src[3] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1374 if(((src[3] - src[4] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1375 if(((src[4] - src[5] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1376 if(((src[5] - src[6] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1377 if(((src[6] - src[7] + 1) & 0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1378 tempBlock[0 + y*TEMP_STRIDE] = src[0];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1379 tempBlock[1 + y*TEMP_STRIDE] = src[1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1380 tempBlock[2 + y*TEMP_STRIDE] = src[2];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1381 tempBlock[3 + y*TEMP_STRIDE] = src[3];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1382 tempBlock[4 + y*TEMP_STRIDE] = src[4];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1383 tempBlock[5 + y*TEMP_STRIDE] = src[5];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1384 tempBlock[6 + y*TEMP_STRIDE] = src[6];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1385 tempBlock[7 + y*TEMP_STRIDE] = src[7];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1386 src+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1387 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1388 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1389 /* if(abs(numEq - asmEq) > 0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1390 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1391 // printf("\nasm:%d c:%d\n", asmEq, numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1392 for(int y=0; y<8; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1393 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1394 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1395 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1396 printf("%d ", src[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1397 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1398 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1399 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1400 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1401 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1402 // printf("%d\n", numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1403 return numEq > hFlatnessThreshold;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1404 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1405
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1406 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
1407 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1408 #ifdef MMX_FIXME
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1409 FIXME
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1410 int isOk;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1411 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1412 // "int $3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1413 "movq (%1, %2), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1414 "movq (%1, %2, 8), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1415 "movq %%mm0, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1416 "psubusb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1417 "psubusb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1418 "por %%mm1, %%mm0 \n\t" // ABS Diff
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1419
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1420 "movq pQPb, %%mm7 \n\t" // QP,..., QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1421 "paddusb %%mm7, %%mm7 \n\t" // 2QP ... 2QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1422 "psubusb %%mm7, %%mm0 \n\t" // Diff <= 2QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1423 "pcmpeqd b00, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1424 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1425 "pcmpeqd bFF, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1426 // "movd %%mm0, (%1, %2, 4)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1427 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1428 : "=r" (isOk)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1429 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1430 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1431 return isOk;
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 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
1434
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1435 return 1;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1436 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1437 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1438
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1439 static inline void doHorizDefFilterAndCopyBack(uint8_t dst[], int stride, int QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1440 {
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1441 #ifdef HAVE_MMX
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1442 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1443 "pushl %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1444 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1445 "movq bm00001000, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1446 "movd %2, %%mm5 \n\t" // QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1447 "movq %%mm5, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1448 "paddusb %%mm5, %%mm5 \n\t" // 2QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1449 "paddusb %%mm5, %%mm4 \n\t" // 3QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1450 "psllq $24, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1451 "pxor %%mm5, %%mm5 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1452 "psubb %%mm4, %%mm5 \n\t" // -QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1453 "leal tempBlock, %%eax \n\t"
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 //FIXME? "unroll by 2" and mix
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1456 #ifdef HAVE_MMX2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1457 #define HDF(i) \
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1458 "movq " #i "(%%eax), %%mm0 \n\t"\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1459 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1460 "movq %%mm0, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1461 "psrlq $8, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1462 "psubusb %%mm1, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1463 "psubusb %%mm0, %%mm1 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1464 "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
1465 "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
1466 "pshufw $0x00, %%mm1, %%mm3 \n\t" /* p´5 = |p1 - p2| */\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1467 "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
1468 "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
1469 "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
1470 "paddb %%mm5, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1471 "psubusb %%mm5, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1472 "psrlw $2, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1473 "pxor %%mm2, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1474 "psubb %%mm2, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1475 "pand %%mm6, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1476 "psubb %%mm1, %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1477 "psllq $8, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1478 "paddb %%mm1, %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1479 "movd %%mm0, (%0) \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1480 "psrlq $32, %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1481 "movd %%mm0, 4(%0) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1482 #else
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1483 #define HDF(i)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1484 "movq " #i "(%%eax), %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1485 "movq %%mm0, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1486 "movq %%mm0, %%mm2 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1487 "psrlq $8, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1488 "psubusb %%mm1, %%mm2 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1489 "psubusb %%mm0, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1490 "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
1491 "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
1492 "movq %%mm1, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1493 "psllq $32, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1494 "movq %%mm3, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1495 "psubusb %%mm1, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1496 "psubb %%mm4, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1497 "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
1498 "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
1499 "paddb %%mm5, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1500 "psubusb %%mm5, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1501 "psrlw $2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1502 "pxor %%mm2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1503 "psubb %%mm2, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1504 "pand %%mm6, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1505 "psubb %%mm1, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1506 "psllq $8, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1507 "paddb %%mm1, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1508 "movd %%mm0, (%0) \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1509 "psrlq $32, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1510 "movd %%mm0, 4(%0) \n\t"
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1511 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1512 HDF(0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1513 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1514 HDF(8)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1515 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1516 HDF(16)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1517 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1518 HDF(24)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1519 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1520 HDF(32)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1521 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1522 HDF(40)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1523 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1524 HDF(48)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1525 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1526 HDF(56)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1527 "popl %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1528 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1529 : "r" (dst), "r" (stride), "r" (QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1530 : "%eax"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1531 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1532 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1533 uint8_t *src= tempBlock;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1534
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1535 int y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1536 for(y=0; y<BLOCK_SIZE; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1537 {
105
a2f94bfb5793 c++ fix
arpi
parents: 104
diff changeset
1538 const int middleEnergy= 5*(src[4] - src[5]) + 2*(src[2] - src[5]);
a2f94bfb5793 c++ fix
arpi
parents: 104
diff changeset
1539
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1540 dst[0] = src[0];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1541 dst[1] = src[1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1542 dst[2] = src[2];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1543 dst[3] = src[3];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1544 dst[4] = src[4];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1545 dst[5] = src[5];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1546 dst[6] = src[6];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1547 dst[7] = src[7];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1548
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1549 if(ABS(middleEnergy) < 8*QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1550 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1551 const int q=(src[3] - src[4])/2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1552 const int leftEnergy= 5*(src[2] - src[1]) + 2*(src[0] - src[3]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1553 const int rightEnergy= 5*(src[6] - src[5]) + 2*(src[4] - src[7]);
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 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1556 d= MAX(d, 0);
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 d= (5*d + 32) >> 6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1559 d*= SIGN(-middleEnergy);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1560
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1561 if(q>0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1562 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1563 d= d<0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1564 d= d>q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1565 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1566 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1567 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1568 d= d>0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1569 d= d<q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1570 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1571
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1572 dst[3]-= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1573 dst[4]+= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1574 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1575 dst+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1576 src+= TEMP_STRIDE;
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 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1579 }
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 /**
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1582 * 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
1583 * 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
1584 * 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
1585 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1586 static inline void doHorizLowPassAndCopyBack(uint8_t dst[], int stride, int QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1587 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1588 //return;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1589 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1590 asm volatile( //"movv %0 %1 %2\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1591 "pushl %0\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1592 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1593 "leal tempBlock, %%eax \n\t"
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1594 /*
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1595 #define HLP1 "movq (%0), %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1596 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1597 "psllq $8, %%mm0 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1598 PAVGB(%%mm1, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1599 "psrlw $8, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1600 "pxor %%mm1, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1601 "packuswb %%mm1, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1602 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1603 "movq %%mm0, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1604 "psllq $32, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1605 "paddb %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1606 "psllq $16, %%mm2 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1607 PAVGB(%%mm2, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1608 "movq %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1609 "pand bm11001100, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1610 "paddusb %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1611 "psrlq $8, %%mm3 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1612 PAVGB(%%mm1, %%mm4)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1613 PAVGB(%%mm3, %%mm2)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1614 "psrlq $16, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1615 "punpcklbw %%mm2, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1616 "movq %%mm2, (%0) \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1617
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1618 #define HLP2 "movq (%0), %%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 "psllq $8, %%mm0 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1621 PAVGB(%%mm1, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1622 "psrlw $8, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1623 "pxor %%mm1, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1624 "packuswb %%mm1, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1625 "movq %%mm0, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1626 "psllq $32, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1627 "psllq $16, %%mm2 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1628 PAVGB(%%mm2, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1629 "movq %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1630 "pand bm11001100, %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1631 "paddusb %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1632 "psrlq $8, %%mm3 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1633 PAVGB(%%mm3, %%mm2)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1634 "psrlq $16, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1635 "punpcklbw %%mm2, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1636 "movq %%mm2, (%0) \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1637 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1638 // 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
1639 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1640 Implemented Exact 7-Tap
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1641 9421 A321
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1642 36421 64321
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1643 334321 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1644 1234321 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1645 1234321 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1646 123433 =
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1647 12463 12346
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1648 1249 123A
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1649
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1650 */
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1651
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1652 #ifdef HAVE_MMX2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1653 #define HLP3(i) "movq " #i "(%%eax), %%mm0 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1654 "movq %%mm0, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1655 "movq %%mm0, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1656 "movq %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1657 "movq %%mm0, %%mm4 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1658 "psllq $8, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1659 "psrlq $8, %%mm2 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1660 "pand bm00000001, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1661 "pand bm10000000, %%mm4 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1662 "por %%mm3, %%mm1 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1663 "por %%mm4, %%mm2 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1664 PAVGB(%%mm2, %%mm1)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1665 PAVGB(%%mm1, %%mm0)\
95
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 "pshufw $0xF9, %%mm0, %%mm3 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1668 "pshufw $0x90, %%mm0, %%mm4 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1669 PAVGB(%%mm3, %%mm4)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1670 PAVGB(%%mm4, %%mm0)\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1671 "movd %%mm0, (%0) \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1672 "psrlq $32, %%mm0 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1673 "movd %%mm0, 4(%0) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1674 #else
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1675 #define HLP3(i) "movq " #i "(%%eax), %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1676 "movq %%mm0, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1677 "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
1678 "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
1679 "movd 8(%0), %%mm4 \n\t" /*0001000*/\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1680 "psllq $8, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1681 "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
1682 "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
1683 "psllq $56, %%mm4 \n\t"\
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1684 "por %%mm3, %%mm1 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1685 "por %%mm4, %%mm2 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1686 PAVGB(%%mm2, %%mm1)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1687 PAVGB(%%mm1, %%mm0)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1688 \
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1689 "movq %%mm0, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1690 "movq %%mm0, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1691 "movq %%mm0, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1692 "psrlq $16, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1693 "psllq $16, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1694 "pand bm11000000, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1695 "por %%mm5, %%mm3 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1696 "movq %%mm0, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1697 "pand bm00000011, %%mm5 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1698 "por %%mm5, %%mm4 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1699 PAVGB(%%mm3, %%mm4)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1700 PAVGB(%%mm4, %%mm0)\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1701 "movd %%mm0, (%0) \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1702 "psrlq $32, %%mm0 \n\t"\
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1703 "movd %%mm0, 4(%0) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1704 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1705
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1706 /* uses the 7-Tap Filter: 1112111 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1707 #define NEW_HLP(i)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1708 "movq " #i "(%%eax), %%mm0 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1709 "movq %%mm0, %%mm1 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1710 "movq %%mm0, %%mm2 \n\t"\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1711 "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
1712 "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
1713 "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
1714 "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
1715 "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
1716 "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
1717 "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
1718 "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
1719 "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
1720 PAVGB(%%mm2, %%mm1)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1721 PAVGB(%%mm1, %%mm0)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1722 "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
1723 "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
1724 "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
1725 "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
1726 "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
1727 PAVGB(%%mm2, %%mm5)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1728 "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
1729 "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
1730 "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
1731 "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
1732 PAVGB(%%mm2, %%mm1)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1733 PAVGB(%%mm1, %%mm5)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1734 PAVGB(%%mm5, %%mm0)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1735 "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
1736 "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
1737 "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
1738
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1739 /* 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
1740 #define NEW_HLP2(i)\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1741 "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
1742 "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
1743 "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
1744 "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
1745 "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
1746 "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
1747 "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
1748 "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
1749 "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
1750 "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
1751 "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
1752 "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
1753 PAVGB(%%mm2, %%mm1) /*0010100*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1754 PAVGB(%%mm1, %%mm0) /*0012100*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1755 "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
1756 "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
1757 "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
1758 "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
1759 "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
1760 PAVGB(%%mm2, %%mm5) /*0100010*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1761 "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
1762 "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
1763 "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
1764 "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
1765 "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
1766 PAVGB(%%mm2, %%mm1) /*1000001*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1767 "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
1768 "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
1769 "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
1770 "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
1771 PAVGB(%%mm2, %%mm6) /*100000001*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1772 PAVGB(%%mm6, %%mm1) /*110000011*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1773 PAVGB(%%mm1, %%mm5) /*112000211*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1774 PAVGB(%%mm5, %%mm0) /*112242211*/\
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1775 "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
1776 "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
1777 "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
1778
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1779 #define HLP(i) NEW_HLP(i)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1780
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1781 HLP(0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1782 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1783 HLP(8)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1784 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1785 HLP(16)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1786 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1787 HLP(24)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1788 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1789 HLP(32)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1790 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1791 HLP(40)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1792 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1793 HLP(48)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1794 "addl %1, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1795 HLP(56)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1796
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1797 "popl %0\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1798 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1799 : "r" (dst), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1800 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1801 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1802
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1803 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1804 uint8_t *temp= tempBlock;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1805 int y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1806 for(y=0; y<BLOCK_SIZE; y++)
95
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 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
1809 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
1810
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1811 int sums[9];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1812 sums[0] = first + temp[0];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1813 sums[1] = temp[0] + temp[1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1814 sums[2] = temp[1] + temp[2];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1815 sums[3] = temp[2] + temp[3];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1816 sums[4] = temp[3] + temp[4];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1817 sums[5] = temp[4] + temp[5];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1818 sums[6] = temp[5] + temp[6];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1819 sums[7] = temp[6] + temp[7];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1820 sums[8] = temp[7] + last;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1821
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1822 dst[0]= ((sums[0]<<2) + ((first + sums[2])<<1) + sums[4] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1823 dst[1]= ((dst[1]<<2) + (first + sums[0] + sums[3]<<1) + sums[5] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1824 dst[2]= ((dst[2]<<2) + (first + sums[1] + sums[4]<<1) + sums[6] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1825 dst[3]= ((dst[3]<<2) + (sums[2] + sums[5]<<1) + sums[0] + sums[7] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1826 dst[4]= ((dst[4]<<2) + (sums[3] + sums[6]<<1) + sums[1] + sums[8] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1827 dst[5]= ((dst[5]<<2) + (last + sums[7] + sums[4]<<1) + sums[2] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1828 dst[6]= ((last + dst[6]<<2) + (dst[7] + sums[5]<<1) + sums[3] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1829 dst[7]= ((sums[8]<<2) + (last + sums[6]<<1) + sums[4] + 8)>>4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1830
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1831 dst+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1832 temp+= TEMP_STRIDE;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1833 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1834 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1835 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1836
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1837
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1838 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
1839 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1840 //FIXME
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1841
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1842 #ifdef HAVE_MMX2X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1843 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1844 "leal (%0, %1), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1845 "leal (%%eax, %1, 4), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1846 // 0 1 2 3 4 5 6 7 8 9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1847 // %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
1848
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1849 "pcmpeq %%mm6, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1850 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1851
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1852 #define FIND_MIN_MAX(addr)\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1853 "movq (" #addr "), %%mm0, \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1854 "pminub %%mm0, %%mm6 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1855 "pmaxub %%mm0, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1856
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1857 FIND_MIN_MAX(%0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1858 FIND_MIN_MAX(%%eax)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1859 FIND_MIN_MAX(%%eax, %1)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1860 FIND_MIN_MAX(%%eax, %1, 2)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1861 FIND_MIN_MAX(%0, %1, 4)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1862 FIND_MIN_MAX(%%ebx)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1863 FIND_MIN_MAX(%%ebx, %1)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1864 FIND_MIN_MAX(%%ebx, %1, 2)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1865 FIND_MIN_MAX(%0, %1, 8)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1866 FIND_MIN_MAX(%%ebx, %1, 2)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1867
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1868 "movq %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1869 "psrlq $32, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1870 "pminub %%mm4, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1871 "movq %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1872 "psrlq $16, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1873 "pminub %%mm4, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1874 "movq %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1875 "psrlq $8, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1876 "pminub %%mm4, %%mm6 \n\t" // min of pixels
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1877
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1878 "movq %%mm7, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1879 "psrlq $32, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1880 "pmaxub %%mm4, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1881 "movq %%mm7, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1882 "psrlq $16, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1883 "pmaxub %%mm4, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1884 "movq %%mm7, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1885 "psrlq $8, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1886 "pmaxub %%mm4, %%mm7 \n\t" // max of pixels
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
1887 PAVGB(%%mm6, %%mm7) // (max + min)/2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1888
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1889
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1890 : : "r" (src), "r" (stride), "r" (QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1891 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1892 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1893 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1894
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1895 //FIXME
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1896 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1897 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1898
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1899 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1900 * Deinterlaces the given block
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1901 * will be called for every 8x8 block, and can read & write into an 8x16 block
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1902 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1903 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
1904 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1905 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1906 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1907 "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
1908 "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
1909 // 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
1910 // %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
1911
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1912 "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
1913 "movq (%%eax, %1), %%mm1 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1914 PAVGB(%%mm1, %%mm0)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1915 "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
1916 "movq (%0, %1, 4), %%mm0 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1917 PAVGB(%%mm0, %%mm1)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1918 "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
1919 "movq (%%ebx, %1), %%mm1 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1920 PAVGB(%%mm1, %%mm0)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1921 "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
1922 "movq (%0, %1, 8), %%mm0 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1923 PAVGB(%%mm0, %%mm1)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1924 "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
1925
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1926 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1927 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1928 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1929 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1930 int x;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1931 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
1932 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1933 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
1934 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
1935 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
1936 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
1937 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1938 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1939 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1940 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1941
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1942 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1943 * Deinterlaces the given block
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1944 * will be called for every 8x8 block, and can read & write into an 8x16 block
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1945 * 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
1946 */
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1947 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
1948 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1949 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1950 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1951 "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
1952 "leal (%%eax, %1, 4), %%ebx \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1953 "leal (%%ebx, %1, 4), %%ecx \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1954 "addl %1, %%ecx \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1955 "pxor %%mm7, %%mm7 \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1956 // 0 1 2 3 4 5 6 7 8 9 10
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1957 // %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
1958
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1959 #define DEINT_CUBIC(a,b,c,d,e)\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1960 "movq " #a ", %%mm0 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1961 "movq " #b ", %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1962 "movq " #d ", %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1963 "movq " #e ", %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1964 PAVGB(%%mm2, %%mm1) /* (b+d) /2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1965 PAVGB(%%mm3, %%mm0) /* a(a+e) /2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1966 "movq %%mm0, %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1967 "punpcklbw %%mm7, %%mm0 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1968 "punpckhbw %%mm7, %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1969 "movq %%mm1, %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1970 "punpcklbw %%mm7, %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1971 "punpckhbw %%mm7, %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1972 "psubw %%mm1, %%mm0 \n\t" /* L(a+e - (b+d))/2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1973 "psubw %%mm3, %%mm2 \n\t" /* H(a+e - (b+d))/2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1974 "psraw $3, %%mm0 \n\t" /* L(a+e - (b+d))/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1975 "psraw $3, %%mm2 \n\t" /* H(a+e - (b+d))/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1976 "psubw %%mm0, %%mm1 \n\t" /* L(9b + 9d - a - e)/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1977 "psubw %%mm2, %%mm3 \n\t" /* H(9b + 9d - a - e)/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1978 "packuswb %%mm3, %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1979 "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
1980
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1981 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
1982 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
1983 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
1984 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
1985
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1986 : : "r" (src), "r" (stride)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1987 : "%eax", "%ebx", "ecx"
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1988 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1989 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1990 int x;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1991 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
1992 {
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1993 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
1994 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
1995 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
1996 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
1997 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1998 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1999 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2000 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2001
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2002 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2003 * Deinterlaces the given block
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2004 * will be called for every 8x8 block, and can read & write into an 8x16 block
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2005 * will shift the image up by 1 line (FIXME if this is a problem)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2006 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2007 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
2008 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2009 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2010 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2011 "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
2012 "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
2013 // 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
2014 // %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
2015
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2016 "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
2017 "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
2018 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
2019 "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
2020 PAVGB(%%mm2, %%mm0)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2021 "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
2022 "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
2023 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
2024 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
2025 "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
2026 "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
2027 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
2028 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
2029 "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
2030 "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
2031 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
2032 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
2033 "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
2034 "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
2035 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
2036 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
2037 "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
2038 "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
2039 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
2040 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
2041 "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
2042 "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
2043 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
2044 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
2045 "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
2046 "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
2047 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
2048 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
2049 "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
2050
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2051
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2052 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2053 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2054 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2055 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2056 int x;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2057 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
2058 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2059 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
2060 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
2061 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
2062 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
2063 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
2064 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
2065 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
2066 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
2067 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2068 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2069 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2070 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2071
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2072 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2073 * Deinterlaces the given block
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2074 * will be called for every 8x8 block, except the last row, and can read & write into an 8x16 block
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2075 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2076 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
2077 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2078 #ifdef HAVE_MMX
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2079 #ifdef HAVE_MMX2
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2080 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2081 "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
2082 "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
2083 // 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
2084 // %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
2085
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2086 "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
2087 "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
2088 "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
2089 "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
2090 "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
2091 "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
2092 "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
2093 "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
2094 "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
2095
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2096 "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
2097 "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
2098 "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
2099 "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
2100 "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
2101 "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
2102 "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
2103 "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
2104
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2105 "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
2106 "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
2107 "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
2108 "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
2109 "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
2110 "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
2111 "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
2112 "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
2113
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2114 "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
2115 "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
2116 "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
2117 "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
2118 "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
2119 "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
2120 "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
2121 "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
2122
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 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2125 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2126 );
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2127
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2128 #else // MMX without MMX2
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2129 asm volatile(
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2130 "leal (%0, %1), %%eax \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2131 "leal (%%eax, %1, 4), %%ebx \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2132 // 0 1 2 3 4 5 6 7 8 9
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2133 // %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
2134 "pxor %%mm7, %%mm7 \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2135
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2136 #define MEDIAN(a,b,c)\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2137 "movq " #a ", %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2138 "movq " #b ", %%mm2 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2139 "movq " #c ", %%mm1 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2140 "movq %%mm0, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2141 "movq %%mm1, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2142 "movq %%mm2, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2143 "psubusb %%mm1, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2144 "psubusb %%mm2, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2145 "psubusb %%mm0, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2146 "pcmpeqb %%mm7, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2147 "pcmpeqb %%mm7, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2148 "pcmpeqb %%mm7, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2149 "movq %%mm3, %%mm6 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2150 "pxor %%mm4, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2151 "pxor %%mm5, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2152 "pxor %%mm6, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2153 "por %%mm3, %%mm1 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2154 "por %%mm4, %%mm2 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2155 "por %%mm5, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2156 "pand %%mm2, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2157 "pand %%mm1, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2158 "movq %%mm0, " #b " \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2159
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2160 MEDIAN((%0), (%%eax), (%%eax, %1))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2161 MEDIAN((%%eax, %1), (%%eax, %1, 2), (%0, %1, 4))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2162 MEDIAN((%0, %1, 4), (%%ebx), (%%ebx, %1))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2163 MEDIAN((%%ebx, %1), (%%ebx, %1, 2), (%0, %1, 8))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2164
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2165 : : "r" (src), "r" (stride)
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2166 : "%eax", "%ebx"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2167 );
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2168 #endif // MMX
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2169 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2170 //FIXME
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2171 int x;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2172 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
2173 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2174 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
2175 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
2176 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
2177 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
2178 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
2179 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
2180 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
2181 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
2182 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2183 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2184 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2185 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2186
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2187 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2188 #include "../opendivx/postprocess.h"
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2189 int use_old_pp=0;
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2190 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2191
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2192 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
2193 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
2194
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2195 /* -pp Command line Help
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2196 NOTE/FIXME: put this at an appropriate place (--help, html docs, man mplayer)?
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2197
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2198 -pp <filterName>[:<option>[:<option>...]][,[-]<filterName>[:<option>...]]...
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2199
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2200 long form example:
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2201 -pp vdeblock:autoq,hdeblock:autoq,linblenddeint -pp default,-vdeblock
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2202 short form example:
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2203 -pp vb:a,hb:a,lb -pp de,-vb
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2204
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2205 Filters Options
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2206 short long name short long option Description
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2207 * * a autoq cpu power dependant enabler
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2208 c chrom chrominance filtring enabled
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2209 y nochrom chrominance filtring disabled
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2210 hb hdeblock horizontal deblocking filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2211 vb vdeblock vertical deblocking filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2212 vr rkvdeblock
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2213 h1 x1hdeblock Experimental horizontal deblock filter 1
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2214 v1 x1vdeblock Experimental vertical deblock filter 1
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2215 dr dering not implemented yet
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2216 al autolevels automatic brightness / contrast fixer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2217 f fullyrange stretch luminance range to (0..255)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2218 lb linblenddeint linear blend deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2219 li linipoldeint linear interpolating deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2220 ci cubicipoldeint cubic interpolating deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2221 md mediandeint median deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2222 de default hdeblock:a,vdeblock:a,dering:a,autolevels
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2223 fa fast x1hdeblock:a,x1vdeblock:a,dering:a,autolevels
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2224 */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2225
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2226 /**
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2227 * 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
2228 * name is the string after "-pp" on the command line
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2229 * quality is a number from 0 to GET_PP_QUALITY_MAX
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2230 */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2231 struct PPMode getPPModeByNameAndQuality(char *name, int quality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2232 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2233 char temp[GET_MODE_BUFFER_SIZE];
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2234 char *p= temp;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2235 char *filterDelimiters= ",";
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2236 char *optionDelimiters= ":";
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2237 struct PPMode ppMode= {0,0,0,0,0,0};
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2238 char *filterToken;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2239
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2240 strncpy(temp, name, GET_MODE_BUFFER_SIZE);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2241
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2242 for(;;){
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2243 char *p2;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2244 char *filterName;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2245 int q= GET_PP_QUALITY_MAX;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2246 int chrom=-1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2247 char *option;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2248 char *options[OPTIONS_ARRAY_SIZE];
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2249 int i;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2250 int filterNameOk=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2251 int numOfUnknownOptions=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2252 int enable=1; //does the user want us to enabled or disabled the filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2253
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2254 filterToken= strtok(p, filterDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2255 if(filterToken == NULL) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2256 p+= strlen(filterToken) + 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2257 filterName= strtok(filterToken, optionDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2258 printf("%s::%s\n", filterToken, filterName);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2259
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2260 if(*filterName == '-')
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2261 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2262 enable=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2263 filterName++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2264 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2265 for(;;){ //for all options
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2266 option= strtok(NULL, optionDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2267 if(option == NULL) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2268
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2269 printf("%s\n", option);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2270 if(!strcmp("autoq", option) || !strcmp("a", option)) q= quality;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2271 else if(!strcmp("nochrom", option) || !strcmp("y", option)) chrom=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2272 else if(!strcmp("chrom", option) || !strcmp("c", option)) chrom=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2273 else
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2274 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2275 options[numOfUnknownOptions] = option;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2276 numOfUnknownOptions++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2277 options[numOfUnknownOptions] = NULL;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2278 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2279 if(numOfUnknownOptions >= OPTIONS_ARRAY_SIZE-1) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2280 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2281
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2282 /* replace stuff from the replace Table */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2283 for(i=0; replaceTable[2*i]!=NULL; i++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2284 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2285 if(!strcmp(replaceTable[2*i], filterName))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2286 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2287 int newlen= strlen(replaceTable[2*i + 1]);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2288 int plen;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2289 int spaceLeft;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2290
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2291 if(p==NULL) p= temp, *p=0; //last filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2292 else p--, *p=','; //not last filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2293
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2294 plen= strlen(p);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2295 spaceLeft= (int)p - (int)temp + plen;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2296 if(spaceLeft + newlen >= GET_MODE_BUFFER_SIZE)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2297 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2298 ppMode.error++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2299 break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2300 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2301 memmove(p + newlen, p, plen+1);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2302 memcpy(p, replaceTable[2*i + 1], newlen);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2303 filterNameOk=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2304 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2305 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2306
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2307 for(i=0; filters[i].shortName!=NULL; i++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2308 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2309 if( !strcmp(filters[i].longName, filterName)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2310 || !strcmp(filters[i].shortName, filterName))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2311 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2312 ppMode.lumMode &= ~filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2313 ppMode.chromMode &= ~filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2314
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2315 filterNameOk=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2316 if(!enable) break; // user wants to disable it
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2317
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2318 if(q >= filters[i].minLumQuality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2319 ppMode.lumMode|= filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2320 if(chrom==1 || (chrom==-1 && filters[i].chromDefault))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2321 if(q >= filters[i].minChromQuality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2322 ppMode.chromMode|= filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2323
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2324 if(filters[i].mask == LEVEL_FIX)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2325 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2326 int o;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2327 ppMode.minAllowedY= 16;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2328 ppMode.maxAllowedY= 234;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2329 for(o=0; options[o]!=NULL; o++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2330 if( !strcmp(options[o],"fullyrange")
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2331 ||!strcmp(options[o],"f"))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2332 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2333 ppMode.minAllowedY= 0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2334 ppMode.maxAllowedY= 255;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2335 numOfUnknownOptions--;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2336 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2337 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2338 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2339 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2340 if(!filterNameOk) ppMode.error++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2341 ppMode.error += numOfUnknownOptions;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2342 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2343
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2344 if(ppMode.lumMode & H_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_Y_H;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2345 if(ppMode.lumMode & V_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_Y_V;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2346 if(ppMode.chromMode & H_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_C_H;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2347 if(ppMode.chromMode & V_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_C_V;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2348 if(ppMode.lumMode & DERING) ppMode.oldMode |= PP_DERING_Y;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2349 if(ppMode.chromMode & DERING) ppMode.oldMode |= PP_DERING_C;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2350
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2351 return ppMode;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2352 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2353
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2354 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2355 * ...
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2356 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2357 void postprocess(unsigned char * src[], int src_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2358 unsigned char * dst[], int dst_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2359 int horizontal_size, int vertical_size,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2360 QP_STORE_T *QP_store, int QP_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2361 int mode)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2362 {
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2363 /*
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2364 static int qual=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2365
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2366 struct PPMode ppMode= getPPModeByNameAndQuality("fast,default,-hdeblock,-vdeblock", qual);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2367 qual++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2368 qual%=7;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2369 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
2370 postprocess2(src, src_stride, dst, dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2371 horizontal_size, vertical_size, QP_store, QP_stride, &ppMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2372
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2373 return;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2374 */
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2375
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2376 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2377 // 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
2378 // more function call...
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2379 if(use_old_pp){
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2380 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
2381 return;
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2382 }
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2383 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2384
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2385 postProcess(src[0], src_stride, dst[0], dst_stride,
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2386 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
2387
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2388 horizontal_size >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2389 vertical_size >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2390 src_stride >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2391 dst_stride >>= 1;
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
2392 mode= ((mode&0xFF)>>4) | (mode&0xFFFFFF00);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2393
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2394 if(1)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2395 {
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2396 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
2397 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
2398 postProcess(src[2], src_stride, dst[2], dst_stride,
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2399 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
2400 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2401 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2402 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2403 memcpy(dst[1], src[1], src_stride*horizontal_size);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2404 memcpy(dst[2], src[2], src_stride*horizontal_size);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2405 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2406 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2407
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2408 void postprocess2(unsigned char * src[], int src_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2409 unsigned char * dst[], int dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2410 int horizontal_size, int vertical_size,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2411 QP_STORE_T *QP_store, int QP_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2412 struct PPMode *mode)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2413 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2414
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2415 #ifdef HAVE_ODIVX_POSTPROCESS
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2416 // 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
2417 // more function call...
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2418 if(use_old_pp){
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2419 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
2420 mode->oldMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2421 return;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2422 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2423 #endif
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2424
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2425 postProcess(src[0], src_stride, dst[0], dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2426 horizontal_size, vertical_size, QP_store, QP_stride, 0, mode->lumMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2427
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2428 horizontal_size >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2429 vertical_size >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2430 src_stride >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2431 dst_stride >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2432
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2433 postProcess(src[1], src_stride, dst[1], dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2434 horizontal_size, vertical_size, QP_store, QP_stride, 1, mode->chromMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2435 postProcess(src[2], src_stride, dst[2], dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2436 horizontal_size, vertical_size, QP_store, QP_stride, 2, mode->chromMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2437 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2438
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2439
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2440 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2441 * 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
2442 * 0 <= quality <= 6
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2443 */
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2444 int getPpModeForQuality(int quality){
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2445 int modes[1+GET_PP_QUALITY_MAX]= {
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2446 0,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2447 #if 1
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2448 // horizontal filters first
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2449 LUM_H_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2450 LUM_H_DEBLOCK | LUM_V_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2451 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2452 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK | CHROM_V_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2453 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
2454 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
2455 #else
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2456 // vertical filters first
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2457 LUM_V_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2458 LUM_V_DEBLOCK | LUM_H_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2459 LUM_V_DEBLOCK | LUM_H_DEBLOCK | CHROM_V_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2460 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
2461 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
2462 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
2463 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2464 };
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2465
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2466 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2467 int odivx_modes[1+GET_PP_QUALITY_MAX]= {
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2468 0,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2469 PP_DEBLOCK_Y_H,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2470 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2471 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V|PP_DEBLOCK_C_H,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2472 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
2473 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
2474 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
2475 };
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2476 if(use_old_pp) return odivx_modes[quality];
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2477 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2478 return modes[quality];
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2479 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2480
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2481 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2482 * 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
2483 * numLines must be a multiple of 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2484 * levelFix == 0 -> dont touch the brighness & contrast
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2485 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2486 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
2487 int numLines, int levelFix)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2488 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2489 int i;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2490 if(levelFix)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2491 {
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2492 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2493 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2494 "pushl %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2495 "pushl %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2496 "leal (%2,%2), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2497 "leal (%3,%3), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2498 "movq packedYOffset, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2499 "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
2500 "pxor %%mm4, %%mm4 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2501
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2502 #define SCALED_CPY \
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2503 "movq (%0), %%mm0 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2504 "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
2505 "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
2506 "punpckhbw %%mm4, %%mm5 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2507 "psubw %%mm2, %%mm0 \n\t"\
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2508 "psubw %%mm2, %%mm5 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2509 "movq (%0,%2), %%mm1 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2510 "psllw $6, %%mm0 \n\t"\
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2511 "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
2512 "pmulhw %%mm3, %%mm0 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2513 "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
2514 "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
2515 "punpcklbw %%mm4, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2516 "punpckhbw %%mm4, %%mm6 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2517 "psubw %%mm2, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2518 "psubw %%mm2, %%mm6 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2519 "psllw $6, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2520 "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
2521 "pmulhw %%mm3, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2522 "pmulhw %%mm3, %%mm6 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2523 "addl %%eax, %0 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2524 "packuswb %%mm5, %%mm0 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2525 "packuswb %%mm6, %%mm1 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2526 "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
2527 "movq %%mm1, (%1, %3) \n\t"\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2528
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2529 SCALED_CPY
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2530 "addl %%ebx, %1 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2531 SCALED_CPY
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2532 "addl %%ebx, %1 \n\t"
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2533 SCALED_CPY
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2534 "addl %%ebx, %1 \n\t"
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2535 SCALED_CPY
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2536
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2537 "popl %1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2538 "popl %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2539 : : "r" (src),
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2540 "r" (dst),
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2541 "r" (srcStride),
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
2542 "r" (dstStride)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2543 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2544 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2545 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2546 for(i=0; i<numLines; i++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2547 memcpy( &(dst[dstStride*i]),
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2548 &(src[srcStride*i]), BLOCK_SIZE);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2549 #endif
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2550 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2551 else
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2552 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2553 #ifdef HAVE_MMX
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2554 asm volatile(
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2555 "movl %4, %%eax \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2556 "movl %%eax, temp0\n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2557 "pushl %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2558 "pushl %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2559 "leal (%2,%2), %%eax \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2560 "leal (%3,%3), %%ebx \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2561 "movq packedYOffset, %%mm2 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2562 "movq packedYScale, %%mm3 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2563
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2564 #define SIMPLE_CPY \
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2565 "movq (%0), %%mm0 \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2566 "movq (%0,%2), %%mm1 \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2567 "movq %%mm0, (%1) \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2568 "movq %%mm1, (%1, %3) \n\t"\
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2569
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2570 "1: \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2571 SIMPLE_CPY
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2572 "addl %%eax, %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2573 "addl %%ebx, %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2574 SIMPLE_CPY
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2575 "addl %%eax, %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2576 "addl %%ebx, %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2577 "decl temp0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2578 "jnz 1b \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2579
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2580 "popl %1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2581 "popl %0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2582 : : "r" (src),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2583 "r" (dst),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2584 "r" (srcStride),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2585 "r" (dstStride),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2586 "m" (numLines>>2)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2587 : "%eax", "%ebx"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2588 );
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2589 #else
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2590 for(i=0; i<numLines; i++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2591 memcpy( &(dst[dstStride*i]),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2592 &(src[srcStride*i]), BLOCK_SIZE);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2593 #endif
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2594 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2595 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2596
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2597
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2598 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2599 * Filters array of bytes (Y or U or V values)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2600 */
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2601 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
2602 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
2603 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2604 int x,y;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2605 /* 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
2606 after watching a black picture for 5 hours*/
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2607 static uint64_t *yHistogram= NULL;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2608 int black=0, white=255; // blackest black and whitest white in the picture
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2609
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2610 /* Temporary buffers for handling the last row(s) */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2611 static uint8_t *tempDst= NULL;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2612 static uint8_t *tempSrc= NULL;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2613
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2614 /* Temporary buffers for handling the last block */
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2615 static uint8_t *tempDstBlock= NULL;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2616 static uint8_t *tempSrcBlock= NULL;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2617
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2618 uint8_t *dstBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2619 uint8_t *srcBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2620
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2621 #ifdef TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2622 long long T0, T1, memcpyTime=0, vertTime=0, horizTime=0, sumTime, diffTime=0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2623 sumTime= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2624 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2625
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2626 if(tempDst==NULL)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2627 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2628 tempDst= (uint8_t*)memalign(8, 1024*24);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2629 tempSrc= (uint8_t*)memalign(8, 1024*24);
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2630 tempDstBlock= (uint8_t*)memalign(8, 1024*24);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2631 tempSrcBlock= (uint8_t*)memalign(8, 1024*24);
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2632 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2633
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2634 if(!yHistogram)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2635 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2636 int i;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2637 yHistogram= (uint64_t*)malloc(8*256);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2638 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
2639
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2640 if(mode & FULL_Y_RANGE)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2641 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2642 maxAllowedY=255;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2643 minAllowedY=0;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2644 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2645 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2646
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2647 if(!isColor)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2648 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2649 uint64_t sum= 0;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2650 int i;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2651 static int framenum= -1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2652 uint64_t maxClipped;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2653 uint64_t clipped;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2654 double scale;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2655
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2656 framenum++;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2657 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
2658
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2659 for(i=0; i<256; i++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2660 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2661 sum+= yHistogram[i];
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2662 // printf("%d ", yHistogram[i]);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2663 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2664 // printf("\n\n");
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2665
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2666 /* we allways get a completly black picture first */
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2667 maxClipped= (uint64_t)(sum * maxClippedThreshold);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2668
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2669 clipped= sum;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2670 for(black=255; black>0; black--)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2671 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2672 if(clipped < maxClipped) break;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2673 clipped-= yHistogram[black];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2674 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2675
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2676 clipped= sum;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2677 for(white=0; white<256; white++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2678 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2679 if(clipped < maxClipped) break;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2680 clipped-= yHistogram[white];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2681 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2682
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2683 packedYOffset= (black - minAllowedY) & 0xFFFF;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2684 packedYOffset|= packedYOffset<<32;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2685 packedYOffset|= packedYOffset<<16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2686
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2687 scale= (double)(maxAllowedY - minAllowedY) / (double)(white-black);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2688
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
2689 packedYScale= (uint16_t)(scale*1024.0 + 0.5);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2690 packedYScale|= packedYScale<<32;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2691 packedYScale|= packedYScale<<16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2692 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2693 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2694 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2695 packedYScale= 0x0100010001000100LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2696 packedYOffset= 0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2697 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2698
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2699 /* copy first row of 8x8 blocks */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2700 for(x=0; x<width; x+=BLOCK_SIZE)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2701 blockCopy(dst + x, dstStride, src + x, srcStride, 8, mode & LEVEL_FIX);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2702
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2703 for(y=0; y<height; y+=BLOCK_SIZE)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2704 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2705 //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
2706 uint8_t *srcBlock= &(src[y*srcStride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2707 uint8_t *dstBlock= &(dst[y*dstStride]);
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2708
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2709 /* can we mess with a 8x16 block from srcBlock/dstBlock downwards, if not
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2710 than use a temporary buffer */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2711 if(y+15 >= height)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2712 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2713 /* copy from line 5 to 12 of src, these will e copied with
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2714 blockcopy to dst later */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2715 memcpy(tempSrc + srcStride*5, srcBlock + srcStride*5,
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2716 srcStride*MAX(height-y-5, 0) );
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2717
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2718 /* duplicate last line to fill the void upto line 12 */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2719 if(y+12 >= height)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2720 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2721 int i;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2722 for(i=height-y; i<=12; i++)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2723 memcpy(tempSrc + srcStride*i,
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2724 src + srcStride*(height-1), srcStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2725 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2726
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2727
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2728 /* copy up to 5 lines of dst */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2729 memcpy(tempDst, dstBlock, dstStride*MIN(height-y, 5) );
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2730 dstBlock= tempDst;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2731 srcBlock= tempSrc;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2732 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2733
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2734 // 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
2735 // 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
2736 // 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
2737 for(x=0; x<width; x+=BLOCK_SIZE)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2738 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2739 const int stride= dstStride;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2740 int QP= isColor ?
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2741 QPs[(y>>3)*QPStride + (x>>3)]:
100
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
2742 QPs[(y>>4)*QPStride + (x>>4)];
1d1182345591 minor QP scaling & auto-contrast bugfix
michael
parents: 99
diff changeset
2743 if(!isColor && (mode & LEVEL_FIX)) QP= (QP* (packedYScale &0xFFFF))>>8;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2744 #ifdef HAVE_MMX
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2745 asm volatile(
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2746 "movd %0, %%mm7 \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2747 "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
2748 "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
2749 "packuswb %%mm7, %%mm7 \n\t" // QP,..., QP
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2750 "movq %%mm7, pQPb \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2751 : : "r" (QP)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2752 );
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2753 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2754
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2755 #ifdef MORE_TIMING
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2756 T0= rdtsc();
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2757 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2758
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2759 #ifdef HAVE_MMX2
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2760 prefetchnta(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2761 prefetchnta(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2762 prefetcht0(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2763 prefetcht0(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2764 #elif defined(HAVE_3DNOW)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2765 //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
2766 /* prefetch(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2767 prefetch(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2768 prefetchw(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2769 prefetchw(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2770 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2771 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2772
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2773 if(!isColor) yHistogram[ srcBlock[srcStride*5] ]++;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2774
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
2775 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2776 //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
2777 if(x+7 >= width)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2778 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2779 int i;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2780 dstBlockPtrBackup= dstBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2781 srcBlockPtrBackup= srcBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2782
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2783 for(i=0;i<BLOCK_SIZE*2; i++)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2784 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2785 memcpy(tempSrcBlock+i*srcStride, srcBlock+i*srcStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2786 memcpy(tempDstBlock+i*dstStride, dstBlock+i*dstStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2787 }
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2788
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2789 dstBlock= tempDstBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2790 srcBlock= tempSrcBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2791 }
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
2792 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2793
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2794 blockCopy(dstBlock + dstStride*5, dstStride,
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2795 srcBlock + srcStride*5, srcStride, 8, mode & LEVEL_FIX);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2796
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2797 if(mode & LINEAR_IPOL_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2798 deInterlaceInterpolateLinear(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2799 else if(mode & LINEAR_BLEND_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2800 deInterlaceBlendLinear(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2801 else if(mode & MEDIAN_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2802 deInterlaceMedian(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2803 else if(mode & CUBIC_IPOL_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2804 deInterlaceInterpolateCubic(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2805 /* else if(mode & CUBIC_BLEND_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2806 deInterlaceBlendCubic(dstBlock, dstStride);
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2807 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2808
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2809 /* only deblock if we have 2 blocks */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2810 if(y + 8 < height)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2811 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2812 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2813 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2814 memcpyTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2815 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2816 #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
2817 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
2818 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
2819 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
2820 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
2821 else if(mode & V_DEBLOCK)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2822 {
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
2823 if( isVertDC(dstBlock, stride))
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2824 {
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
2825 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
2826 doVertLowPass(dstBlock, stride, QP);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2827 }
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
2828 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
2829 doVertDefFilter(dstBlock, stride, QP);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2830 }
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2831 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2832 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2833 vertTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2834 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2835 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2836 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2837
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2838 /* 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
2839 if(x - 8 >= 0)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2840 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2841 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2842 T0= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2843 #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
2844 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
2845 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
2846 else if(mode & H_DEBLOCK)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2847 {
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
2848 if( isHorizDCAndCopy2Temp(dstBlock-4, stride))
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2849 {
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
2850 if(isHorizMinMaxOk(tempBlock, TEMP_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
2851 doHorizLowPassAndCopyBack(dstBlock-4, stride, QP);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2852 }
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
2853 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
2854 doHorizDefFilterAndCopyBack(dstBlock-4, stride, QP);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2855 }
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2856 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2857 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2858 horizTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2859 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2860 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2861 dering(dstBlock - 9 - stride, stride, QP);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2862 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2863 else if(y!=0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2864 dering(dstBlock - stride*9 + width-9, stride, QP);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2865 //FIXME dering filter will not be applied to last block (bottom right)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2866
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
2867 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2868 /* did we use a tmp-block buffer */
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2869 if(x+7 >= width)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2870 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2871 int i;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2872 dstBlock= dstBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2873 srcBlock= srcBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2874
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2875 for(i=0;i<BLOCK_SIZE*2; i++)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2876 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2877 memcpy(dstBlock+i*dstStride, tempDstBlock+i*dstStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2878 }
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2879 }
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
2880 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2881
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2882 dstBlock+=8;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2883 srcBlock+=8;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2884 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2885
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2886 /* did we use a tmp buffer */
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
2887 if(y+15 >= height)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2888 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2889 uint8_t *dstBlock= &(dst[y*dstStride]);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
2890 memcpy(dstBlock, tempDst, dstStride*(height-y) );
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2891 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2892 }
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2893 #ifdef HAVE_3DNOW
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2894 asm volatile("femms");
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2895 #elif defined (HAVE_MMX)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2896 asm volatile("emms");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2897 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2898
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2899 #ifdef TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2900 // 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
2901 sumTime= rdtsc() - sumTime;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2902 if(!isColor)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2903 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
2904 (int)(memcpyTime/1000), (int)(vertTime/1000), (int)(horizTime/1000),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
2905 (int)(sumTime/1000), (int)((sumTime-memcpyTime-vertTime-horizTime)/1000)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2906 , black, white);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2907 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2908 }