annotate libpostproc/postprocess.c @ 166:ec349ac7869b libavcodec

1% speedup
author michael
date Tue, 20 Nov 2001 20:46:39 +0000
parents ea3b49451497
children 2d97f0157a79
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
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
24 doVertDefFilter Ec Ec e e
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
25 isHorizDC Ec Ec
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
26 isHorizMinMaxOk a E
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
27 doHorizLowPass E e e
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
28 doHorizDefFilter Ec Ec e e
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
29 deRing E e e*
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
30 Vertical RKAlgo1 E a a
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
31 Horizontal RKAlgo1 a a
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
32 Vertical X1# a E E
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
33 Horizontal X1# a E E
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
34 LinIpolDeinterlace e E E*
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
35 CubicIpolDeinterlace a e e*
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
36 LinBlendDeinterlace e E E*
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
37 MedianDeinterlace# Ec Ec
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
38 TempDeNoiser# E e e
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
39
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
40 * i dont have a 3dnow CPU -> its untested, but noone said it doesnt work so it seems to work
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
41 # more or less selfinvented filters so the exactness isnt too meaningfull
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
42 E = Exact implementation
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
43 e = allmost exact implementation (slightly different rounding,...)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
44 a = alternative / approximate impl
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
45 c = checked against the other implementations (-vo md5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
46 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
47
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
48 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
49 TODO:
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
50 verify that everything workes as it should (how?)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
51 reduce the time wasted on the mem transfer
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
52 implement everything in C at least (done at the moment but ...)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
53 unroll stuff if instructions depend too much on the prior one
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
54 we use 8x8 blocks for the horizontal filters, opendivx seems to use 8x4?
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
55 move YScale thing to the end instead of fixing QP
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
56 write a faster and higher quality deblocking filter :)
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
57 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
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
61 border remover
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
62 optimize c versions
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
63 try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
64 smart blur
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
65 commandline option for the deblock thresholds
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
66 ...
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
67 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
68
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
150
668dda5ef46d added missing #include <malloc.h>
pl
parents: 149
diff changeset
71 #include "../config.h"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
72 #include <inttypes.h>
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
73 #include <stdio.h>
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
74 #include <stdlib.h>
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
75 #include <string.h>
133
e0bf2e9ce24c a few warning fixes (missing #include's)
pl
parents: 132
diff changeset
76 #ifdef HAVE_MALLOC_H
e0bf2e9ce24c a few warning fixes (missing #include's)
pl
parents: 132
diff changeset
77 #include <malloc.h>
e0bf2e9ce24c a few warning fixes (missing #include's)
pl
parents: 132
diff changeset
78 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
79 //#undef HAVE_MMX2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
80 //#define HAVE_3DNOW
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
81 //#undef HAVE_MMX
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
82 //#define DEBUG_BRIGHTNESS
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
83 #include "postprocess.h"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
84
104
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
85 #define MIN(a,b) ((a) > (b) ? (b) : (a))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
86 #define MAX(a,b) ((a) < (b) ? (b) : (a))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
87 #define ABS(a) ((a) > 0 ? (a) : (-(a)))
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
88 #define SIGN(a) ((a) > 0 ? 1 : -1)
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
89
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
90 #ifdef HAVE_MMX2
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
91 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
92 #elif defined (HAVE_3DNOW)
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
93 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
9607b48e2c2d Cleanup:
arpi
parents: 102
diff changeset
94 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
95
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
96 #ifdef HAVE_MMX2
2c469e390117 dering in c
michael
parents: 133
diff changeset
97 #define PMINUB(a,b,t) "pminub " #a ", " #b " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
98 #elif defined (HAVE_MMX)
2c469e390117 dering in c
michael
parents: 133
diff changeset
99 #define PMINUB(b,a,t) \
2c469e390117 dering in c
michael
parents: 133
diff changeset
100 "movq " #a ", " #t " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
101 "psubusb " #b ", " #t " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
102 "psubb " #t ", " #a " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
103 #endif
2c469e390117 dering in c
michael
parents: 133
diff changeset
104
2c469e390117 dering in c
michael
parents: 133
diff changeset
105 #ifdef HAVE_MMX2
2c469e390117 dering in c
michael
parents: 133
diff changeset
106 #define PMAXUB(a,b) "pmaxub " #a ", " #b " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
107 #elif defined (HAVE_MMX)
2c469e390117 dering in c
michael
parents: 133
diff changeset
108 #define PMAXUB(a,b) \
2c469e390117 dering in c
michael
parents: 133
diff changeset
109 "psubusb " #a ", " #b " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
110 "paddb " #a ", " #b " \n\t"
2c469e390117 dering in c
michael
parents: 133
diff changeset
111 #endif
2c469e390117 dering in c
michael
parents: 133
diff changeset
112
2c469e390117 dering in c
michael
parents: 133
diff changeset
113
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
114 #define GET_MODE_BUFFER_SIZE 500
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
115 #define OPTIONS_ARRAY_SIZE 10
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
116
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
117 #ifdef HAVE_MMX
149
3fc494e92f0d gcc does optimize writes to non volatile variables away if it didnt know that they were read in between
michael
parents: 148
diff changeset
118 static volatile uint64_t __attribute__((aligned(8))) packedYOffset= 0x0000000000000000LL;
3fc494e92f0d gcc does optimize writes to non volatile variables away if it didnt know that they were read in between
michael
parents: 148
diff changeset
119 static volatile uint64_t __attribute__((aligned(8))) packedYScale= 0x0100010001000100LL;
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
120 static uint64_t __attribute__((aligned(8))) w05= 0x0005000500050005LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
121 static uint64_t __attribute__((aligned(8))) w20= 0x0020002000200020LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
122 static uint64_t __attribute__((aligned(8))) w1400= 0x1400140014001400LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
123 static uint64_t __attribute__((aligned(8))) bm00000001= 0x00000000000000FFLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
124 static uint64_t __attribute__((aligned(8))) bm00010000= 0x000000FF00000000LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
125 static uint64_t __attribute__((aligned(8))) bm00001000= 0x00000000FF000000LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
126 static uint64_t __attribute__((aligned(8))) bm10000000= 0xFF00000000000000LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
127 static uint64_t __attribute__((aligned(8))) bm10000001= 0xFF000000000000FFLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
128 static uint64_t __attribute__((aligned(8))) bm11000011= 0xFFFF00000000FFFFLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
129 static uint64_t __attribute__((aligned(8))) bm00000011= 0x000000000000FFFFLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
130 static uint64_t __attribute__((aligned(8))) bm11111110= 0xFFFFFFFFFFFFFF00LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
131 static uint64_t __attribute__((aligned(8))) bm11000000= 0xFFFF000000000000LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
132 static uint64_t __attribute__((aligned(8))) bm00011000= 0x000000FFFF000000LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
133 static uint64_t __attribute__((aligned(8))) bm00110011= 0x0000FFFF0000FFFFLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
134 static uint64_t __attribute__((aligned(8))) bm11001100= 0xFFFF0000FFFF0000LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
135 static uint64_t __attribute__((aligned(8))) b00= 0x0000000000000000LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
136 static uint64_t __attribute__((aligned(8))) b01= 0x0101010101010101LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
137 static uint64_t __attribute__((aligned(8))) b02= 0x0202020202020202LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
138 static uint64_t __attribute__((aligned(8))) b0F= 0x0F0F0F0F0F0F0F0FLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
139 static uint64_t __attribute__((aligned(8))) b04= 0x0404040404040404LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
140 static uint64_t __attribute__((aligned(8))) b08= 0x0808080808080808LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
141 static uint64_t __attribute__((aligned(8))) bFF= 0xFFFFFFFFFFFFFFFFLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
142 static uint64_t __attribute__((aligned(8))) b20= 0x2020202020202020LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
143 static uint64_t __attribute__((aligned(8))) b80= 0x8080808080808080LL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
144 static uint64_t __attribute__((aligned(8))) b7E= 0x7E7E7E7E7E7E7E7ELL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
145 static uint64_t __attribute__((aligned(8))) b7C= 0x7C7C7C7C7C7C7C7CLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
146 static uint64_t __attribute__((aligned(8))) b3F= 0x3F3F3F3F3F3F3F3FLL;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
147 static uint64_t __attribute__((aligned(8))) temp0=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
148 static uint64_t __attribute__((aligned(8))) temp1=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
149 static uint64_t __attribute__((aligned(8))) temp2=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
150 static uint64_t __attribute__((aligned(8))) temp3=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
151 static uint64_t __attribute__((aligned(8))) temp4=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
152 static uint64_t __attribute__((aligned(8))) temp5=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
153 static uint64_t __attribute__((aligned(8))) pQPb=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
154 static uint64_t __attribute__((aligned(8))) pQPb2=0;
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
155 static uint8_t __attribute__((aligned(8))) tempBlocks[8*16*2]; //used for the horizontal code
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
156 static uint32_t __attribute__((aligned(4))) maxTmpNoise[4];
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
157 #else
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
158 static uint64_t packedYOffset= 0x0000000000000000LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
159 static uint64_t packedYScale= 0x0100010001000100LL;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
160 static uint8_t tempBlocks[8*16*2]; //used for the horizontal code
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
161 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
162
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
163 int hFlatnessThreshold= 56 - 16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
164 int vFlatnessThreshold= 56 - 16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
165
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
166 //amount of "black" u r willing to loose to get a brightness corrected picture
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
167 double maxClippedThreshold= 0.01;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
168
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
169 int maxAllowedY=234;
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
170 int minAllowedY=16;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
171
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
172 static struct PPFilter filters[]=
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
173 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
174 {"hb", "hdeblock", 1, 1, 3, H_DEBLOCK},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
175 {"vb", "vdeblock", 1, 2, 4, V_DEBLOCK},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
176 {"vr", "rkvdeblock", 1, 2, 4, H_RK1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
177 {"h1", "x1hdeblock", 1, 1, 3, H_X1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
178 {"v1", "x1vdeblock", 1, 2, 4, V_X1_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
179 {"dr", "dering", 1, 5, 6, DERING},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
180 {"al", "autolevels", 0, 1, 2, LEVEL_FIX},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
181 {"lb", "linblenddeint", 0, 1, 6, LINEAR_BLEND_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
182 {"li", "linipoldeint", 0, 1, 6, LINEAR_IPOL_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
183 {"ci", "cubicipoldeint", 0, 1, 6, CUBIC_IPOL_DEINT_FILTER},
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
184 {"md", "mediandeint", 0, 1, 6, MEDIAN_DEINT_FILTER},
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
185 {"tn", "tmpnoise", 1, 7, 8, TEMP_NOISE_FILTER},
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
186 {NULL, NULL,0,0,0,0} //End Marker
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
187 };
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
188
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
189 static char *replaceTable[]=
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
190 {
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
191 "default", "hdeblock:a,vdeblock:a,dering:a,autolevels,tmpnoise:a:150:200:400",
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
192 "de", "hdeblock:a,vdeblock:a,dering:a,autolevels,tmpnoise:a:150:200:400",
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
193 "fast", "x1hdeblock:a,x1vdeblock:a,dering:a,autolevels,tmpnoise:a:150:200:400",
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
194 "fa", "x1hdeblock:a,x1vdeblock:a,dering:a,autolevels,tmpnoise:a:150:200:400",
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
195 NULL //End Marker
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
196 };
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
197
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
198 #ifdef HAVE_MMX
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
199 static inline void unusedVariableWarningFixer()
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
200 {
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
201 if(
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
202 packedYOffset + packedYScale + w05 + w20 + w1400 + bm00000001 + bm00010000
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
203 + bm00001000 + bm10000000 + bm10000001 + bm11000011 + bm00000011 + bm11111110
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
204 + bm11000000 + bm00011000 + bm00110011 + bm11001100 + b00 + b01 + b02 + b0F
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
205 + bFF + b20 + b04+ b08 + pQPb2 + b80 + b7E + b7C + b3F + temp0 + temp1 + temp2 + temp3 + temp4
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
206 + temp5 + pQPb== 0) b00=0;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
207 }
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
208 #endif
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
209
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
210 #ifdef TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
211 static inline long long rdtsc()
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
212 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
213 long long l;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
214 asm volatile( "rdtsc\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
215 : "=A" (l)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
216 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
217 // printf("%d\n", int(l/1000));
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
218 return l;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
219 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
220 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
221
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
222 #ifdef HAVE_MMX2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
223 static inline void prefetchnta(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
224 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
225 asm volatile( "prefetchnta (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
226 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
227 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
228 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
229
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
230 static inline void prefetcht0(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
231 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
232 asm volatile( "prefetcht0 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
233 : : "r" (p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
234 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
235 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
236
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
237 static inline void prefetcht1(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
238 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
239 asm volatile( "prefetcht1 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
240 : : "r" (p)
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 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
243
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
244 static inline void prefetcht2(void *p)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
245 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
246 asm volatile( "prefetcht2 (%0)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
247 : : "r" (p)
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 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
250 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
251
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
252 //FIXME? |255-0| = 1 (shouldnt be a problem ...)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
253 /**
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
254 * 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
255 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
256 static inline int isVertDC(uint8_t src[], int stride){
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
257 int numEq= 0;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
258 #ifndef HAVE_MMX
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
259 int y;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
260 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
261 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
262 #ifdef HAVE_MMX
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
263 asm volatile(
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
264 "leal (%1, %2), %%eax \n\t"
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
265 "leal (%%eax, %2, 4), %%ebx \n\t"
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
266 // 0 1 2 3 4 5 6 7 8 9
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
267 // %1 eax eax+%2 eax+2%2 %1+4%2 ebx ebx+%2 ebx+2%2 %1+8%2 ebx+4%2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
268 "movq b7E, %%mm7 \n\t" // mm7 = 0x7F
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
269 "movq b7C, %%mm6 \n\t" // mm6 = 0x7D
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
270 "movq (%1), %%mm0 \n\t"
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
271 "movq (%%eax), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
272 "psubb %%mm1, %%mm0 \n\t" // mm0 = differnece
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
273 "paddb %%mm7, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
274 "pcmpgtb %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
275
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
276 "movq (%%eax,%2), %%mm2 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
277 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
278 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
279 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
280 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
281
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
282 "movq (%%eax, %2, 2), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
283 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
284 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
285 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
286 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
287
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
288 "movq (%1, %2, 4), %%mm2 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
289 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
290 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
291 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
292 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
293
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
294 "movq (%%ebx), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
295 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
296 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
297 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
298 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
299
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
300 "movq (%%ebx, %2), %%mm2 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
301 "psubb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
302 "paddb %%mm7, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
303 "pcmpgtb %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
304 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
305
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
306 "movq (%%ebx, %2, 2), %%mm1 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
307 "psubb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
308 "paddb %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
309 "pcmpgtb %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
310 "paddb %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
311
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
312 " \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
313 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
314 "psrlw $8, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
315 "paddb %%mm1, %%mm0 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
316 #ifdef HAVE_MMX2
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
317 "pshufw $0xF9, %%mm0, %%mm1 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
318 "paddb %%mm1, %%mm0 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
319 "pshufw $0xFE, %%mm0, %%mm1 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
320 #else
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
321 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
322 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
323 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
324 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
325 "psrlq $32, %%mm0 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
326 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
327 "paddb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
328 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
329 : "=r" (numEq)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
330 : "r" (src), "r" (stride)
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
331 : "%eax", "%ebx"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
332 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
333
119
b2f0e40866b1 optimizations (+2% speedup)
michael
parents: 118
diff changeset
334 numEq= (256 - numEq) &0xFF;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
335
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
336 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
337 for(y=0; y<BLOCK_SIZE-1; y++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
338 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
339 if(((src[0] - src[0+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
340 if(((src[1] - src[1+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
341 if(((src[2] - src[2+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
342 if(((src[3] - src[3+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
343 if(((src[4] - src[4+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
344 if(((src[5] - src[5+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
345 if(((src[6] - src[6+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
346 if(((src[7] - src[7+stride] + 1)&0xFFFF) < 3) numEq++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
347 src+= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
348 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
349 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
350 /* if(abs(numEq - asmEq) > 0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
351 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
352 printf("\nasm:%d c:%d\n", asmEq, numEq);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
353 for(int y=0; y<8; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
354 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
355 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
356 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
357 printf("%d ", temp[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
358 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
359 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
360 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
361 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
362 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
363 // 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
364 return (numEq > vFlatnessThreshold) ? 1 : 0;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
365 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
366
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
367 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
368 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
369 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
370 int isOk;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
371 src+= stride*3;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
372 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
373 // "int $3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
374 "movq (%1, %2), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
375 "movq (%1, %2, 8), %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
376 "movq %%mm0, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
377 "psubusb %%mm1, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
378 "psubusb %%mm2, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
379 "por %%mm1, %%mm0 \n\t" // ABS Diff
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
380
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
381 "movq pQPb, %%mm7 \n\t" // QP,..., QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
382 "paddusb %%mm7, %%mm7 \n\t" // 2QP ... 2QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
383 "psubusb %%mm7, %%mm0 \n\t" // Diff <= 2QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
384 "pcmpeqd b00, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
385 "psrlq $16, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
386 "pcmpeqd bFF, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
387 // "movd %%mm0, (%1, %2, 4)\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
388 "movd %%mm0, %0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
389 : "=r" (isOk)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
390 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
391 );
120
b0b89f5d0288 and another +2% speedup
michael
parents: 119
diff changeset
392 return isOk;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
393 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
394
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
395 int isOk2= 1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
396 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
397 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
398 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
399 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
400 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
401 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
402 /* if(isOk && !isOk2 || !isOk && isOk2)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
403 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
404 printf("\nasm:%d c:%d QP:%d\n", isOk, isOk2, QP);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
405 for(int y=0; y<9; y++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
406 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
407 for(int x=0; x<8; x++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
408 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
409 printf("%d ", src[x + y*stride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
410 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
411 printf("\n");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
412 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
413 } */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
414
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
415 return isOk2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
416 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
417
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
418 }
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 /**
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
421 * 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
422 * 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
423 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
424 static inline void doVertLowPass(uint8_t *src, int stride, int QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
425 {
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
426 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
427 src+= stride*3;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
428 asm volatile( //"movv %0 %1 %2\n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
429 "movq pQPb, %%mm0 \n\t" // QP,..., QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
430
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
431 "movq (%0), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
432 "movq (%0, %1), %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
433 "movq %%mm5, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
434 "movq %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
435 "psubusb %%mm6, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
436 "psubusb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
437 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
438 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
439 "pcmpeqb b00, %%mm2 \n\t" // diff <= QP -> FF
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
440
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
441 "pand %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
442 "pandn %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
443 "por %%mm2, %%mm6 \n\t"// First Line to Filter
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
444
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
445 "movq (%0, %1, 8), %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
446 "leal (%0, %1, 4), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
447 "leal (%0, %1, 8), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
448 "subl %1, %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
449 "addl %1, %0 \n\t" // %0 points to line 1 not 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
450 "movq (%0, %1, 8), %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
451 "movq %%mm5, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
452 "movq %%mm7, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
453 "psubusb %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
454 "psubusb %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
455 "por %%mm5, %%mm2 \n\t" // ABS Diff of lines
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
456 "psubusb %%mm0, %%mm2 \n\t" // diff <= QP -> 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
457 "pcmpeqb b00, %%mm2 \n\t" // diff <= QP -> FF
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
458
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
459 "pand %%mm2, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
460 "pandn %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
461 "por %%mm2, %%mm7 \n\t" // First Line to Filter
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
462
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
463
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
464 // 1 2 3 4 5 6 7 8
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
465 // %0 %0+%1 %0+2%1 eax %0+4%1 eax+2%1 ebx eax+4%1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
466 // 6 4 2 2 1 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
467 // 6 4 4 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
468 // 6 8 2
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
469
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
470 "movq (%0, %1), %%mm0 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
471 "movq %%mm0, %%mm1 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
472 PAVGB(%%mm6, %%mm0) //1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
473 PAVGB(%%mm6, %%mm0) //3 1 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
474
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
475 "movq (%0, %1, 4), %%mm2 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
476 "movq %%mm2, %%mm5 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
477 PAVGB((%%eax), %%mm2) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
478 PAVGB((%0, %1, 2), %%mm2) // 211 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
479 "movq %%mm2, %%mm3 \n\t" // 211 /4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
480 "movq (%0), %%mm4 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
481 PAVGB(%%mm4, %%mm3) // 4 211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
482 PAVGB(%%mm0, %%mm3) //642211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
483 "movq %%mm3, (%0) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
484 // mm1=2 mm2=3(211) mm4=1 mm5=5 mm6=0 mm7=9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
485 "movq %%mm1, %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
486 PAVGB(%%mm6, %%mm0) //1 1 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
487 "movq %%mm4, %%mm3 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
488 PAVGB((%0,%1,2), %%mm3) // 1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
489 PAVGB((%%eax,%1,2), %%mm5) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
490 PAVGB((%%eax), %%mm5) // 211 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
491 PAVGB(%%mm5, %%mm3) // 2 2211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
492 PAVGB(%%mm0, %%mm3) //4242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
493 "movq %%mm3, (%0,%1) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
494 // mm1=2 mm2=3(211) mm4=1 mm5=4(211) mm6=0 mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
495 PAVGB(%%mm4, %%mm6) //11 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
496 "movq (%%ebx), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
497 PAVGB((%%eax, %1, 2), %%mm0) // 11/2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
498 "movq %%mm0, %%mm3 \n\t" // 11/2
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
499 PAVGB(%%mm1, %%mm0) // 2 11/4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
500 PAVGB(%%mm6, %%mm0) //222 11/8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
501 PAVGB(%%mm2, %%mm0) //22242211/16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
502 "movq (%0, %1, 2), %%mm2 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
503 "movq %%mm0, (%0, %1, 2) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
504 // mm1=2 mm2=3 mm3=6(11) mm4=1 mm5=4(211) mm6=0(11) mm7=9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
505 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
506 PAVGB((%%ebx), %%mm0) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
507 PAVGB(%%mm0, %%mm6) //11 11 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
508 PAVGB(%%mm1, %%mm4) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
509 PAVGB(%%mm2, %%mm1) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
510 PAVGB(%%mm1, %%mm6) //1122 11 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
511 PAVGB(%%mm5, %%mm6) //112242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
512 "movq (%%eax), %%mm5 \n\t" // 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
513 "movq %%mm6, (%%eax) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
514 // mm0=7(11) mm1=2(11) mm2=3 mm3=6(11) mm4=1(11) mm5=4 mm7=9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
515 "movq (%%eax, %1, 4), %%mm6 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
516 PAVGB(%%mm7, %%mm6) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
517 PAVGB(%%mm4, %%mm6) // 11 11 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
518 PAVGB(%%mm3, %%mm6) // 11 2211 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
519 PAVGB(%%mm5, %%mm2) // 11 /2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
520 "movq (%0, %1, 4), %%mm4 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
521 PAVGB(%%mm4, %%mm2) // 112 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
522 PAVGB(%%mm2, %%mm6) // 112242211 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
523 "movq %%mm6, (%0, %1, 4) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
524 // mm0=7(11) mm1=2(11) mm2=3(112) mm3=6(11) mm4=5 mm5=4 mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
525 PAVGB(%%mm7, %%mm1) // 11 2 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
526 PAVGB(%%mm4, %%mm5) // 11 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
527 PAVGB(%%mm5, %%mm0) // 11 11 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
528 "movq (%%eax, %1, 2), %%mm6 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
529 PAVGB(%%mm6, %%mm1) // 11 4 2 /8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
530 PAVGB(%%mm0, %%mm1) // 11224222 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
531 "movq %%mm1, (%%eax, %1, 2) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
532 // mm2=3(112) mm3=6(11) mm4=5 mm5=4(11) mm6=6 mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
533 PAVGB((%%ebx), %%mm2) // 112 4 /8
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
534 "movq (%%eax, %1, 4), %%mm0 \n\t" // 1
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
535 PAVGB(%%mm0, %%mm6) // 1 1 /2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
536 PAVGB(%%mm7, %%mm6) // 1 12 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
537 PAVGB(%%mm2, %%mm6) // 1122424 /4
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
538 "movq %%mm6, (%%ebx) \n\t" // X
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
539 // mm0=8 mm3=6(11) mm4=5 mm5=4(11) mm7=9
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
540 PAVGB(%%mm7, %%mm5) // 11 2 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
541 PAVGB(%%mm7, %%mm5) // 11 6 /8
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
542
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
543 PAVGB(%%mm3, %%mm0) // 112 /4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
544 PAVGB(%%mm0, %%mm5) // 112246 /16
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
545 "movq %%mm5, (%%eax, %1, 4) \n\t" // X
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
546 "subl %1, %0 \n\t"
95
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 : "r" (src), "r" (stride)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
550 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
551 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
552 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
553 const int l1= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
554 const int l2= stride + l1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
555 const int l3= stride + l2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
556 const int l4= stride + l3;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
557 const int l5= stride + l4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
558 const int l6= stride + l5;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
559 const int l7= stride + l6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
560 const int l8= stride + l7;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
561 const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
562 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
563 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
564 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
565 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
566 const int first= ABS(src[0] - src[l1]) < QP ? src[0] : src[l1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
567 const int last= ABS(src[l8] - src[l9]) < QP ? src[l9] : src[l8];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
568
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
569 int sums[9];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
570 sums[0] = first + src[l1];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
571 sums[1] = src[l1] + src[l2];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
572 sums[2] = src[l2] + src[l3];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
573 sums[3] = src[l3] + src[l4];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
574 sums[4] = src[l4] + src[l5];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
575 sums[5] = src[l5] + src[l6];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
576 sums[6] = src[l6] + src[l7];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
577 sums[7] = src[l7] + src[l8];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
578 sums[8] = src[l8] + last;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
579
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
580 src[l1]= ((sums[0]<<2) + ((first + sums[2])<<1) + sums[4] + 8)>>4;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
581 src[l2]= ((src[l2]<<2) + ((first + sums[0] + sums[3])<<1) + sums[5] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
582 src[l3]= ((src[l3]<<2) + ((first + sums[1] + sums[4])<<1) + sums[6] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
583 src[l4]= ((src[l4]<<2) + ((sums[2] + sums[5])<<1) + sums[0] + sums[7] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
584 src[l5]= ((src[l5]<<2) + ((sums[3] + sums[6])<<1) + sums[1] + sums[8] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
585 src[l6]= ((src[l6]<<2) + ((last + sums[7] + sums[4])<<1) + sums[2] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
586 src[l7]= (((last + src[l7])<<2) + ((src[l8] + sums[5])<<1) + sums[3] + 8)>>4;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
587 src[l8]= ((sums[8]<<2) + ((last + sums[6])<<1) + sums[4] + 8)>>4;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
588
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
589 src++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
590 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
591
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
592 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
593 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
594
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
595 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
596 * 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
597 * values are correctly clipped (MMX2)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
598 * values are wraparound (C)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
599 * 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
600 0 8 16 24
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
601 x = 8
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
602 x/2 = 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
603 x/8 = 1
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
604 1 12 12 23
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
605 */
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
606 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
607 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
608 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
609 src+= stride*3;
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
610 // FIXME rounding
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
611 asm volatile(
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
612 "pxor %%mm7, %%mm7 \n\t" // 0
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
613 "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
614 "leal (%0, %1), %%eax \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
615 "leal (%%eax, %1, 4), %%ebx \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
616 // 0 1 2 3 4 5 6 7 8 9
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
617 // %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
618 "movq pQPb, %%mm0 \n\t" // QP,..., QP
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
619 "movq %%mm0, %%mm1 \n\t" // QP,..., QP
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
620 "paddusb b02, %%mm0 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
621 "psrlw $2, %%mm0 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
622 "pand b3F, %%mm0 \n\t" // QP/4,..., QP/4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
623 "paddusb %%mm1, %%mm0 \n\t" // QP*1.25 ...
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
624 "movq (%0, %1, 4), %%mm2 \n\t" // line 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
625 "movq (%%ebx), %%mm3 \n\t" // line 5
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
626 "movq %%mm2, %%mm4 \n\t" // line 4
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
627 "pcmpeqb %%mm5, %%mm5 \n\t" // -1
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
628 "pxor %%mm2, %%mm5 \n\t" // -line 4 - 1
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
629 PAVGB(%%mm3, %%mm5)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
630 "paddb %%mm6, %%mm5 \n\t" // (l5-l4)/2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
631 "psubusb %%mm3, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
632 "psubusb %%mm2, %%mm3 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
633 "por %%mm3, %%mm4 \n\t" // |l4 - l5|
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
634 "psubusb %%mm0, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
635 "pcmpeqb %%mm7, %%mm4 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
636 "pand %%mm4, %%mm5 \n\t" // d/2
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
637
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
638 // "paddb %%mm6, %%mm2 \n\t" // line 4 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
639 "paddb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
640 // "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
641 "movq %%mm2, (%0,%1, 4) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
642
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
643 "movq (%%ebx), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
644 // "paddb %%mm6, %%mm2 \n\t" // line 5 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
645 "psubb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
646 // "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
647 "movq %%mm2, (%%ebx) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
648
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
649 "paddb %%mm6, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
650 "psrlw $2, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
651 "pand b3F, %%mm5 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
652 "psubb b20, %%mm5 \n\t" // (l5-l4)/8
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 "movq (%%eax, %1, 2), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
655 "paddb %%mm6, %%mm2 \n\t" // line 3 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
656 "paddsb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
657 "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
658 "movq %%mm2, (%%eax, %1, 2) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
659
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
660 "movq (%%ebx, %1), %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
661 "paddb %%mm6, %%mm2 \n\t" // line 6 + 0x80
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
662 "psubsb %%mm5, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
663 "psubb %%mm6, %%mm2 \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
664 "movq %%mm2, (%%ebx, %1) \n\t"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
665
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
666 :
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
667 : "r" (src), "r" (stride)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
668 : "%eax", "%ebx"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
669 );
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
670 #else
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
671 const int l1= stride;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
672 const int l2= stride + l1;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
673 const int l3= stride + l2;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
674 const int l4= stride + l3;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
675 const int l5= stride + l4;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
676 const int l6= stride + l5;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
677 // const int l7= stride + l6;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
678 // const int l8= stride + l7;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
679 // const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
680 int x;
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
681 const int QP15= QP + (QP>>2);
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
682 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
683 for(x=0; x<BLOCK_SIZE; x++)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
684 {
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
685 const int v = (src[x+l5] - src[x+l4]);
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
686 if(ABS(v) < QP15)
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
687 {
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
688 src[x+l3] +=v>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
689 src[x+l4] +=v>>1;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
690 src[x+l5] -=v>>1;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
691 src[x+l6] -=v>>3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
692
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
693 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
694 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
695
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
696 #endif
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
697 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
698
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
699 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
700 * Experimental Filter 1
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
701 * will not damage linear gradients
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
702 * 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
703 * 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
704 * MMX2 version does correct clipping C version doesnt
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
705 */
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
706 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
707 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
708 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
709 src+= stride*3;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
710
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
711 asm volatile(
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
712 "pxor %%mm7, %%mm7 \n\t" // 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
713 // "movq b80, %%mm6 \n\t" // MIN_SIGNED_BYTE
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
714 "leal (%0, %1), %%eax \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
715 "leal (%%eax, %1, 4), %%ebx \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
716 // 0 1 2 3 4 5 6 7 8 9
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
717 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
718 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
719 "movq (%0, %1, 4), %%mm1 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
720 "movq %%mm1, %%mm2 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
721 "psubusb %%mm0, %%mm1 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
722 "psubusb %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
723 "por %%mm1, %%mm0 \n\t" // |l2 - l3|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
724 "movq (%%ebx), %%mm3 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
725 "movq (%%ebx, %1), %%mm4 \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
726 "movq %%mm3, %%mm5 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
727 "psubusb %%mm4, %%mm3 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
728 "psubusb %%mm5, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
729 "por %%mm4, %%mm3 \n\t" // |l5 - l6|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
730 PAVGB(%%mm3, %%mm0) // (|l2 - l3| + |l5 - l6|)/2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
731 "movq %%mm2, %%mm1 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
732 "psubusb %%mm5, %%mm2 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
733 "movq %%mm2, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
734 "pcmpeqb %%mm7, %%mm2 \n\t" // (l4 - l5) <= 0 ? -1 : 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
735 "psubusb %%mm1, %%mm5 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
736 "por %%mm5, %%mm4 \n\t" // |l4 - l5|
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
737 "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
738 "movq %%mm4, %%mm3 \n\t" // d
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
739 "psubusb pQPb, %%mm4 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
740 "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
741 "psubusb b01, %%mm3 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
742 "pand %%mm4, %%mm3 \n\t" // d <= QP ? d : 0
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
743
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
744 PAVGB(%%mm7, %%mm3) // d/2
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
745 "movq %%mm3, %%mm1 \n\t" // d/2
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
746 PAVGB(%%mm7, %%mm3) // d/4
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
747 PAVGB(%%mm1, %%mm3) // 3*d/8
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
748
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
749 "movq (%0, %1, 4), %%mm0 \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
750 "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
751 "psubusb %%mm3, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
752 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
753 "movq %%mm0, (%0, %1, 4) \n\t" // line 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
754
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
755 "movq (%%ebx), %%mm0 \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
756 "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
757 "paddusb %%mm3, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
758 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
759 "movq %%mm0, (%%ebx) \n\t" // line 5
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
760
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
761 PAVGB(%%mm7, %%mm1) // d/4
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
762
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
763 "movq (%%eax, %1, 2), %%mm0 \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
764 "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
765 "psubusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
766 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
767 "movq %%mm0, (%%eax, %1, 2) \n\t" // line 3
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
768
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
769 "movq (%%ebx, %1), %%mm0 \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
770 "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
771 "paddusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
772 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
773 "movq %%mm0, (%%ebx, %1) \n\t" // line 6
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
774
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
775 PAVGB(%%mm7, %%mm1) // d/8
97
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 "movq (%%eax, %1), %%mm0 \n\t" // line 2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
778 "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
779 "psubusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
780 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
781 "movq %%mm0, (%%eax, %1) \n\t" // line 2
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
782
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
783 "movq (%%ebx, %1, 2), %%mm0 \n\t" // line 7
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
784 "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
785 "paddusb %%mm1, %%mm0 \n\t"
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
786 "pxor %%mm2, %%mm0 \n\t"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
787 "movq %%mm0, (%%ebx, %1, 2) \n\t" // line 7
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
788
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
789 :
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
790 : "r" (src), "r" (stride)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
791 : "%eax", "%ebx"
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
792 );
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
793 #else
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
794
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
795 const int l1= stride;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
796 const int l2= stride + l1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
797 const int l3= stride + l2;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
798 const int l4= stride + l3;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
799 const int l5= stride + l4;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
800 const int l6= stride + l5;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
801 const int l7= stride + l6;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
802 // const int l8= stride + l7;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
803 // const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
804 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
805
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
806 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
807 for(x=0; x<BLOCK_SIZE; x++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
808 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
809 int a= src[l3] - src[l4];
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
810 int b= src[l4] - src[l5];
99
4f072fa99ccf fixed a rounding bug thing in the X1 Filter
michael
parents: 98
diff changeset
811 int c= src[l5] - src[l6];
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
812
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
813 int d= ABS(b) - ((ABS(a) + ABS(c))>>1);
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
814 d= MAX(d, 0);
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
815
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
816 if(d < QP)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
817 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
818 int v = d * SIGN(-b);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
819
141
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
820 src[l2] +=v>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
821 src[l3] +=v>>2;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
822 src[l4] +=(3*v)>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
823 src[l5] -=(3*v)>>3;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
824 src[l6] -=v>>2;
626bfabff1f5 c speedup (x1, rk1 filters)
michael
parents: 140
diff changeset
825 src[l7] -=v>>3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
826
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
827 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
828 src++;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
829 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
830 /*
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
831 const int l1= stride;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
832 const int l2= stride + l1;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
833 const int l3= stride + l2;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
834 const int l4= stride + l3;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
835 const int l5= stride + l4;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
836 const int l6= stride + l5;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
837 const int l7= stride + l6;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
838 const int l8= stride + l7;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
839 const int l9= stride + l8;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
840 for(int x=0; x<BLOCK_SIZE; x++)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
841 {
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
842 int v2= src[l2];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
843 int v3= src[l3];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
844 int v4= src[l4];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
845 int v5= src[l5];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
846 int v6= src[l6];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
847 int v7= src[l7];
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
848
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
849 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
850 {
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
851 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
852 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
853 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
854 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
855 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
856 src++;
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
857 }
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
858 */
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
859 #endif
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
860 }
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
861
165
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
862 /**
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
863 * Experimental Filter 1 (Horizontal)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
864 * will not damage linear gradients
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
865 * Flat blocks should look like they where passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
866 * can only smooth blocks at the expected locations (it cant smooth them if they did move)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
867 * MMX2 version does correct clipping C version doesnt
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
868 * not identical with the vertical one
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
869 */
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
870 static inline void horizX1Filter(uint8_t *src, int stride, int QP)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
871 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
872 int y;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
873 //FIXME (has little in common with the mmx2 version)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
874 for(y=0; y<BLOCK_SIZE; y++)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
875 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
876 int a= src[1] - src[2];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
877 int b= src[3] - src[4];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
878 int c= src[5] - src[6];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
879
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
880 int d= MAX(ABS(b) - (ABS(a) + ABS(c))/2, 0);
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
881
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
882 if(d < QP)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
883 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
884 int v = d * SIGN(-b);
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
885
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
886 src[1] +=v/8;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
887 src[2] +=v/4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
888 src[3] +=3*v/8;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
889 src[4] -=3*v/8;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
890 src[5] -=v/4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
891 src[6] -=v/8;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
892
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
893 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
894 src+=stride;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
895 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
896 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
897
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
898
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
899 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
900 {
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
901 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
902 /*
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
903 uint8_t tmp[16];
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
904 const int l1= stride;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
905 const int l2= stride + l1;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
906 const int l3= stride + l2;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
907 const int l4= (int)tmp - (int)src - stride*3;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
908 const int l5= (int)tmp - (int)src - stride*3 + 8;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
909 const int l6= stride*3 + l3;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
910 const int l7= stride + l6;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
911 const int l8= stride + l7;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
912
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
913 memcpy(tmp, src+stride*7, 8);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
914 memcpy(tmp+8, src+stride*8, 8);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
915 */
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
916 src+= stride*4;
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
917 asm volatile(
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
918
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
919 #if 0 //sligtly more accurate and slightly slower
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
920 "pxor %%mm7, %%mm7 \n\t" // 0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
921 "leal (%0, %1), %%eax \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
922 "leal (%%eax, %1, 4), %%ebx \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
923 // 0 1 2 3 4 5 6 7
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
924 // %0 %0+%1 %0+2%1 eax+2%1 %0+4%1 eax+4%1 ebx+%1 ebx+2%1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
925 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
926
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
927
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
928 "movq (%0, %1, 2), %%mm0 \n\t" // l2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
929 "movq (%0), %%mm1 \n\t" // l0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
930 "movq %%mm0, %%mm2 \n\t" // l2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
931 PAVGB(%%mm7, %%mm0) // ~l2/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
932 PAVGB(%%mm1, %%mm0) // ~(l2 + 2l0)/4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
933 PAVGB(%%mm2, %%mm0) // ~(5l2 + 2l0)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
934
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
935 "movq (%%eax), %%mm1 \n\t" // l1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
936 "movq (%%eax, %1, 2), %%mm3 \n\t" // l3
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
937 "movq %%mm1, %%mm4 \n\t" // l1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
938 PAVGB(%%mm7, %%mm1) // ~l1/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
939 PAVGB(%%mm3, %%mm1) // ~(l1 + 2l3)/4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
940 PAVGB(%%mm4, %%mm1) // ~(5l1 + 2l3)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
941
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
942 "movq %%mm0, %%mm4 \n\t" // ~(5l2 + 2l0)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
943 "psubusb %%mm1, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
944 "psubusb %%mm4, %%mm1 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
945 "por %%mm0, %%mm1 \n\t" // ~|2l0 - 5l1 + 5l2 - 2l3|/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
946 // mm1= |lenergy|, mm2= l2, mm3= l3, mm7=0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
947
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
948 "movq (%0, %1, 4), %%mm0 \n\t" // l4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
949 "movq %%mm0, %%mm4 \n\t" // l4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
950 PAVGB(%%mm7, %%mm0) // ~l4/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
951 PAVGB(%%mm2, %%mm0) // ~(l4 + 2l2)/4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
952 PAVGB(%%mm4, %%mm0) // ~(5l4 + 2l2)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
953
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
954 "movq (%%ebx), %%mm2 \n\t" // l5
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
955 "movq %%mm3, %%mm5 \n\t" // l3
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
956 PAVGB(%%mm7, %%mm3) // ~l3/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
957 PAVGB(%%mm2, %%mm3) // ~(l3 + 2l5)/4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
958 PAVGB(%%mm5, %%mm3) // ~(5l3 + 2l5)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
959
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
960 "movq %%mm0, %%mm6 \n\t" // ~(5l4 + 2l2)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
961 "psubusb %%mm3, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
962 "psubusb %%mm6, %%mm3 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
963 "por %%mm0, %%mm3 \n\t" // ~|2l2 - 5l3 + 5l4 - 2l5|/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
964 "pcmpeqb %%mm7, %%mm0 \n\t" // SIGN(2l2 - 5l3 + 5l4 - 2l5)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
965 // mm0= SIGN(menergy), mm1= |lenergy|, mm2= l5, mm3= |menergy|, mm4=l4, mm5= l3, mm7=0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
966
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
967 "movq (%%ebx, %1), %%mm6 \n\t" // l6
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
968 "movq %%mm6, %%mm5 \n\t" // l6
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
969 PAVGB(%%mm7, %%mm6) // ~l6/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
970 PAVGB(%%mm4, %%mm6) // ~(l6 + 2l4)/4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
971 PAVGB(%%mm5, %%mm6) // ~(5l6 + 2l4)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
972
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
973 "movq (%%ebx, %1, 2), %%mm5 \n\t" // l7
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
974 "movq %%mm2, %%mm4 \n\t" // l5
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
975 PAVGB(%%mm7, %%mm2) // ~l5/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
976 PAVGB(%%mm5, %%mm2) // ~(l5 + 2l7)/4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
977 PAVGB(%%mm4, %%mm2) // ~(5l5 + 2l7)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
978
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
979 "movq %%mm6, %%mm4 \n\t" // ~(5l6 + 2l4)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
980 "psubusb %%mm2, %%mm6 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
981 "psubusb %%mm4, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
982 "por %%mm6, %%mm2 \n\t" // ~|2l4 - 5l5 + 5l6 - 2l7|/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
983 // mm0= SIGN(menergy), mm1= |lenergy|/8, mm2= |renergy|/8, mm3= |menergy|/8, mm7=0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
984
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
985
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
986 PMINUB(%%mm2, %%mm1, %%mm4) // MIN(|lenergy|,|renergy|)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
987 "movq pQPb, %%mm4 \n\t" // QP //FIXME QP+1 ?
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
988 "paddusb b01, %%mm4 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
989 "pcmpgtb %%mm3, %%mm4 \n\t" // |menergy|/8 < QP
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
990 "psubusb %%mm1, %%mm3 \n\t" // d=|menergy|/8-MIN(|lenergy|,|renergy|)/8
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
991 "pand %%mm4, %%mm3 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
992
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
993 "movq %%mm3, %%mm1 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
994 // "psubusb b01, %%mm3 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
995 PAVGB(%%mm7, %%mm3)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
996 PAVGB(%%mm7, %%mm3)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
997 "paddusb %%mm1, %%mm3 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
998 // "paddusb b01, %%mm3 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
999
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1000 "movq (%%eax, %1, 2), %%mm6 \n\t" //l3
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1001 "movq (%0, %1, 4), %%mm5 \n\t" //l4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1002 "movq (%0, %1, 4), %%mm4 \n\t" //l4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1003 "psubusb %%mm6, %%mm5 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1004 "psubusb %%mm4, %%mm6 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1005 "por %%mm6, %%mm5 \n\t" // |l3-l4|
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1006 "pcmpeqb %%mm7, %%mm6 \n\t" // SIGN(l3-l4)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1007 "pxor %%mm6, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1008 "pand %%mm0, %%mm3 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1009 PMINUB(%%mm5, %%mm3, %%mm0)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1010
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1011 "psubusb b01, %%mm3 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1012 PAVGB(%%mm7, %%mm3)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1013
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1014 "movq (%%eax, %1, 2), %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1015 "movq (%0, %1, 4), %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1016 "pxor %%mm6, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1017 "pxor %%mm6, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1018 "psubb %%mm3, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1019 "paddb %%mm3, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1020 "pxor %%mm6, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1021 "pxor %%mm6, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1022 "movq %%mm0, (%%eax, %1, 2) \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1023 "movq %%mm2, (%0, %1, 4) \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1024 #endif
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1025
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1026 "leal (%0, %1), %%eax \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1027 "pcmpeqb %%mm6, %%mm6 \n\t" // -1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1028 // 0 1 2 3 4 5 6 7
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1029 // %0 %0+%1 %0+2%1 eax+2%1 %0+4%1 eax+4%1 ebx+%1 ebx+2%1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1030 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1031
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1032
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1033 "movq (%%eax, %1, 2), %%mm1 \n\t" // l3
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1034 "movq (%0, %1, 4), %%mm0 \n\t" // l4
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1035 "pxor %%mm6, %%mm1 \n\t" // -l3-1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1036 PAVGB(%%mm1, %%mm0) // -q+128 = (l4-l3+256)/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1037 // mm1=-l3-1, mm0=128-q
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1038
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1039 "movq (%%eax, %1, 4), %%mm2 \n\t" // l5
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1040 "movq (%%eax, %1), %%mm3 \n\t" // l2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1041 "pxor %%mm6, %%mm2 \n\t" // -l5-1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1042 "movq %%mm2, %%mm5 \n\t" // -l5-1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1043 "movq b80, %%mm4 \n\t" // 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1044 "leal (%%eax, %1, 4), %%ebx \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1045 PAVGB(%%mm3, %%mm2) // (l2-l5+256)/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1046 PAVGB(%%mm0, %%mm4) // ~(l4-l3)/4 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1047 PAVGB(%%mm2, %%mm4) // ~(l2-l5)/4 +(l4-l3)/8 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1048 PAVGB(%%mm0, %%mm4) // ~(l2-l5)/8 +5(l4-l3)/16 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1049 // mm1=-l3-1, mm0=128-q, mm3=l2, mm4=menergy/16 + 128, mm5= -l5-1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1050
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1051 "movq (%%eax), %%mm2 \n\t" // l1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1052 "pxor %%mm6, %%mm2 \n\t" // -l1-1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1053 PAVGB(%%mm3, %%mm2) // (l2-l1+256)/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1054 PAVGB((%0), %%mm1) // (l0-l3+256)/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1055 "movq b80, %%mm3 \n\t" // 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1056 PAVGB(%%mm2, %%mm3) // ~(l2-l1)/4 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1057 PAVGB(%%mm1, %%mm3) // ~(l0-l3)/4 +(l2-l1)/8 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1058 PAVGB(%%mm2, %%mm3) // ~(l0-l3)/8 +5(l2-l1)/16 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1059 // mm0=128-q, mm3=lenergy/16 + 128, mm4= menergy/16 + 128, mm5= -l5-1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1060
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1061 PAVGB((%%ebx, %1), %%mm5) // (l6-l5+256)/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1062 "movq (%%ebx, %1, 2), %%mm1 \n\t" // l7
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1063 "pxor %%mm6, %%mm1 \n\t" // -l7-1
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1064 PAVGB((%0, %1, 4), %%mm1) // (l4-l7+256)/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1065 "movq b80, %%mm2 \n\t" // 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1066 PAVGB(%%mm5, %%mm2) // ~(l6-l5)/4 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1067 PAVGB(%%mm1, %%mm2) // ~(l4-l7)/4 +(l6-l5)/8 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1068 PAVGB(%%mm5, %%mm2) // ~(l4-l7)/8 +5(l6-l5)/16 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1069 // mm0=128-q, mm2=renergy/16 + 128, mm3=lenergy/16 + 128, mm4= menergy/16 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1070
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1071 "movq b00, %%mm1 \n\t" // 0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1072 "movq b00, %%mm5 \n\t" // 0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1073 "psubb %%mm2, %%mm1 \n\t" // 128 - renergy/16
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1074 "psubb %%mm3, %%mm5 \n\t" // 128 - lenergy/16
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1075 PMAXUB(%%mm1, %%mm2) // 128 + |renergy/16|
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1076 PMAXUB(%%mm5, %%mm3) // 128 + |lenergy/16|
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1077 PMINUB(%%mm2, %%mm3, %%mm1) // 128 + MIN(|lenergy|,|renergy|)/16
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1078
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1079 // mm0=128-q, mm3=128 + MIN(|lenergy|,|renergy|)/16, mm4= menergy/16 + 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1080
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1081 "movq b00, %%mm7 \n\t" // 0
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1082 "movq pQPb, %%mm2 \n\t" // QP
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1083 PAVGB(%%mm6, %%mm2) // 128 + QP/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1084 "psubb %%mm6, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1085
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1086 "movq %%mm4, %%mm1 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1087 "pcmpgtb %%mm7, %%mm1 \n\t" // SIGN(menergy)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1088 "pxor %%mm1, %%mm4 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1089 "psubb %%mm1, %%mm4 \n\t" // 128 + |menergy|/16
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1090 "pcmpgtb %%mm4, %%mm2 \n\t" // |menergy|/16 < QP/2
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1091 "psubusb %%mm3, %%mm4 \n\t" //d=|menergy|/16 - MIN(|lenergy|,|renergy|)/16
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1092 // mm0=128-q, mm1= SIGN(menergy), mm2= |menergy|/16 < QP/2, mm4= d/16
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1093
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1094 "movq %%mm4, %%mm3 \n\t" // d
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1095 "psubusb b01, %%mm4 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1096 PAVGB(%%mm7, %%mm4) // d/32
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1097 PAVGB(%%mm7, %%mm4) // (d + 32)/64
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1098 "paddb %%mm3, %%mm4 \n\t" // 5d/64
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1099 "pand %%mm2, %%mm4 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1100
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1101 "movq b80, %%mm5 \n\t" // 128
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1102 "psubb %%mm0, %%mm5 \n\t" // q
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1103 "paddsb %%mm6, %%mm5 \n\t" // fix bad rounding
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1104 "pcmpgtb %%mm5, %%mm7 \n\t" // SIGN(q)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1105 "pxor %%mm7, %%mm5 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1106
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1107 PMINUB(%%mm5, %%mm4, %%mm3) // MIN(|q|, 5d/64)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1108 "pxor %%mm1, %%mm7 \n\t" // SIGN(d*q)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1109
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1110 "pand %%mm7, %%mm4 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1111 "movq (%%eax, %1, 2), %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1112 "movq (%0, %1, 4), %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1113 "pxor %%mm1, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1114 "pxor %%mm1, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1115 "paddb %%mm4, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1116 "psubb %%mm4, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1117 "pxor %%mm1, %%mm0 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1118 "pxor %%mm1, %%mm2 \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1119 "movq %%mm0, (%%eax, %1, 2) \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1120 "movq %%mm2, (%0, %1, 4) \n\t"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1121
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1122 :
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1123 : "r" (src), "r" (stride)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1124 : "%eax", "%ebx"
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1125 );
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1126
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1127 /*
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1128 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1129 int x;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1130 src-= stride;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1131 for(x=0; x<BLOCK_SIZE; x++)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1132 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1133 const int middleEnergy= 5*(src[l5] - src[l4]) + 2*(src[l3] - src[l6]);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1134 if(ABS(middleEnergy)< 8*QP)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1135 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1136 const int q=(src[l4] - src[l5])/2;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1137 const int leftEnergy= 5*(src[l3] - src[l2]) + 2*(src[l1] - src[l4]);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1138 const int rightEnergy= 5*(src[l7] - src[l6]) + 2*(src[l5] - src[l8]);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1139
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1140 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) );
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1141 d= MAX(d, 0);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1142
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1143 d= (5*d + 32) >> 6;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1144 d*= SIGN(-middleEnergy);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1145
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1146 if(q>0)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1147 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1148 d= d<0 ? 0 : d;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1149 d= d>q ? q : d;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1150 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1151 else
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1152 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1153 d= d>0 ? 0 : d;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1154 d= d<q ? q : d;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1155 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1156
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1157 src[l4]-= d;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1158 src[l5]+= d;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1159 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1160 src++;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1161 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1162 src-=8;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1163 for(x=0; x<8; x++)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1164 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1165 int y;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1166 for(y=4; y<6; y++)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1167 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1168 int d= src[x+y*stride] - tmp[x+(y-4)*8];
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1169 int ad= ABS(d);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1170 static int max=0;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1171 static int sum=0;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1172 static int num=0;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1173 static int bias=0;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1174
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1175 if(max<ad) max=ad;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1176 sum+= ad>3 ? 1 : 0;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1177 if(ad>3)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1178 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1179 src[0] = src[7] = src[stride*7] = src[(stride+1)*7]=255;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1180 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1181 if(y==4) bias+=d;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1182 num++;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1183 if(num%1000000 == 0)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1184 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1185 printf(" %d %d %d %d\n", num, sum, max, bias);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1186 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1187 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1188 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1189 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1190 */
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1191 #elif defined (HAVE_MMX)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1192 src+= stride*4;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
1193
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1194 asm volatile(
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1195 "pxor %%mm7, %%mm7 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1196 "leal (%0, %1), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1197 "leal (%%eax, %1, 4), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1198 // 0 1 2 3 4 5 6 7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1199 // %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
1200 // %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
1201
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1202 "movq (%0), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1203 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1204 "punpcklbw %%mm7, %%mm0 \n\t" // low part of line 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1205 "punpckhbw %%mm7, %%mm1 \n\t" // high part of line 0
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 "movq (%%eax), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1208 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1209 "punpcklbw %%mm7, %%mm2 \n\t" // low part of line 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1210 "punpckhbw %%mm7, %%mm3 \n\t" // high part of line 1
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1211
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1212 "movq (%%eax, %1), %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1213 "movq %%mm4, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1214 "punpcklbw %%mm7, %%mm4 \n\t" // low part of line 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1215 "punpckhbw %%mm7, %%mm5 \n\t" // high part of line 2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1216
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1217 "paddw %%mm0, %%mm0 \n\t" // 2L0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1218 "paddw %%mm1, %%mm1 \n\t" // 2H0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1219 "psubw %%mm4, %%mm2 \n\t" // L1 - L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1220 "psubw %%mm5, %%mm3 \n\t" // H1 - H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1221 "psubw %%mm2, %%mm0 \n\t" // 2L0 - L1 + L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1222 "psubw %%mm3, %%mm1 \n\t" // 2H0 - H1 + H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1223
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1224 "psllw $2, %%mm2 \n\t" // 4L1 - 4L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1225 "psllw $2, %%mm3 \n\t" // 4H1 - 4H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1226 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1227 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1228
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1229 "movq (%%eax, %1, 2), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1230 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1231 "punpcklbw %%mm7, %%mm2 \n\t" // L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1232 "punpckhbw %%mm7, %%mm3 \n\t" // H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1233
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1234 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1235 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1236 "psubw %%mm2, %%mm0 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1237 "psubw %%mm3, %%mm1 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1238 "movq %%mm0, temp0 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1239 "movq %%mm1, temp1 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1240
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1241 "movq (%0, %1, 4), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1242 "movq %%mm0, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1243 "punpcklbw %%mm7, %%mm0 \n\t" // L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1244 "punpckhbw %%mm7, %%mm1 \n\t" // H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1245
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1246 "psubw %%mm0, %%mm2 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1247 "psubw %%mm1, %%mm3 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1248 "movq %%mm2, temp2 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1249 "movq %%mm3, temp3 \n\t" // H3 - H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1250 "paddw %%mm4, %%mm4 \n\t" // 2L2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1251 "paddw %%mm5, %%mm5 \n\t" // 2H2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1252 "psubw %%mm2, %%mm4 \n\t" // 2L2 - L3 + L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1253 "psubw %%mm3, %%mm5 \n\t" // 2H2 - H3 + H4
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 "psllw $2, %%mm2 \n\t" // 4L3 - 4L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1256 "psllw $2, %%mm3 \n\t" // 4H3 - 4H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1257 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1258 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1259 //50 opcodes so far
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1260 "movq (%%ebx), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1261 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1262 "punpcklbw %%mm7, %%mm2 \n\t" // L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1263 "punpckhbw %%mm7, %%mm3 \n\t" // H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1264 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1265 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1266 "psubw %%mm2, %%mm4 \n\t" // 2L2 - 5L3 + 5L4 - 2L5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1267 "psubw %%mm3, %%mm5 \n\t" // 2H2 - 5H3 + 5H4 - 2H5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1268
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1269 "movq (%%ebx, %1), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1270 "punpcklbw %%mm7, %%mm6 \n\t" // L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1271 "psubw %%mm6, %%mm2 \n\t" // L5 - L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1272 "movq (%%ebx, %1), %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1273 "punpckhbw %%mm7, %%mm6 \n\t" // H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1274 "psubw %%mm6, %%mm3 \n\t" // H5 - H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1275
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1276 "paddw %%mm0, %%mm0 \n\t" // 2L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1277 "paddw %%mm1, %%mm1 \n\t" // 2H4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1278 "psubw %%mm2, %%mm0 \n\t" // 2L4 - L5 + L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1279 "psubw %%mm3, %%mm1 \n\t" // 2H4 - H5 + H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1280
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1281 "psllw $2, %%mm2 \n\t" // 4L5 - 4L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1282 "psllw $2, %%mm3 \n\t" // 4H5 - 4H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1283 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1284 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1285
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1286 "movq (%%ebx, %1, 2), %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1287 "movq %%mm2, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1288 "punpcklbw %%mm7, %%mm2 \n\t" // L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1289 "punpckhbw %%mm7, %%mm3 \n\t" // H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1290
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1291 "paddw %%mm2, %%mm2 \n\t" // 2L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1292 "paddw %%mm3, %%mm3 \n\t" // 2H7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1293 "psubw %%mm2, %%mm0 \n\t" // 2L4 - 5L5 + 5L6 - 2L7
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1294 "psubw %%mm3, %%mm1 \n\t" // 2H4 - 5H5 + 5H6 - 2H7
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 "movq temp0, %%mm2 \n\t" // 2L0 - 5L1 + 5L2 - 2L3
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1297 "movq temp1, %%mm3 \n\t" // 2H0 - 5H1 + 5H2 - 2H3
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1298
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1299 #ifdef HAVE_MMX2
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1300 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1301 "psubw %%mm0, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1302 "pmaxsw %%mm6, %%mm0 \n\t" // |2L4 - 5L5 + 5L6 - 2L7|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1303 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1304 "psubw %%mm1, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1305 "pmaxsw %%mm6, %%mm1 \n\t" // |2H4 - 5H5 + 5H6 - 2H7|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1306 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1307 "psubw %%mm2, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1308 "pmaxsw %%mm6, %%mm2 \n\t" // |2L0 - 5L1 + 5L2 - 2L3|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1309 "movq %%mm7, %%mm6 \n\t" // 0
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1310 "psubw %%mm3, %%mm6 \n\t"
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1311 "pmaxsw %%mm6, %%mm3 \n\t" // |2H0 - 5H1 + 5H2 - 2H3|
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1312 #else
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1313 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1314 "pcmpgtw %%mm0, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1315 "pxor %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1316 "psubw %%mm6, %%mm0 \n\t" // |2L4 - 5L5 + 5L6 - 2L7|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1317 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1318 "pcmpgtw %%mm1, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1319 "pxor %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1320 "psubw %%mm6, %%mm1 \n\t" // |2H4 - 5H5 + 5H6 - 2H7|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1321 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1322 "pcmpgtw %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1323 "pxor %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1324 "psubw %%mm6, %%mm2 \n\t" // |2L0 - 5L1 + 5L2 - 2L3|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1325 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1326 "pcmpgtw %%mm3, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1327 "pxor %%mm6, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1328 "psubw %%mm6, %%mm3 \n\t" // |2H0 - 5H1 + 5H2 - 2H3|
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1329 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1330
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1331 #ifdef HAVE_MMX2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1332 "pminsw %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1333 "pminsw %%mm3, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1334 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1335 "movq %%mm0, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1336 "psubusw %%mm2, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1337 "psubw %%mm6, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1338 "movq %%mm1, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1339 "psubusw %%mm3, %%mm6 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1340 "psubw %%mm6, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1341 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1342
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1343 "movq %%mm7, %%mm6 \n\t" // 0
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1344 "pcmpgtw %%mm4, %%mm6 \n\t" // sign(2L2 - 5L3 + 5L4 - 2L5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1345 "pxor %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1346 "psubw %%mm6, %%mm4 \n\t" // |2L2 - 5L3 + 5L4 - 2L5|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1347 "pcmpgtw %%mm5, %%mm7 \n\t" // sign(2H2 - 5H3 + 5H4 - 2H5)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1348 "pxor %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1349 "psubw %%mm7, %%mm5 \n\t" // |2H2 - 5H3 + 5H4 - 2H5|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1350 // 100 opcodes
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1351 "movd %2, %%mm2 \n\t" // QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1352 "punpcklwd %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1353 "punpcklwd %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1354 "psllw $3, %%mm2 \n\t" // 8QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1355 "movq %%mm2, %%mm3 \n\t" // 8QP
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1356 "pcmpgtw %%mm4, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1357 "pcmpgtw %%mm5, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1358 "pand %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1359 "pand %%mm3, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1360
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1361
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1362 "psubusw %%mm0, %%mm4 \n\t" // hd
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1363 "psubusw %%mm1, %%mm5 \n\t" // ld
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
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1366 "movq w05, %%mm2 \n\t" // 5
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1367 "pmullw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1368 "pmullw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1369 "movq w20, %%mm2 \n\t" // 32
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1370 "paddw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1371 "paddw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1372 "psrlw $6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1373 "psrlw $6, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1374
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1375 /*
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1376 "movq w06, %%mm2 \n\t" // 6
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1377 "paddw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1378 "paddw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1379 "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
1380 //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
1381 "pmulhw %%mm2, %%mm4 \n\t" // hd/13
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1382 "pmulhw %%mm2, %%mm5 \n\t" // ld/13
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1383 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1384
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1385 "movq temp2, %%mm0 \n\t" // L3 - L4
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1386 "movq temp3, %%mm1 \n\t" // H3 - H4
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 "pxor %%mm2, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1389 "pxor %%mm3, %%mm3 \n\t"
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 "pcmpgtw %%mm0, %%mm2 \n\t" // sign (L3-L4)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1392 "pcmpgtw %%mm1, %%mm3 \n\t" // sign (H3-H4)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1393 "pxor %%mm2, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1394 "pxor %%mm3, %%mm1 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1395 "psubw %%mm2, %%mm0 \n\t" // |L3-L4|
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1396 "psubw %%mm3, %%mm1 \n\t" // |H3-H4|
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1397 "psrlw $1, %%mm0 \n\t" // |L3 - L4|/2
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1398 "psrlw $1, %%mm1 \n\t" // |H3 - H4|/2
95
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 "pxor %%mm6, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1401 "pxor %%mm7, %%mm3 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1402 "pand %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1403 "pand %%mm3, %%mm5 \n\t"
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 #ifdef HAVE_MMX2
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1406 "pminsw %%mm0, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1407 "pminsw %%mm1, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1408 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1409 "movq %%mm4, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1410 "psubusw %%mm0, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1411 "psubw %%mm2, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1412 "movq %%mm5, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1413 "psubusw %%mm1, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1414 "psubw %%mm2, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1415 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1416 "pxor %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1417 "pxor %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1418 "psubw %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1419 "psubw %%mm7, %%mm5 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1420 "packsswb %%mm5, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1421 "movq (%%eax, %1, 2), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1422 "paddb %%mm4, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1423 "movq %%mm0, (%%eax, %1, 2) \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1424 "movq (%0, %1, 4), %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1425 "psubb %%mm4, %%mm0 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1426 "movq %%mm0, (%0, %1, 4) \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1427
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1428 :
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1429 : "r" (src), "r" (stride), "r" (QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1430 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1431 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1432 #else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1433 const int l1= stride;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1434 const int l2= stride + l1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1435 const int l3= stride + l2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1436 const int l4= stride + l3;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1437 const int l5= stride + l4;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1438 const int l6= stride + l5;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1439 const int l7= stride + l6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1440 const int l8= stride + l7;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1441 // const int l9= stride + l8;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1442 int x;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1443 src+= stride*3;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
1444 for(x=0; x<BLOCK_SIZE; x++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1445 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1446 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
1447 if(ABS(middleEnergy) < 8*QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1448 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1449 const int q=(src[l4] - src[l5])/2;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1450 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
1451 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
1452
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1453 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1454 d= MAX(d, 0);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1455
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1456 d= (5*d + 32) >> 6;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1457 d*= SIGN(-middleEnergy);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1458
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1459 if(q>0)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1460 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1461 d= d<0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1462 d= d>q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1463 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1464 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1465 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1466 d= d>0 ? 0 : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1467 d= d<q ? q : d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1468 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1469
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1470 src[l4]-= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1471 src[l5]+= d;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1472 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1473 src++;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1474 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1475 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1476 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1477
165
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1478 /**
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1479 * Check if the given 8x8 Block is mostly "flat"
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1480 */
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1481 static inline int isHorizDC(uint8_t src[], int stride)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1482 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1483 int numEq= 0;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1484 int y;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1485 for(y=0; y<BLOCK_SIZE; y++)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1486 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1487 if(((src[0] - src[1] + 1) & 0xFFFF) < 3) numEq++;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1488 if(((src[1] - src[2] + 1) & 0xFFFF) < 3) numEq++;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1489 if(((src[2] - src[3] + 1) & 0xFFFF) < 3) numEq++;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1490 if(((src[3] - src[4] + 1) & 0xFFFF) < 3) numEq++;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1491 if(((src[4] - src[5] + 1) & 0xFFFF) < 3) numEq++;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1492 if(((src[5] - src[6] + 1) & 0xFFFF) < 3) numEq++;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1493 if(((src[6] - src[7] + 1) & 0xFFFF) < 3) numEq++;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1494 src+= stride;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1495 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1496 return numEq > hFlatnessThreshold;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1497 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1498
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1499 static inline int isHorizMinMaxOk(uint8_t src[], int stride, int QP)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1500 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1501 if(abs(src[0] - src[7]) > 2*QP) return 0;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1502
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1503 return 1;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1504 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1505
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1506 static inline void doHorizDefFilter(uint8_t dst[], int stride, int QP)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1507 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1508 int y;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1509 for(y=0; y<BLOCK_SIZE; y++)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1510 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1511 const int middleEnergy= 5*(dst[4] - dst[5]) + 2*(dst[2] - dst[5]);
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1512
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1513 if(ABS(middleEnergy) < 8*QP)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1514 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1515 const int q=(dst[3] - dst[4])/2;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1516 const int leftEnergy= 5*(dst[2] - dst[1]) + 2*(dst[0] - dst[3]);
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1517 const int rightEnergy= 5*(dst[6] - dst[5]) + 2*(dst[4] - dst[7]);
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1518
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1519 int d= ABS(middleEnergy) - MIN( ABS(leftEnergy), ABS(rightEnergy) );
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1520 d= MAX(d, 0);
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1521
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1522 d= (5*d + 32) >> 6;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1523 d*= SIGN(-middleEnergy);
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1524
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1525 if(q>0)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1526 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1527 d= d<0 ? 0 : d;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1528 d= d>q ? q : d;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1529 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1530 else
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1531 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1532 d= d>0 ? 0 : d;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1533 d= d<q ? q : d;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1534 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1535
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1536 dst[3]-= d;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1537 dst[4]+= d;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1538 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1539 dst+= stride;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1540 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1541 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1542
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1543 /**
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1544 * Do a horizontal low pass filter on the 10x8 block (dst points to middle 8x8 Block)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1545 * using the 9-Tap Filter (1,1,2,2,4,2,2,1,1)/16 (C version)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1546 */
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1547 static inline void doHorizLowPass(uint8_t dst[], int stride, int QP)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1548 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1549
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1550 int y;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1551 for(y=0; y<BLOCK_SIZE; y++)
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1552 {
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1553 const int first= ABS(dst[-1] - dst[0]) < QP ? dst[-1] : dst[0];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1554 const int last= ABS(dst[8] - dst[7]) < QP ? dst[8] : dst[7];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1555
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1556 int sums[9];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1557 sums[0] = first + dst[0];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1558 sums[1] = dst[0] + dst[1];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1559 sums[2] = dst[1] + dst[2];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1560 sums[3] = dst[2] + dst[3];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1561 sums[4] = dst[3] + dst[4];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1562 sums[5] = dst[4] + dst[5];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1563 sums[6] = dst[5] + dst[6];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1564 sums[7] = dst[6] + dst[7];
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1565 sums[8] = dst[7] + last;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1566
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1567 dst[0]= ((sums[0]<<2) + ((first + sums[2])<<1) + sums[4] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1568 dst[1]= ((dst[1]<<2) + ((first + sums[0] + sums[3])<<1) + sums[5] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1569 dst[2]= ((dst[2]<<2) + ((first + sums[1] + sums[4])<<1) + sums[6] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1570 dst[3]= ((dst[3]<<2) + ((sums[2] + sums[5])<<1) + sums[0] + sums[7] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1571 dst[4]= ((dst[4]<<2) + ((sums[3] + sums[6])<<1) + sums[1] + sums[8] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1572 dst[5]= ((dst[5]<<2) + ((last + sums[7] + sums[4])<<1) + sums[2] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1573 dst[6]= (((last + dst[6])<<2) + ((dst[7] + sums[5])<<1) + sums[3] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1574 dst[7]= ((sums[8]<<2) + ((last + sums[6])<<1) + sums[4] + 8)>>4;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1575
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1576 dst+= stride;
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1577 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1578 }
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1579
ea3b49451497 oops, too much cleanup ;)
michael
parents: 164
diff changeset
1580
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1581 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
1582 {
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1583 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1584 asm volatile(
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1585 "movq pQPb, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1586 "paddusb %%mm0, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1587 "movq %%mm0, pQPb2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1588
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1589 "leal (%0, %1), %%eax \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1590 "leal (%%eax, %1, 4), %%ebx \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1591 // 0 1 2 3 4 5 6 7 8 9
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1592 // %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
1593
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1594 "pcmpeqb %%mm6, %%mm6 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1595 "pxor %%mm7, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1596 #ifdef HAVE_MMX2
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1597 #define FIND_MIN_MAX(addr)\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1598 "movq " #addr ", %%mm0 \n\t"\
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1599 "pminub %%mm0, %%mm6 \n\t"\
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1600 "pmaxub %%mm0, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1601 #else
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1602 #define FIND_MIN_MAX(addr)\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1603 "movq " #addr ", %%mm0 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1604 "movq %%mm6, %%mm1 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1605 "psubusb %%mm0, %%mm7 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1606 "paddb %%mm0, %%mm7 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1607 "psubusb %%mm0, %%mm1 \n\t"\
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1608 "psubb %%mm1, %%mm6 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1609 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1610
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1611 FIND_MIN_MAX((%%eax))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1612 FIND_MIN_MAX((%%eax, %1))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1613 FIND_MIN_MAX((%%eax, %1, 2))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1614 FIND_MIN_MAX((%0, %1, 4))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1615 FIND_MIN_MAX((%%ebx))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1616 FIND_MIN_MAX((%%ebx, %1))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1617 FIND_MIN_MAX((%%ebx, %1, 2))
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1618 FIND_MIN_MAX((%0, %1, 8))
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1619
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1620 "movq %%mm6, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1621 "psrlq $8, %%mm6 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1622 #ifdef HAVE_MMX2
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1623 "pminub %%mm4, %%mm6 \n\t" // min of pixels
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1624 "pshufw $0xF9, %%mm6, %%mm4 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1625 "pminub %%mm4, %%mm6 \n\t" // min of pixels
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1626 "pshufw $0xFE, %%mm6, %%mm4 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1627 "pminub %%mm4, %%mm6 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1628 #else
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1629 "movq %%mm6, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1630 "psubusb %%mm4, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1631 "psubb %%mm1, %%mm6 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1632 "movq %%mm6, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1633 "psrlq $16, %%mm6 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1634 "movq %%mm6, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1635 "psubusb %%mm4, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1636 "psubb %%mm1, %%mm6 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1637 "movq %%mm6, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1638 "psrlq $32, %%mm6 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1639 "movq %%mm6, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1640 "psubusb %%mm4, %%mm1 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1641 "psubb %%mm1, %%mm6 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1642 #endif
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1643
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1644
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1645 "movq %%mm7, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1646 "psrlq $8, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1647 #ifdef HAVE_MMX2
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1648 "pmaxub %%mm4, %%mm7 \n\t" // max of pixels
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1649 "pshufw $0xF9, %%mm7, %%mm4 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1650 "pmaxub %%mm4, %%mm7 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1651 "pshufw $0xFE, %%mm7, %%mm4 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1652 "pmaxub %%mm4, %%mm7 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1653 #else
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1654 "psubusb %%mm4, %%mm7 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1655 "paddb %%mm4, %%mm7 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1656 "movq %%mm7, %%mm4 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1657 "psrlq $16, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1658 "psubusb %%mm4, %%mm7 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1659 "paddb %%mm4, %%mm7 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1660 "movq %%mm7, %%mm4 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1661 "psrlq $32, %%mm7 \n\t"
132
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1662 "psubusb %%mm4, %%mm7 \n\t"
c4caf29acc1a 3dnow dering
michael
parents: 130
diff changeset
1663 "paddb %%mm4, %%mm7 \n\t"
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1664 #endif
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1665 PAVGB(%%mm6, %%mm7) // a=(max + min)/2
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1666 "punpcklbw %%mm7, %%mm7 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1667 "punpcklbw %%mm7, %%mm7 \n\t"
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
1668 "punpcklbw %%mm7, %%mm7 \n\t"
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1669 "movq %%mm7, temp0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1670
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1671 "movq (%0), %%mm0 \n\t" // L10
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1672 "movq %%mm0, %%mm1 \n\t" // L10
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1673 "movq %%mm0, %%mm2 \n\t" // L10
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1674 "psllq $8, %%mm1 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1675 "psrlq $8, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1676 "movd -4(%0), %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1677 "movd 8(%0), %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1678 "psrlq $24, %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1679 "psllq $56, %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1680 "por %%mm3, %%mm1 \n\t" // L00
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1681 "por %%mm4, %%mm2 \n\t" // L20
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1682 "movq %%mm1, %%mm3 \n\t" // L00
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1683 PAVGB(%%mm2, %%mm1) // (L20 + L00)/2
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1684 PAVGB(%%mm0, %%mm1) // (L20 + L00 + 2L10)/4
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1685 "psubusb %%mm7, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1686 "psubusb %%mm7, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1687 "psubusb %%mm7, %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1688 "pcmpeqb b00, %%mm0 \n\t" // L10 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1689 "pcmpeqb b00, %%mm2 \n\t" // L20 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1690 "pcmpeqb b00, %%mm3 \n\t" // L00 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1691 "paddb %%mm2, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1692 "paddb %%mm3, %%mm0 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1693
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1694 "movq (%%eax), %%mm2 \n\t" // L11
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1695 "movq %%mm2, %%mm3 \n\t" // L11
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1696 "movq %%mm2, %%mm4 \n\t" // L11
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1697 "psllq $8, %%mm3 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1698 "psrlq $8, %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1699 "movd -4(%%eax), %%mm5 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1700 "movd 8(%%eax), %%mm6 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1701 "psrlq $24, %%mm5 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1702 "psllq $56, %%mm6 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1703 "por %%mm5, %%mm3 \n\t" // L01
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1704 "por %%mm6, %%mm4 \n\t" // L21
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1705 "movq %%mm3, %%mm5 \n\t" // L01
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1706 PAVGB(%%mm4, %%mm3) // (L21 + L01)/2
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1707 PAVGB(%%mm2, %%mm3) // (L21 + L01 + 2L11)/4
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1708 "psubusb %%mm7, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1709 "psubusb %%mm7, %%mm4 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1710 "psubusb %%mm7, %%mm5 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1711 "pcmpeqb b00, %%mm2 \n\t" // L11 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1712 "pcmpeqb b00, %%mm4 \n\t" // L21 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1713 "pcmpeqb b00, %%mm5 \n\t" // L01 > a ? 0 : -1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1714 "paddb %%mm4, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1715 "paddb %%mm5, %%mm2 \n\t"
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1716 // 0, 2, 3, 1
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1717 #define DERING_CORE(dst,src,ppsx,psx,sx,pplx,plx,lx,t0,t1) \
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1718 "movq " #src ", " #sx " \n\t" /* src[0] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1719 "movq " #sx ", " #lx " \n\t" /* src[0] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1720 "movq " #sx ", " #t0 " \n\t" /* src[0] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1721 "psllq $8, " #lx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1722 "psrlq $8, " #t0 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1723 "movd -4" #src ", " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1724 "psrlq $24, " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1725 "por " #t1 ", " #lx " \n\t" /* src[-1] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1726 "movd 8" #src ", " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1727 "psllq $56, " #t1 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1728 "por " #t1 ", " #t0 " \n\t" /* src[+1] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1729 "movq " #lx ", " #t1 " \n\t" /* src[-1] */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1730 PAVGB(t0, lx) /* (src[-1] + src[+1])/2 */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1731 PAVGB(sx, lx) /* (src[-1] + 2src[0] + src[+1])/4 */\
135
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1732 PAVGB(lx, pplx) \
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1733 "movq " #lx ", temp1 \n\t"\
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1734 "movq temp0, " #lx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1735 "psubusb " #lx ", " #t1 " \n\t"\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1736 "psubusb " #lx ", " #t0 " \n\t"\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1737 "psubusb " #lx ", " #sx " \n\t"\
135
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1738 "movq b00, " #lx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1739 "pcmpeqb " #lx ", " #t1 " \n\t" /* src[-1] > a ? 0 : -1*/\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1740 "pcmpeqb " #lx ", " #t0 " \n\t" /* src[+1] > a ? 0 : -1*/\
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1741 "pcmpeqb " #lx ", " #sx " \n\t" /* src[0] > a ? 0 : -1*/\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1742 "paddb " #t1 ", " #t0 " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1743 "paddb " #t0 ", " #sx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1744 \
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1745 PAVGB(plx, pplx) /* filtered */\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1746 "movq " #dst ", " #t0 " \n\t" /* dst */\
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
1747 "movq " #t0 ", " #t1 " \n\t" /* dst */\
2c469e390117 dering in c
michael
parents: 133
diff changeset
1748 "psubusb pQPb2, " #t0 " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
1749 "paddusb pQPb2, " #t1 " \n\t"\
2c469e390117 dering in c
michael
parents: 133
diff changeset
1750 PMAXUB(t0, pplx)\
2c469e390117 dering in c
michael
parents: 133
diff changeset
1751 PMINUB(t1, pplx, t0)\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1752 "paddb " #sx ", " #ppsx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1753 "paddb " #psx ", " #ppsx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1754 "#paddb b02, " #ppsx " \n\t"\
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1755 "pand b08, " #ppsx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1756 "pcmpeqb " #lx ", " #ppsx " \n\t"\
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
1757 "pand " #ppsx ", " #pplx " \n\t"\
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1758 "pandn " #dst ", " #ppsx " \n\t"\
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
1759 "por " #pplx ", " #ppsx " \n\t"\
135
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1760 "movq " #ppsx ", " #dst " \n\t"\
5083d662ff85 faster dering
michael
parents: 134
diff changeset
1761 "movq temp1, " #lx " \n\t"
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
1762
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1763 /*
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1764 0000000
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1765 1111111
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1766
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1767 1111110
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1768 1111101
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1769 1111100
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1770 1111011
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1771 1111010
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1772 1111001
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1773
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1774 1111000
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1775 1110111
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1776
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1777 */
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1778 //DERING_CORE(dst,src ,ppsx ,psx ,sx ,pplx ,plx ,lx ,t0 ,t1)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1779 DERING_CORE((%%eax),(%%eax, %1) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1780 DERING_CORE((%%eax, %1),(%%eax, %1, 2) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1781 DERING_CORE((%%eax, %1, 2),(%0, %1, 4) ,%%mm4,%%mm0,%%mm2,%%mm5,%%mm1,%%mm3,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1782 DERING_CORE((%0, %1, 4),(%%ebx) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1783 DERING_CORE((%%ebx),(%%ebx, %1) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1784 DERING_CORE((%%ebx, %1), (%%ebx, %1, 2),%%mm4,%%mm0,%%mm2,%%mm5,%%mm1,%%mm3,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1785 DERING_CORE((%%ebx, %1, 2),(%0, %1, 8) ,%%mm0,%%mm2,%%mm4,%%mm1,%%mm3,%%mm5,%%mm6,%%mm7)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
1786 DERING_CORE((%0, %1, 8),(%%ebx, %1, 4) ,%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,%%mm6,%%mm7)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1787
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1788
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1789 : : "r" (src), "r" (stride), "r" (QP)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1790 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1791 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1792 #else
134
2c469e390117 dering in c
michael
parents: 133
diff changeset
1793 int y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1794 int min=255;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1795 int max=0;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1796 int avg;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1797 uint8_t *p;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1798 int s[10];
2c469e390117 dering in c
michael
parents: 133
diff changeset
1799
2c469e390117 dering in c
michael
parents: 133
diff changeset
1800 for(y=1; y<9; y++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
1801 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
1802 int x;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1803 p= src + stride*y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1804 for(x=1; x<9; x++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
1805 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
1806 p++;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1807 if(*p > max) max= *p;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1808 if(*p < min) min= *p;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1809 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
1810 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
1811 avg= (min + max + 1)/2;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1812
2c469e390117 dering in c
michael
parents: 133
diff changeset
1813 for(y=0; y<10; y++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
1814 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
1815 int x;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1816 int t = 0;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1817 p= src + stride*y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1818 for(x=0; x<10; x++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
1819 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
1820 if(*p > avg) t |= (1<<x);
2c469e390117 dering in c
michael
parents: 133
diff changeset
1821 p++;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1822 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
1823 t |= (~t)<<16;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1824 t &= (t<<1) & (t>>1);
2c469e390117 dering in c
michael
parents: 133
diff changeset
1825 s[y] = t;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1826 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
1827
2c469e390117 dering in c
michael
parents: 133
diff changeset
1828 for(y=1; y<9; y++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
1829 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
1830 int x;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1831 int t = s[y-1] & s[y] & s[y+1];
2c469e390117 dering in c
michael
parents: 133
diff changeset
1832 t|= t>>16;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1833
2c469e390117 dering in c
michael
parents: 133
diff changeset
1834 p= src + stride*y;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1835 for(x=1; x<9; x++)
2c469e390117 dering in c
michael
parents: 133
diff changeset
1836 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
1837 p++;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1838 if(t & (1<<x))
2c469e390117 dering in c
michael
parents: 133
diff changeset
1839 {
2c469e390117 dering in c
michael
parents: 133
diff changeset
1840 int f= (*(p-stride-1)) + 2*(*(p-stride)) + (*(p-stride+1))
2c469e390117 dering in c
michael
parents: 133
diff changeset
1841 +2*(*(p -1)) + 4*(*p ) + 2*(*(p +1))
2c469e390117 dering in c
michael
parents: 133
diff changeset
1842 +(*(p+stride-1)) + 2*(*(p+stride)) + (*(p+stride+1));
2c469e390117 dering in c
michael
parents: 133
diff changeset
1843 f= (f + 8)>>4;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1844
2c469e390117 dering in c
michael
parents: 133
diff changeset
1845 if (*p + 2*QP < f) *p= *p + 2*QP;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1846 else if(*p - 2*QP > f) *p= *p - 2*QP;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1847 else *p=f;
2c469e390117 dering in c
michael
parents: 133
diff changeset
1848 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
1849 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
1850 }
2c469e390117 dering in c
michael
parents: 133
diff changeset
1851
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1852 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1853 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
1854
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1855 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1856 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1857 * will be called for every 8x8 block and can read & write from line 4-15
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1858 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1859 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1860 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1861 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
1862 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1863 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1864 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1865 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1866 "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
1867 "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
1868 // 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
1869 // %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
1870
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1871 "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
1872 "movq (%%eax, %1), %%mm1 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1873 PAVGB(%%mm1, %%mm0)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1874 "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
1875 "movq (%0, %1, 4), %%mm0 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1876 PAVGB(%%mm0, %%mm1)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1877 "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
1878 "movq (%%ebx, %1), %%mm1 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1879 PAVGB(%%mm1, %%mm0)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1880 "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
1881 "movq (%0, %1, 8), %%mm0 \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1882 PAVGB(%%mm0, %%mm1)
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1883 "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
1884
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1885 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1886 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1887 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1888 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1889 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1890 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1891 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
1892 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1893 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
1894 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
1895 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
1896 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
1897 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1898 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1899 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1900 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1901
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 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1904 * will be called for every 8x8 block and can read & write from line 4-15
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1905 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1906 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1907 * this filter will read lines 3-15 and write 7-13
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1908 * 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
1909 */
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1910 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
1911 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1912 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1913 src+= stride*3;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1914 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1915 "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
1916 "leal (%%eax, %1, 4), %%ebx \n\t"
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1917 "leal (%%ebx, %1, 4), %%ecx \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1918 "addl %1, %%ecx \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1919 "pxor %%mm7, %%mm7 \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1920 // 0 1 2 3 4 5 6 7 8 9 10
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1921 // %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
1922
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1923 #define DEINT_CUBIC(a,b,c,d,e)\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1924 "movq " #a ", %%mm0 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1925 "movq " #b ", %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1926 "movq " #d ", %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1927 "movq " #e ", %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1928 PAVGB(%%mm2, %%mm1) /* (b+d) /2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1929 PAVGB(%%mm3, %%mm0) /* a(a+e) /2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1930 "movq %%mm0, %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1931 "punpcklbw %%mm7, %%mm0 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1932 "punpckhbw %%mm7, %%mm2 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1933 "movq %%mm1, %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1934 "punpcklbw %%mm7, %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1935 "punpckhbw %%mm7, %%mm3 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1936 "psubw %%mm1, %%mm0 \n\t" /* L(a+e - (b+d))/2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1937 "psubw %%mm3, %%mm2 \n\t" /* H(a+e - (b+d))/2 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1938 "psraw $3, %%mm0 \n\t" /* L(a+e - (b+d))/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1939 "psraw $3, %%mm2 \n\t" /* H(a+e - (b+d))/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1940 "psubw %%mm0, %%mm1 \n\t" /* L(9b + 9d - a - e)/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1941 "psubw %%mm2, %%mm3 \n\t" /* H(9b + 9d - a - e)/16 */\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1942 "packuswb %%mm3, %%mm1 \n\t"\
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1943 "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
1944
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1945 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
1946 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
1947 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
1948 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
1949
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1950 : : "r" (src), "r" (stride)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1951 : "%eax", "%ebx", "ecx"
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1952 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1953 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1954 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1955 src+= stride*3;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1956 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
1957 {
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
1958 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
1959 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
1960 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
1961 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
1962 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1963 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1964 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1965 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1966
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1967 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1968 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1969 * will be called for every 8x8 block and can read & write from line 4-15
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1970 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1971 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1972 * will shift the image up by 1 line (FIXME if this is a problem)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1973 * this filter will read lines 4-13 and write 4-11
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1974 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1975 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
1976 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1977 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
1978 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1979 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1980 "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
1981 "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
1982 // 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
1983 // %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
1984
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1985 "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
1986 "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
1987 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
1988 "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
1989 PAVGB(%%mm2, %%mm0)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
1990 "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
1991 "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
1992 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
1993 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
1994 "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
1995 "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
1996 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
1997 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
1998 "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
1999 "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
2000 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
2001 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
2002 "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
2003 "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
2004 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
2005 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
2006 "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
2007 "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
2008 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
2009 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
2010 "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
2011 "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
2012 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
2013 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
2014 "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
2015 "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
2016 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
2017 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
2018 "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
2019
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2020
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2021 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2022 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2023 );
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2024 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2025 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2026 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2027 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
2028 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2029 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
2030 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
2031 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
2032 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
2033 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
2034 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
2035 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
2036 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
2037 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2038 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2039 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2040 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2041
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2042 /**
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2043 * Deinterlaces the given block
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2044 * will be called for every 8x8 block and can read & write from line 4-15,
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2045 * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2046 * lines 4-12 will be read into the deblocking filter and should be deinterlaced
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2047 */
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2048 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
2049 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2050 #ifdef HAVE_MMX
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2051 src+= 4*stride;
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2052 #ifdef HAVE_MMX2
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2053 asm volatile(
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2054 "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
2055 "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
2056 // 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
2057 // %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
2058
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2059 "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
2060 "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
2061 "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
2062 "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
2063 "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
2064 "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
2065 "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
2066 "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
2067 "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
2068
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2069 "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
2070 "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
2071 "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
2072 "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
2073 "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
2074 "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
2075 "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
2076 "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
2077
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2078 "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
2079 "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
2080 "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
2081 "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
2082 "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
2083 "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
2084 "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
2085 "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
2086
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2087 "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
2088 "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
2089 "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
2090 "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
2091 "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
2092 "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
2093 "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
2094 "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
2095
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2096
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2097 : : "r" (src), "r" (stride)
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2098 : "%eax", "%ebx"
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2099 );
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2100
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2101 #else // MMX without MMX2
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2102 asm volatile(
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2103 "leal (%0, %1), %%eax \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2104 "leal (%%eax, %1, 4), %%ebx \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2105 // 0 1 2 3 4 5 6 7 8 9
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2106 // %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
2107 "pxor %%mm7, %%mm7 \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2108
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2109 #define MEDIAN(a,b,c)\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2110 "movq " #a ", %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2111 "movq " #b ", %%mm2 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2112 "movq " #c ", %%mm1 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2113 "movq %%mm0, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2114 "movq %%mm1, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2115 "movq %%mm2, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2116 "psubusb %%mm1, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2117 "psubusb %%mm2, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2118 "psubusb %%mm0, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2119 "pcmpeqb %%mm7, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2120 "pcmpeqb %%mm7, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2121 "pcmpeqb %%mm7, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2122 "movq %%mm3, %%mm6 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2123 "pxor %%mm4, %%mm3 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2124 "pxor %%mm5, %%mm4 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2125 "pxor %%mm6, %%mm5 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2126 "por %%mm3, %%mm1 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2127 "por %%mm4, %%mm2 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2128 "por %%mm5, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2129 "pand %%mm2, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2130 "pand %%mm1, %%mm0 \n\t"\
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2131 "movq %%mm0, " #b " \n\t"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2132
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2133 MEDIAN((%0), (%%eax), (%%eax, %1))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2134 MEDIAN((%%eax, %1), (%%eax, %1, 2), (%0, %1, 4))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2135 MEDIAN((%0, %1, 4), (%%ebx), (%%ebx, %1))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2136 MEDIAN((%%ebx, %1), (%%ebx, %1, 2), (%0, %1, 8))
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2137
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2138 : : "r" (src), "r" (stride)
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2139 : "%eax", "%ebx"
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2140 );
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
2141 #endif // MMX
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2142 #else
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2143 //FIXME
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2144 int x;
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
2145 src+= 4*stride;
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2146 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
2147 {
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2148 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
2149 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
2150 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
2151 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
2152 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
2153 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
2154 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
2155 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
2156 src++;
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2157 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2158 #endif
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2159 }
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
2160
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
2161 #ifdef HAVE_MMX
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2162 /**
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2163 * transposes and shift the given 8x8 Block into dst1 and dst2
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2164 */
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2165 static inline void transpose1(uint8_t *dst1, uint8_t *dst2, uint8_t *src, int srcStride)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2166 {
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2167 asm(
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2168 "leal (%0, %1), %%eax \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2169 "leal (%%eax, %1, 4), %%ebx \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2170 // 0 1 2 3 4 5 6 7 8 9
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2171 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2172 "movq (%0), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2173 "movq (%%eax), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2174 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2175 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2176 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2177
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2178 "movq (%%eax, %1), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2179 "movq (%%eax, %1, 2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2180 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2181 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2182 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2183
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2184 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2185 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2186 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2187 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2188 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2189 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2190
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2191 "movd %%mm0, 128(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2192 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2193 "movd %%mm0, 144(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2194 "movd %%mm3, 160(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2195 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2196 "movd %%mm3, 176(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2197 "movd %%mm3, 48(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2198 "movd %%mm2, 192(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2199 "movd %%mm2, 64(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2200 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2201 "movd %%mm2, 80(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2202 "movd %%mm1, 96(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2203 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2204 "movd %%mm1, 112(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2205
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2206 "movq (%0, %1, 4), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2207 "movq (%%ebx), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2208 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2209 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2210 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2211
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2212 "movq (%%ebx, %1), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2213 "movq (%%ebx, %1, 2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2214 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2215 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2216 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2217
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2218 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2219 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2220 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2221 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2222 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2223 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2224
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2225 "movd %%mm0, 132(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2226 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2227 "movd %%mm0, 148(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2228 "movd %%mm3, 164(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2229 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2230 "movd %%mm3, 180(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2231 "movd %%mm3, 52(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2232 "movd %%mm2, 196(%2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2233 "movd %%mm2, 68(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2234 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2235 "movd %%mm2, 84(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2236 "movd %%mm1, 100(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2237 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2238 "movd %%mm1, 116(%3) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2239
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2240
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2241 :: "r" (src), "r" (srcStride), "r" (dst1), "r" (dst2)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2242 : "%eax", "%ebx"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2243 );
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2244 }
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2245
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2246 /**
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2247 * transposes the given 8x8 block
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2248 */
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2249 static inline void transpose2(uint8_t *dst, int dstStride, uint8_t *src)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2250 {
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2251 asm(
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2252 "leal (%0, %1), %%eax \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2253 "leal (%%eax, %1, 4), %%ebx \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2254 // 0 1 2 3 4 5 6 7 8 9
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2255 // %0 eax eax+%1 eax+2%1 %0+4%1 ebx ebx+%1 ebx+2%1 %0+8%1 ebx+4%1
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2256 "movq (%2), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2257 "movq 16(%2), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2258 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2259 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2260 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2261
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2262 "movq 32(%2), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2263 "movq 48(%2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2264 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2265 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2266 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2267
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2268 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2269 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2270 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2271 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2272 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2273 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2274
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2275 "movd %%mm0, (%0) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2276 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2277 "movd %%mm0, (%%eax) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2278 "movd %%mm3, (%%eax, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2279 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2280 "movd %%mm3, (%%eax, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2281 "movd %%mm2, (%0, %1, 4) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2282 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2283 "movd %%mm2, (%%ebx) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2284 "movd %%mm1, (%%ebx, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2285 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2286 "movd %%mm1, (%%ebx, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2287
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2288
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2289 "movq 64(%2), %%mm0 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2290 "movq 80(%2), %%mm1 \n\t" // abcdefgh
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2291 "movq %%mm0, %%mm2 \n\t" // 12345678
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2292 "punpcklbw %%mm1, %%mm0 \n\t" // 1a2b3c4d
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2293 "punpckhbw %%mm1, %%mm2 \n\t" // 5e6f7g8h
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2294
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2295 "movq 96(%2), %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2296 "movq 112(%2), %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2297 "movq %%mm1, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2298 "punpcklbw %%mm3, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2299 "punpckhbw %%mm3, %%mm4 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2300
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2301 "movq %%mm0, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2302 "punpcklwd %%mm1, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2303 "punpckhwd %%mm1, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2304 "movq %%mm2, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2305 "punpcklwd %%mm4, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2306 "punpckhwd %%mm4, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2307
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2308 "movd %%mm0, 4(%0) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2309 "psrlq $32, %%mm0 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2310 "movd %%mm0, 4(%%eax) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2311 "movd %%mm3, 4(%%eax, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2312 "psrlq $32, %%mm3 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2313 "movd %%mm3, 4(%%eax, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2314 "movd %%mm2, 4(%0, %1, 4) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2315 "psrlq $32, %%mm2 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2316 "movd %%mm2, 4(%%ebx) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2317 "movd %%mm1, 4(%%ebx, %1) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2318 "psrlq $32, %%mm1 \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2319 "movd %%mm1, 4(%%ebx, %1, 2) \n\t"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2320
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2321 :: "r" (dst), "r" (dstStride), "r" (src)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2322 : "%eax", "%ebx"
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2323 );
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2324 }
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
2325 #endif
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2326 //static int test=0;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
2327
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2328 static void inline tempNoiseReducer(uint8_t *src, int stride,
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2329 uint8_t *tempBlured, uint32_t *tempBluredPast, int *maxNoise)
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2330 {
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2331 #define FAST_L2_DIFF
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2332 //#define L1_DIFF //u should change the thresholds too if u try that one
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2333 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2334 asm volatile(
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2335 "leal (%2, %2, 2), %%eax \n\t" // 3*stride
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2336 "leal (%2, %2, 4), %%ebx \n\t" // 5*stride
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2337 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2338 // 0 1 2 3 4 5 6 7 8 9
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2339 // %x %x+%2 %x+2%2 %x+eax %x+4%2 %x+ebx %x+2eax %x+ecx %x+8%2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2340 //FIXME reorder?
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2341 #ifdef L1_DIFF //needs mmx2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2342 "movq (%0), %%mm0 \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2343 "psadbw (%1), %%mm0 \n\t" // |L0-R0|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2344 "movq (%0, %2), %%mm1 \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2345 "psadbw (%1, %2), %%mm1 \n\t" // |L1-R1|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2346 "movq (%0, %2, 2), %%mm2 \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2347 "psadbw (%1, %2, 2), %%mm2 \n\t" // |L2-R2|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2348 "movq (%0, %%eax), %%mm3 \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2349 "psadbw (%1, %%eax), %%mm3 \n\t" // |L3-R3|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2350
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2351 "movq (%0, %2, 4), %%mm4 \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2352 "paddw %%mm1, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2353 "psadbw (%1, %2, 4), %%mm4 \n\t" // |L4-R4|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2354 "movq (%0, %%ebx), %%mm5 \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2355 "paddw %%mm2, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2356 "psadbw (%1, %%ebx), %%mm5 \n\t" // |L5-R5|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2357 "movq (%0, %%eax, 2), %%mm6 \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2358 "paddw %%mm3, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2359 "psadbw (%1, %%eax, 2), %%mm6 \n\t" // |L6-R6|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2360 "movq (%0, %%ecx), %%mm7 \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2361 "paddw %%mm4, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2362 "psadbw (%1, %%ecx), %%mm7 \n\t" // |L7-R7|
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2363 "paddw %%mm5, %%mm6 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2364 "paddw %%mm7, %%mm6 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2365 "paddw %%mm6, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2366 #elif defined (FAST_L2_DIFF)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2367 "pcmpeqb %%mm7, %%mm7 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2368 "movq b80, %%mm6 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2369 "pxor %%mm0, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2370 #define L2_DIFF_CORE(a, b)\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2371 "movq " #a ", %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2372 "movq " #b ", %%mm2 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2373 "pxor %%mm7, %%mm2 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2374 PAVGB(%%mm2, %%mm5)\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2375 "paddb %%mm6, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2376 "movq %%mm5, %%mm2 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2377 "psllw $8, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2378 "pmaddwd %%mm5, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2379 "pmaddwd %%mm2, %%mm2 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2380 "paddd %%mm2, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2381 "psrld $14, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2382 "paddd %%mm5, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2383
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2384 L2_DIFF_CORE((%0), (%1))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2385 L2_DIFF_CORE((%0, %2), (%1, %2))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2386 L2_DIFF_CORE((%0, %2, 2), (%1, %2, 2))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2387 L2_DIFF_CORE((%0, %%eax), (%1, %%eax))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2388 L2_DIFF_CORE((%0, %2, 4), (%1, %2, 4))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2389 L2_DIFF_CORE((%0, %%ebx), (%1, %%ebx))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2390 L2_DIFF_CORE((%0, %%eax,2), (%1, %%eax,2))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2391 L2_DIFF_CORE((%0, %%ecx), (%1, %%ecx))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2392
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2393 #else
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2394 "pxor %%mm7, %%mm7 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2395 "pxor %%mm0, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2396 #define L2_DIFF_CORE(a, b)\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2397 "movq " #a ", %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2398 "movq " #b ", %%mm2 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2399 "movq %%mm5, %%mm1 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2400 "movq %%mm2, %%mm3 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2401 "punpcklbw %%mm7, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2402 "punpckhbw %%mm7, %%mm1 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2403 "punpcklbw %%mm7, %%mm2 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2404 "punpckhbw %%mm7, %%mm3 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2405 "psubw %%mm2, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2406 "psubw %%mm3, %%mm1 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2407 "pmaddwd %%mm5, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2408 "pmaddwd %%mm1, %%mm1 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2409 "paddd %%mm1, %%mm5 \n\t"\
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2410 "paddd %%mm5, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2411
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2412 L2_DIFF_CORE((%0), (%1))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2413 L2_DIFF_CORE((%0, %2), (%1, %2))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2414 L2_DIFF_CORE((%0, %2, 2), (%1, %2, 2))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2415 L2_DIFF_CORE((%0, %%eax), (%1, %%eax))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2416 L2_DIFF_CORE((%0, %2, 4), (%1, %2, 4))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2417 L2_DIFF_CORE((%0, %%ebx), (%1, %%ebx))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2418 L2_DIFF_CORE((%0, %%eax,2), (%1, %%eax,2))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2419 L2_DIFF_CORE((%0, %%ecx), (%1, %%ecx))
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2420
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2421 #endif
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2422
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2423 "movq %%mm0, %%mm4 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2424 "psrlq $32, %%mm0 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2425 "paddd %%mm0, %%mm4 \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2426 "movd %%mm4, %%ecx \n\t"
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2427 "shll $2, %%ecx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2428 "movl %3, %%ebx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2429 "addl -4(%%ebx), %%ecx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2430 "addl 4(%%ebx), %%ecx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2431 "addl -1024(%%ebx), %%ecx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2432 "addl $4, %%ecx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2433 "addl 1024(%%ebx), %%ecx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2434 "shrl $3, %%ecx \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2435 "movl %%ecx, (%%ebx) \n\t"
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2436 "leal (%%eax, %2, 2), %%ebx \n\t" // 5*stride
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2437
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2438 // "movl %3, %%ecx \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2439 // "movl %%ecx, test \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2440 // "jmp 4f \n\t"
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2441 "cmpl 4+maxTmpNoise, %%ecx \n\t"
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2442 " jb 2f \n\t"
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2443 "cmpl 8+maxTmpNoise, %%ecx \n\t"
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2444 " jb 1f \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2445
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2446 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2447 "movq (%0), %%mm0 \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2448 "movq (%0, %2), %%mm1 \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2449 "movq (%0, %2, 2), %%mm2 \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2450 "movq (%0, %%eax), %%mm3 \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2451 "movq (%0, %2, 4), %%mm4 \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2452 "movq (%0, %%ebx), %%mm5 \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2453 "movq (%0, %%eax, 2), %%mm6 \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2454 "movq (%0, %%ecx), %%mm7 \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2455 "movq %%mm0, (%1) \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2456 "movq %%mm1, (%1, %2) \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2457 "movq %%mm2, (%1, %2, 2) \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2458 "movq %%mm3, (%1, %%eax) \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2459 "movq %%mm4, (%1, %2, 4) \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2460 "movq %%mm5, (%1, %%ebx) \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2461 "movq %%mm6, (%1, %%eax, 2) \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2462 "movq %%mm7, (%1, %%ecx) \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2463 "jmp 4f \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2464
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2465 "1: \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2466 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2467 "movq (%0), %%mm0 \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2468 "pavgb (%1), %%mm0 \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2469 "movq (%0, %2), %%mm1 \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2470 "pavgb (%1, %2), %%mm1 \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2471 "movq (%0, %2, 2), %%mm2 \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2472 "pavgb (%1, %2, 2), %%mm2 \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2473 "movq (%0, %%eax), %%mm3 \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2474 "pavgb (%1, %%eax), %%mm3 \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2475 "movq (%0, %2, 4), %%mm4 \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2476 "pavgb (%1, %2, 4), %%mm4 \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2477 "movq (%0, %%ebx), %%mm5 \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2478 "pavgb (%1, %%ebx), %%mm5 \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2479 "movq (%0, %%eax, 2), %%mm6 \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2480 "pavgb (%1, %%eax, 2), %%mm6 \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2481 "movq (%0, %%ecx), %%mm7 \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2482 "pavgb (%1, %%ecx), %%mm7 \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2483 "movq %%mm0, (%1) \n\t" // R0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2484 "movq %%mm1, (%1, %2) \n\t" // R1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2485 "movq %%mm2, (%1, %2, 2) \n\t" // R2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2486 "movq %%mm3, (%1, %%eax) \n\t" // R3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2487 "movq %%mm4, (%1, %2, 4) \n\t" // R4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2488 "movq %%mm5, (%1, %%ebx) \n\t" // R5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2489 "movq %%mm6, (%1, %%eax, 2) \n\t" // R6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2490 "movq %%mm7, (%1, %%ecx) \n\t" // R7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2491 "movq %%mm0, (%0) \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2492 "movq %%mm1, (%0, %2) \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2493 "movq %%mm2, (%0, %2, 2) \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2494 "movq %%mm3, (%0, %%eax) \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2495 "movq %%mm4, (%0, %2, 4) \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2496 "movq %%mm5, (%0, %%ebx) \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2497 "movq %%mm6, (%0, %%eax, 2) \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2498 "movq %%mm7, (%0, %%ecx) \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2499 "jmp 4f \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2500
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2501 "2: \n\t"
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2502 "cmpl maxTmpNoise, %%ecx \n\t"
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2503 " jb 3f \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2504
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2505 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2506 "movq (%0), %%mm0 \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2507 "movq (%0, %2), %%mm1 \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2508 "movq (%0, %2, 2), %%mm2 \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2509 "movq (%0, %%eax), %%mm3 \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2510 "movq (%1), %%mm4 \n\t" // R0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2511 "movq (%1, %2), %%mm5 \n\t" // R1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2512 "movq (%1, %2, 2), %%mm6 \n\t" // R2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2513 "movq (%1, %%eax), %%mm7 \n\t" // R3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2514 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2515 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2516 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2517 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2518 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2519 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2520 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2521 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2522 "movq %%mm0, (%1) \n\t" // R0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2523 "movq %%mm1, (%1, %2) \n\t" // R1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2524 "movq %%mm2, (%1, %2, 2) \n\t" // R2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2525 "movq %%mm3, (%1, %%eax) \n\t" // R3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2526 "movq %%mm0, (%0) \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2527 "movq %%mm1, (%0, %2) \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2528 "movq %%mm2, (%0, %2, 2) \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2529 "movq %%mm3, (%0, %%eax) \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2530
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2531 "movq (%0, %2, 4), %%mm0 \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2532 "movq (%0, %%ebx), %%mm1 \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2533 "movq (%0, %%eax, 2), %%mm2 \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2534 "movq (%0, %%ecx), %%mm3 \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2535 "movq (%1, %2, 4), %%mm4 \n\t" // R4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2536 "movq (%1, %%ebx), %%mm5 \n\t" // R5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2537 "movq (%1, %%eax, 2), %%mm6 \n\t" // R6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2538 "movq (%1, %%ecx), %%mm7 \n\t" // R7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2539 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2540 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2541 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2542 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2543 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2544 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2545 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2546 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2547 "movq %%mm0, (%1, %2, 4) \n\t" // R4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2548 "movq %%mm1, (%1, %%ebx) \n\t" // R5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2549 "movq %%mm2, (%1, %%eax, 2) \n\t" // R6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2550 "movq %%mm3, (%1, %%ecx) \n\t" // R7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2551 "movq %%mm0, (%0, %2, 4) \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2552 "movq %%mm1, (%0, %%ebx) \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2553 "movq %%mm2, (%0, %%eax, 2) \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2554 "movq %%mm3, (%0, %%ecx) \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2555 "jmp 4f \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2556
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2557 "3: \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2558 "leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2559 "movq (%0), %%mm0 \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2560 "movq (%0, %2), %%mm1 \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2561 "movq (%0, %2, 2), %%mm2 \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2562 "movq (%0, %%eax), %%mm3 \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2563 "movq (%1), %%mm4 \n\t" // R0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2564 "movq (%1, %2), %%mm5 \n\t" // R1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2565 "movq (%1, %2, 2), %%mm6 \n\t" // R2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2566 "movq (%1, %%eax), %%mm7 \n\t" // R3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2567 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2568 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2569 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2570 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2571 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2572 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2573 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2574 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2575 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2576 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2577 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2578 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2579 "movq %%mm0, (%1) \n\t" // R0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2580 "movq %%mm1, (%1, %2) \n\t" // R1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2581 "movq %%mm2, (%1, %2, 2) \n\t" // R2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2582 "movq %%mm3, (%1, %%eax) \n\t" // R3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2583 "movq %%mm0, (%0) \n\t" // L0
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2584 "movq %%mm1, (%0, %2) \n\t" // L1
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2585 "movq %%mm2, (%0, %2, 2) \n\t" // L2
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2586 "movq %%mm3, (%0, %%eax) \n\t" // L3
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2587
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2588 "movq (%0, %2, 4), %%mm0 \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2589 "movq (%0, %%ebx), %%mm1 \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2590 "movq (%0, %%eax, 2), %%mm2 \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2591 "movq (%0, %%ecx), %%mm3 \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2592 "movq (%1, %2, 4), %%mm4 \n\t" // R4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2593 "movq (%1, %%ebx), %%mm5 \n\t" // R5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2594 "movq (%1, %%eax, 2), %%mm6 \n\t" // R6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2595 "movq (%1, %%ecx), %%mm7 \n\t" // R7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2596 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2597 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2598 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2599 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2600 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2601 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2602 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2603 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2604 PAVGB(%%mm4, %%mm0)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2605 PAVGB(%%mm5, %%mm1)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2606 PAVGB(%%mm6, %%mm2)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2607 PAVGB(%%mm7, %%mm3)
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2608 "movq %%mm0, (%1, %2, 4) \n\t" // R4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2609 "movq %%mm1, (%1, %%ebx) \n\t" // R5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2610 "movq %%mm2, (%1, %%eax, 2) \n\t" // R6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2611 "movq %%mm3, (%1, %%ecx) \n\t" // R7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2612 "movq %%mm0, (%0, %2, 4) \n\t" // L4
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2613 "movq %%mm1, (%0, %%ebx) \n\t" // L5
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2614 "movq %%mm2, (%0, %%eax, 2) \n\t" // L6
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2615 "movq %%mm3, (%0, %%ecx) \n\t" // L7
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2616
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2617 "4: \n\t"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2618
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2619 :: "r" (src), "r" (tempBlured), "r"(stride), "m" (tempBluredPast)
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2620 : "%eax", "%ebx", "%ecx", "memory"
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2621 );
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2622 //printf("%d\n", test);
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2623 #else
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2624 int y;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2625 int d=0;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2626 int sysd=0;
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2627 int i;
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2628
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2629 for(y=0; y<8; y++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2630 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2631 int x;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2632 for(x=0; x<8; x++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2633 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2634 int ref= tempBlured[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2635 int cur= src[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2636 int d1=ref - cur;
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2637 // if(x==0 || x==7) d1+= d1>>1;
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2638 // if(y==0 || y==7) d1+= d1>>1;
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2639 // d+= ABS(d1);
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2640 d+= d1*d1;
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2641 sysd+= d1;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2642 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2643 }
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2644 i=d;
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2645 d= (
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2646 4*d
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2647 +(*(tempBluredPast-256))
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2648 +(*(tempBluredPast-1))+ (*(tempBluredPast+1))
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2649 +(*(tempBluredPast+256))
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2650 +4)>>3;
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2651 *tempBluredPast=i;
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2652 // ((*tempBluredPast)*3 + d + 2)>>2;
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
2653
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2654 //printf("%d %d %d\n", maxNoise[0], maxNoise[1], maxNoise[2]);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2655 /*
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2656 Switch between
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2657 1 0 0 0 0 0 0 (0)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2658 64 32 16 8 4 2 1 (1)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2659 64 48 36 27 20 15 11 (33) (approx)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2660 64 56 49 43 37 33 29 (200) (approx)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2661 */
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2662 if(d > maxNoise[1])
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2663 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2664 if(d < maxNoise[2])
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2665 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2666 for(y=0; y<8; y++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2667 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2668 int x;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2669 for(x=0; x<8; x++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2670 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2671 int ref= tempBlured[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2672 int cur= src[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2673 tempBlured[ x + y*stride ]=
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2674 src[ x + y*stride ]=
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2675 (ref + cur + 1)>>1;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2676 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2677 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2678 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2679 else
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2680 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2681 for(y=0; y<8; y++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2682 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2683 int x;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2684 for(x=0; x<8; x++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2685 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2686 tempBlured[ x + y*stride ]= src[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2687 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2688 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2689 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2690 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2691 else
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2692 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2693 if(d < maxNoise[0])
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2694 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2695 for(y=0; y<8; y++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2696 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2697 int x;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2698 for(x=0; x<8; x++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2699 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2700 int ref= tempBlured[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2701 int cur= src[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2702 tempBlured[ x + y*stride ]=
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2703 src[ x + y*stride ]=
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2704 (ref*7 + cur + 4)>>3;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2705 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2706 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2707 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2708 else
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2709 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2710 for(y=0; y<8; y++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2711 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2712 int x;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2713 for(x=0; x<8; x++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2714 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2715 int ref= tempBlured[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2716 int cur= src[ x + y*stride ];
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2717 tempBlured[ x + y*stride ]=
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2718 src[ x + y*stride ]=
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2719 (ref*3 + cur + 2)>>2;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2720 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2721 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2722 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2723 }
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2724 #endif
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2725 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2726
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2727 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2728 #include "../opendivx/postprocess.h"
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2729 int use_old_pp=0;
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2730 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2731
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2732 static void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2733 QP_STORE_T QPs[], int QPStride, int isColor, struct PPMode *ppMode);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2734
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2735 /* -pp Command line Help
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2736 NOTE/FIXME: put this at an appropriate place (--help, html docs, man mplayer)?
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2737
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2738 -pp <filterName>[:<option>[:<option>...]][,[-]<filterName>[:<option>...]]...
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2739
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2740 long form example:
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2741 -pp vdeblock:autoq,hdeblock:autoq,linblenddeint -pp default,-vdeblock
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2742 short form example:
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2743 -pp vb:a,hb:a,lb -pp de,-vb
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2744 more examples:
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2745 -pp tn:64:128:256
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2746
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2747 Filters Options
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2748 short long name short long option Description
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2749 * * a autoq cpu power dependant enabler
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2750 c chrom chrominance filtring enabled
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2751 y nochrom chrominance filtring disabled
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2752 hb hdeblock horizontal deblocking filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2753 vb vdeblock vertical deblocking filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2754 vr rkvdeblock
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2755 h1 x1hdeblock Experimental horizontal deblock filter 1
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2756 v1 x1vdeblock Experimental vertical deblock filter 1
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2757 dr dering not implemented yet
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2758 al autolevels automatic brightness / contrast fixer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2759 f fullyrange stretch luminance range to (0..255)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2760 lb linblenddeint linear blend deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2761 li linipoldeint linear interpolating deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2762 ci cubicipoldeint cubic interpolating deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2763 md mediandeint median deinterlacer
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2764 de default hdeblock:a,vdeblock:a,dering:a,autolevels
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2765 fa fast x1hdeblock:a,x1vdeblock:a,dering:a,autolevels
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2766 tn tmpnoise (3 Thresholds) Temporal Noise Reducer
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2767 */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2768
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2769 /**
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2770 * 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
2771 * name is the string after "-pp" on the command line
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2772 * quality is a number from 0 to GET_PP_QUALITY_MAX
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2773 */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2774 struct PPMode getPPModeByNameAndQuality(char *name, int quality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2775 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2776 char temp[GET_MODE_BUFFER_SIZE];
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2777 char *p= temp;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2778 char *filterDelimiters= ",";
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2779 char *optionDelimiters= ":";
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2780 struct PPMode ppMode= {0,0,0,0,0,0,{150,200,400}};
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2781 char *filterToken;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2782
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2783 strncpy(temp, name, GET_MODE_BUFFER_SIZE);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2784
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2785 printf("%s\n", name);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2786
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2787 for(;;){
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2788 char *filterName;
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2789 int q= 1000000; //GET_PP_QUALITY_MAX;
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2790 int chrom=-1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2791 char *option;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2792 char *options[OPTIONS_ARRAY_SIZE];
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2793 int i;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2794 int filterNameOk=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2795 int numOfUnknownOptions=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2796 int enable=1; //does the user want us to enabled or disabled the filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2797
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2798 filterToken= strtok(p, filterDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2799 if(filterToken == NULL) break;
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2800 p+= strlen(filterToken) + 1; // p points to next filterToken
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2801 filterName= strtok(filterToken, optionDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2802 printf("%s::%s\n", filterToken, filterName);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2803
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2804 if(*filterName == '-')
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2805 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2806 enable=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2807 filterName++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2808 }
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2809
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2810 for(;;){ //for all options
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2811 option= strtok(NULL, optionDelimiters);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2812 if(option == NULL) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2813
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2814 printf("%s\n", option);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2815 if(!strcmp("autoq", option) || !strcmp("a", option)) q= quality;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2816 else if(!strcmp("nochrom", option) || !strcmp("y", option)) chrom=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2817 else if(!strcmp("chrom", option) || !strcmp("c", option)) chrom=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2818 else
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2819 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2820 options[numOfUnknownOptions] = option;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2821 numOfUnknownOptions++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2822 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2823 if(numOfUnknownOptions >= OPTIONS_ARRAY_SIZE-1) break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2824 }
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2825 options[numOfUnknownOptions] = NULL;
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2826
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2827 /* replace stuff from the replace Table */
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2828 for(i=0; replaceTable[2*i]!=NULL; i++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2829 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2830 if(!strcmp(replaceTable[2*i], filterName))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2831 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2832 int newlen= strlen(replaceTable[2*i + 1]);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2833 int plen;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2834 int spaceLeft;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2835
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2836 if(p==NULL) p= temp, *p=0; //last filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2837 else p--, *p=','; //not last filter
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2838
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2839 plen= strlen(p);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2840 spaceLeft= (int)p - (int)temp + plen;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2841 if(spaceLeft + newlen >= GET_MODE_BUFFER_SIZE)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2842 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2843 ppMode.error++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2844 break;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2845 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2846 memmove(p + newlen, p, plen+1);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2847 memcpy(p, replaceTable[2*i + 1], newlen);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2848 filterNameOk=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2849 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2850 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2851
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2852 for(i=0; filters[i].shortName!=NULL; i++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2853 {
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2854 // printf("Compareing %s, %s, %s\n", filters[i].shortName,filters[i].longName, filterName);
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2855 if( !strcmp(filters[i].longName, filterName)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2856 || !strcmp(filters[i].shortName, filterName))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2857 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2858 ppMode.lumMode &= ~filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2859 ppMode.chromMode &= ~filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2860
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2861 filterNameOk=1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2862 if(!enable) break; // user wants to disable it
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2863
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2864 if(q >= filters[i].minLumQuality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2865 ppMode.lumMode|= filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2866 if(chrom==1 || (chrom==-1 && filters[i].chromDefault))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2867 if(q >= filters[i].minChromQuality)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2868 ppMode.chromMode|= filters[i].mask;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2869
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2870 if(filters[i].mask == LEVEL_FIX)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2871 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2872 int o;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2873 ppMode.minAllowedY= 16;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2874 ppMode.maxAllowedY= 234;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2875 for(o=0; options[o]!=NULL; o++)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2876 if( !strcmp(options[o],"fullyrange")
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2877 ||!strcmp(options[o],"f"))
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2878 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2879 ppMode.minAllowedY= 0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2880 ppMode.maxAllowedY= 255;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2881 numOfUnknownOptions--;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2882 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2883 }
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2884 else if(filters[i].mask == TEMP_NOISE_FILTER)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2885 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2886 int o;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2887 int numOfNoises=0;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2888 ppMode.maxTmpNoise[0]= 150;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2889 ppMode.maxTmpNoise[1]= 200;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2890 ppMode.maxTmpNoise[2]= 400;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2891
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2892 for(o=0; options[o]!=NULL; o++)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2893 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2894 char *tail;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2895 ppMode.maxTmpNoise[numOfNoises]=
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2896 strtol(options[o], &tail, 0);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2897 if(tail!=options[o])
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2898 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2899 numOfNoises++;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2900 numOfUnknownOptions--;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2901 if(numOfNoises >= 3) break;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2902 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2903 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2904 }
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2905 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2906 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2907 if(!filterNameOk) ppMode.error++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2908 ppMode.error += numOfUnknownOptions;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2909 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2910
152
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
2911 #ifdef HAVE_ODIVX_POSTPROCESS
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2912 if(ppMode.lumMode & H_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_Y_H;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2913 if(ppMode.lumMode & V_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_Y_V;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2914 if(ppMode.chromMode & H_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_C_H;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2915 if(ppMode.chromMode & V_DEBLOCK) ppMode.oldMode |= PP_DEBLOCK_C_V;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2916 if(ppMode.lumMode & DERING) ppMode.oldMode |= PP_DERING_Y;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2917 if(ppMode.chromMode & DERING) ppMode.oldMode |= PP_DERING_C;
152
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
2918 #endif
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2919
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2920 return ppMode;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2921 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2922
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2923 /**
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2924 * Obsolete, dont use it, use postprocess2() instead
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2925 */
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2926 void postprocess(unsigned char * src[], int src_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2927 unsigned char * dst[], int dst_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2928 int horizontal_size, int vertical_size,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2929 QP_STORE_T *QP_store, int QP_stride,
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2930 int mode)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2931 {
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2932 struct PPMode ppMode;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2933 static QP_STORE_T zeroArray[2048/8];
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2934 /*
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2935 static int qual=0;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2936
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2937 ppMode= getPPModeByNameAndQuality("fast,default,-hdeblock,-vdeblock,tmpnoise:150:200:300", qual);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2938 printf("OK\n");
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2939 qual++;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2940 qual%=7;
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2941 printf("\n%X %X %X %X :%d: %d %d %d\n", ppMode.lumMode, ppMode.chromMode, ppMode.oldMode, ppMode.error,
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2942 qual, ppMode.maxTmpNoise[0], ppMode.maxTmpNoise[1], ppMode.maxTmpNoise[2]);
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2943 postprocess2(src, src_stride, dst, dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2944 horizontal_size, vertical_size, QP_store, QP_stride, &ppMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2945
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2946 return;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2947 */
152
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
2948 if(QP_store==NULL)
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
2949 {
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
2950 QP_store= zeroArray;
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
2951 QP_stride= 0;
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
2952 }
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2953
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2954 ppMode.lumMode= mode;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2955 mode= ((mode&0xFF)>>4) | (mode&0xFFFFFF00);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2956 ppMode.chromMode= mode;
157
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2957 ppMode.maxTmpNoise[0]= 700;
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2958 ppMode.maxTmpNoise[1]= 1500;
bc12fd7e6153 temp denoiser changes: (a-b)^2 instead of |a-b| and MMX2/3DNOW version
michael
parents: 156
diff changeset
2959 ppMode.maxTmpNoise[2]= 3000;
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2960
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2961 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2962 // 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
2963 // more function call...
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2964 if(use_old_pp){
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2965 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
2966 return;
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2967 }
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2968 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2969
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2970 postProcess(src[0], src_stride, dst[0], dst_stride,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2971 horizontal_size, vertical_size, QP_store, QP_stride, 0, &ppMode);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2972
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2973 horizontal_size >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2974 vertical_size >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2975 src_stride >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2976 dst_stride >>= 1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2977
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2978 if(1)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2979 {
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2980 postProcess(src[1], src_stride, dst[1], dst_stride,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2981 horizontal_size, vertical_size, QP_store, QP_stride, 1, &ppMode);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
2982 postProcess(src[2], src_stride, dst[2], dst_stride,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2983 horizontal_size, vertical_size, QP_store, QP_stride, 2, &ppMode);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2984 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2985 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2986 {
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2987 memset(dst[1], 128, dst_stride*vertical_size);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2988 memset(dst[2], 128, dst_stride*vertical_size);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2989 // memcpy(dst[1], src[1], src_stride*horizontal_size);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
2990 // memcpy(dst[2], src[2], src_stride*horizontal_size);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2991 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
2992 }
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
2993
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2994 void postprocess2(unsigned char * src[], int src_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2995 unsigned char * dst[], int dst_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2996 int horizontal_size, int vertical_size,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2997 QP_STORE_T *QP_store, int QP_stride,
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2998 struct PPMode *mode)
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
2999 {
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3000
152
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
3001 static QP_STORE_T zeroArray[2048/8];
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
3002 if(QP_store==NULL)
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
3003 {
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
3004 QP_store= zeroArray;
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
3005 QP_stride= 0;
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
3006 }
561ec01a1a78 QP_store==null bugfix and no opendivx bugfix
michael
parents: 150
diff changeset
3007
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3008 #ifdef HAVE_ODIVX_POSTPROCESS
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3009 // 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
3010 // more function call...
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3011 if(use_old_pp){
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3012 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
3013 mode->oldMode);
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3014 return;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3015 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3016 #endif
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3017
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3018 postProcess(src[0], src_stride, dst[0], dst_stride,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3019 horizontal_size, vertical_size, QP_store, QP_stride, 0, mode);
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3020
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3021 horizontal_size >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3022 vertical_size >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3023 src_stride >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3024 dst_stride >>= 1;
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3025
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3026 postProcess(src[1], src_stride, dst[1], dst_stride,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3027 horizontal_size, vertical_size, QP_store, QP_stride, 1, mode);
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3028 postProcess(src[2], src_stride, dst[2], dst_stride,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3029 horizontal_size, vertical_size, QP_store, QP_stride, 2, mode);
116
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3030 }
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3031
1895a8fa81ea auto brightness/ contrast bugfix
michael
parents: 115
diff changeset
3032
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3033 /**
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3034 * 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
3035 * 0 <= quality <= 6
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3036 */
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3037 int getPpModeForQuality(int quality){
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3038 int modes[1+GET_PP_QUALITY_MAX]= {
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3039 0,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3040 #if 1
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3041 // horizontal filters first
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3042 LUM_H_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3043 LUM_H_DEBLOCK | LUM_V_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3044 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3045 LUM_H_DEBLOCK | LUM_V_DEBLOCK | CHROM_H_DEBLOCK | CHROM_V_DEBLOCK,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3046 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
3047 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
3048 #else
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3049 // vertical filters first
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3050 LUM_V_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3051 LUM_V_DEBLOCK | LUM_H_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3052 LUM_V_DEBLOCK | LUM_H_DEBLOCK | CHROM_V_DEBLOCK,
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3053 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
3054 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
3055 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
3056 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3057 };
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3058
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3059 #ifdef HAVE_ODIVX_POSTPROCESS
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3060 int odivx_modes[1+GET_PP_QUALITY_MAX]= {
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3061 0,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3062 PP_DEBLOCK_Y_H,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3063 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3064 PP_DEBLOCK_Y_H|PP_DEBLOCK_Y_V|PP_DEBLOCK_C_H,
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3065 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
3066 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
3067 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
3068 };
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3069 if(use_old_pp) return odivx_modes[quality];
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3070 #endif
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3071 return modes[quality];
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3072 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3073
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3074 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3075 * 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
3076 * numLines must be a multiple of 4
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3077 * levelFix == 0 -> dont touch the brighness & contrast
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3078 */
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3079 static inline void blockCopy(uint8_t dst[], int dstStride, uint8_t src[], int srcStride,
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3080 int levelFix)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3081 {
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3082 #ifndef HAVE_MMX
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3083 int i;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3084 #endif
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3085 if(levelFix)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3086 {
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3087 #ifdef HAVE_MMX
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3088 asm volatile(
166
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3089 "leal (%0,%2), %%eax \n\t"
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3090 "leal (%1,%3), %%ebx \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3091 "movq packedYOffset, %%mm2 \n\t"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3092 "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
3093 "pxor %%mm4, %%mm4 \n\t"
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3094
166
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3095 #define SCALED_CPY(src1, src2, dst1, dst2) \
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3096 "movq " #src1 ", %%mm0 \n\t"\
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3097 "movq " #src1 ", %%mm5 \n\t"\
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
3098 "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
3099 "punpckhbw %%mm4, %%mm5 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3100 "psubw %%mm2, %%mm0 \n\t"\
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3101 "psubw %%mm2, %%mm5 \n\t"\
166
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3102 "movq " #src2 ", %%mm1 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3103 "psllw $6, %%mm0 \n\t"\
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3104 "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
3105 "pmulhw %%mm3, %%mm0 \n\t"\
166
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3106 "movq " #src2 ", %%mm6 \n\t"\
101
fcf4e8fcb34b fixed a sig4 bug an non mmx2 cpus (in case of more sig4 errors please send me a "disassemble $eip-16 $eip+16" from gdb)
michael
parents: 100
diff changeset
3107 "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
3108 "punpcklbw %%mm4, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
3109 "punpckhbw %%mm4, %%mm6 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3110 "psubw %%mm2, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
3111 "psubw %%mm2, %%mm6 \n\t"\
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3112 "psllw $6, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
3113 "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
3114 "pmulhw %%mm3, %%mm1 \n\t"\
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
3115 "pmulhw %%mm3, %%mm6 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
3116 "packuswb %%mm5, %%mm0 \n\t"\
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
3117 "packuswb %%mm6, %%mm1 \n\t"\
166
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3118 "movq %%mm0, " #dst1 " \n\t"\
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3119 "movq %%mm1, " #dst2 " \n\t"\
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3120
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3121 SCALED_CPY((%0) , (%0, %2) , (%1) , (%1, %3))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3122 SCALED_CPY((%0, %2, 2), (%%eax, %2, 2), (%1, %3, 2), (%%ebx, %3, 2))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3123 SCALED_CPY((%0, %2, 4), (%%eax, %2, 4), (%1, %3, 4), (%%ebx, %3, 4))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3124 "leal (%%eax,%2,4), %%eax \n\t"
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3125 "leal (%%ebx,%3,4), %%ebx \n\t"
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3126 SCALED_CPY((%%eax, %2), (%%eax, %2, 2), (%%ebx, %3), (%%ebx, %3, 2))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3127
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3128
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3129 : : "r"(src),
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3130 "r"(dst),
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3131 "r" (srcStride),
118
3dd1950ac98d brightness / contrast fix/copy optimizations +2% speedup
michael
parents: 117
diff changeset
3132 "r" (dstStride)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3133 : "%eax", "%ebx"
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3134 );
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3135 #else
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3136 for(i=0; i<8; i++)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3137 memcpy( &(dst[dstStride*i]),
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3138 &(src[srcStride*i]), BLOCK_SIZE);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3139 #endif
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3140 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3141 else
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3142 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3143 #ifdef HAVE_MMX
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3144 asm volatile(
166
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3145 "leal (%0,%2), %%eax \n\t"
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3146 "leal (%1,%3), %%ebx \n\t"
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3147
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3148 #define SIMPLE_CPY(src1, src2, dst1, dst2) \
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3149 "movq " #src1 ", %%mm0 \n\t"\
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3150 "movq " #src2 ", %%mm1 \n\t"\
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3151 "movq %%mm0, " #dst1 " \n\t"\
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3152 "movq %%mm1, " #dst2 " \n\t"\
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3153
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3154 SIMPLE_CPY((%0) , (%0, %2) , (%1) , (%1, %3))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3155 SIMPLE_CPY((%0, %2, 2), (%%eax, %2, 2), (%1, %3, 2), (%%ebx, %3, 2))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3156 SIMPLE_CPY((%0, %2, 4), (%%eax, %2, 4), (%1, %3, 4), (%%ebx, %3, 4))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3157 "leal (%%eax,%2,4), %%eax \n\t"
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3158 "leal (%%ebx,%3,4), %%ebx \n\t"
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3159 SIMPLE_CPY((%%eax, %2), (%%eax, %2, 2), (%%ebx, %3), (%%ebx, %3, 2))
ec349ac7869b 1% speedup
michael
parents: 165
diff changeset
3160
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3161 : : "r" (src),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3162 "r" (dst),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3163 "r" (srcStride),
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3164 "r" (dstStride)
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3165 : "%eax", "%ebx"
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3166 );
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3167 #else
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3168 for(i=0; i<8; i++)
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3169 memcpy( &(dst[dstStride*i]),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3170 &(src[srcStride*i]), BLOCK_SIZE);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3171 #endif
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3172 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3173 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3174
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3175
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3176 /**
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3177 * Filters array of bytes (Y or U or V values)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3178 */
102
2cb2660cbd7e small changes for mplayer integration:
arpi
parents: 101
diff changeset
3179 static void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height,
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3180 QP_STORE_T QPs[], int QPStride, int isColor, struct PPMode *ppMode)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3181 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3182 int x,y;
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3183 const int mode= isColor ? ppMode->chromMode : ppMode->lumMode;
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3184
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3185 /* 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
3186 after watching a black picture for 5 hours*/
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3187 static uint64_t *yHistogram= NULL;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3188 int black=0, white=255; // blackest black and whitest white in the picture
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3189 int QPCorrecture= 256;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3190
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3191 /* Temporary buffers for handling the last row(s) */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3192 static uint8_t *tempDst= NULL;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3193 static uint8_t *tempSrc= NULL;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3194
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3195 /* Temporary buffers for handling the last block */
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3196 static uint8_t *tempDstBlock= NULL;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3197 static uint8_t *tempSrcBlock= NULL;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3198
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3199 /* Temporal noise reducing buffers */
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3200 static uint8_t *tempBlured[3]= {NULL,NULL,NULL};
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3201 static uint32_t *tempBluredPast[3]= {NULL,NULL,NULL};
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3202
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3203 int copyAhead;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3204
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3205 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3206 uint8_t *dstBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3207 uint8_t *srcBlockPtrBackup;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3208 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3209
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3210 #ifdef MORE_TIMING
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3211 long long T0, T1, diffTime=0;
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3212 #endif
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3213 #ifdef TIMING
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3214 long long memcpyTime=0, vertTime=0, horizTime=0, sumTime;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3215 sumTime= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3216 #endif
140
52ed0baddd56 minor speedup
michael
parents: 135
diff changeset
3217 //mode= 0x7F;
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3218 #ifdef HAVE_MMX
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3219 maxTmpNoise[0]= ppMode->maxTmpNoise[0];
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3220 maxTmpNoise[1]= ppMode->maxTmpNoise[1];
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3221 maxTmpNoise[2]= ppMode->maxTmpNoise[2];
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3222 #endif
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3223
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3224 if(mode & CUBIC_IPOL_DEINT_FILTER) copyAhead=16;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3225 else if(mode & LINEAR_BLEND_DEINT_FILTER) copyAhead=14;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3226 else if( (mode & V_DEBLOCK)
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3227 || (mode & LINEAR_IPOL_DEINT_FILTER)
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3228 || (mode & MEDIAN_DEINT_FILTER)) copyAhead=13;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3229 else if(mode & V_X1_FILTER) copyAhead=11;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3230 else if(mode & V_RK1_FILTER) copyAhead=10;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3231 else if(mode & DERING) copyAhead=9;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3232 else copyAhead=8;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3233
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3234 copyAhead-= 8;
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3235
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3236 if(tempDst==NULL)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3237 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3238 tempDst= (uint8_t*)memalign(8, 1024*24);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3239 tempSrc= (uint8_t*)memalign(8, 1024*24);
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3240 tempDstBlock= (uint8_t*)memalign(8, 1024*24);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3241 tempSrcBlock= (uint8_t*)memalign(8, 1024*24);
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3242 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3243
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3244 if(tempBlured[isColor]==NULL && (mode & TEMP_NOISE_FILTER))
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3245 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3246 // printf("%d %d %d\n", isColor, dstStride, height);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3247 //FIXME works only as long as the size doesnt increase
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3248 //Note:the +17*1024 is just there so i dont have to worry about r/w over te end
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3249 tempBlured[isColor]= (uint8_t*)memalign(8, dstStride*((height+7)&(~7)) + 17*1024);
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3250 tempBluredPast[isColor]= (uint32_t*)memalign(8, 256*((height+7)&(~7))/2 + 17*1024);
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3251
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3252 memset(tempBlured[isColor], 0, dstStride*((height+7)&(~7)) + 17*1024);
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3253 memset(tempBluredPast[isColor], 0, 256*((height+7)&(~7))/2 + 17*1024);
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3254 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3255
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3256 if(!yHistogram)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3257 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3258 int i;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3259 yHistogram= (uint64_t*)malloc(8*256);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3260 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
3261
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3262 if(mode & FULL_Y_RANGE)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3263 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3264 maxAllowedY=255;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3265 minAllowedY=0;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3266 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3267 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3268
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3269 if(!isColor)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3270 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3271 uint64_t sum= 0;
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3272 int i;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3273 static int framenum= -1;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3274 uint64_t maxClipped;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3275 uint64_t clipped;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3276 double scale;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3277
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3278 framenum++;
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3279 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
3280
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3281 for(i=0; i<256; i++)
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3282 {
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3283 sum+= yHistogram[i];
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3284 // printf("%d ", yHistogram[i]);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3285 }
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3286 // printf("\n\n");
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3287
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3288 /* we allways get a completly black picture first */
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3289 maxClipped= (uint64_t)(sum * maxClippedThreshold);
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3290
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3291 clipped= sum;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3292 for(black=255; black>0; black--)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3293 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3294 if(clipped < maxClipped) break;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3295 clipped-= yHistogram[black];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3296 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3297
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3298 clipped= sum;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3299 for(white=0; white<256; white++)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3300 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3301 if(clipped < maxClipped) break;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3302 clipped-= yHistogram[white];
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3303 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3304
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3305 packedYOffset= (black - minAllowedY) & 0xFFFF;
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3306 packedYOffset|= packedYOffset<<32;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3307 packedYOffset|= packedYOffset<<16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3308
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3309 scale= (double)(maxAllowedY - minAllowedY) / (double)(white-black);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3310
117
a02f3088b0cf negative black bugfix
michael
parents: 116
diff changeset
3311 packedYScale= (uint16_t)(scale*1024.0 + 0.5);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3312 packedYScale|= packedYScale<<32;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3313 packedYScale|= packedYScale<<16;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3314 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3315 else
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3316 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3317 packedYScale= 0x0100010001000100LL;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3318 packedYOffset= 0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3319 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3320
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3321 if(mode & LEVEL_FIX) QPCorrecture= packedYScale &0xFFFF;
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3322 else QPCorrecture= 256;
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3323
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
3324 /* copy & deinterlace first row of blocks */
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3325 y=-BLOCK_SIZE;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3326 {
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3327 //1% speedup if these are here instead of the inner loop
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3328 uint8_t *srcBlock= &(src[y*srcStride]);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3329 uint8_t *dstBlock= &(dst[y*dstStride]);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3330
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3331 dstBlock= tempDst + dstStride;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3332
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3333 // From this point on it is guranteed that we can read and write 16 lines downward
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3334 // finish 1 block before the next otherwise we´ll might have a problem
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3335 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3336 for(x=0; x<width; x+=BLOCK_SIZE)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3337 {
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3338
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3339 #ifdef HAVE_MMX2
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3340 /*
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3341 prefetchnta(srcBlock + (((x>>2)&6) + 5)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3342 prefetchnta(srcBlock + (((x>>2)&6) + 6)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3343 prefetcht0(dstBlock + (((x>>2)&6) + 5)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3344 prefetcht0(dstBlock + (((x>>2)&6) + 6)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3345 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3346
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3347 asm(
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3348 "movl %4, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3349 "shrl $2, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3350 "andl $6, %%eax \n\t"
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3351 "addl %5, %%eax \n\t"
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3352 "movl %%eax, %%ebx \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3353 "imul %1, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3354 "imul %3, %%ebx \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3355 "prefetchnta 32(%%eax, %0) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3356 "prefetcht0 32(%%ebx, %2) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3357 "addl %1, %%eax \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3358 "addl %3, %%ebx \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3359 "prefetchnta 32(%%eax, %0) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3360 "prefetcht0 32(%%ebx, %2) \n\t"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3361 :: "r" (srcBlock), "r" (srcStride), "r" (dstBlock), "r" (dstStride),
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3362 "m" (x), "m" (copyAhead)
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3363 : "%eax", "%ebx"
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3364 );
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3365
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3366 #elif defined(HAVE_3DNOW)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3367 //FIXME check if this is faster on an 3dnow chip or if its faster without the prefetch or ...
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3368 /* prefetch(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3369 prefetch(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3370 prefetchw(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3371 prefetchw(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3372 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3373 #endif
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3374
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3375 blockCopy(dstBlock + dstStride*copyAhead, dstStride,
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3376 srcBlock + srcStride*copyAhead, srcStride, mode & LEVEL_FIX);
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3377
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3378 if(mode & LINEAR_IPOL_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3379 deInterlaceInterpolateLinear(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3380 else if(mode & LINEAR_BLEND_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3381 deInterlaceBlendLinear(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3382 else if(mode & MEDIAN_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3383 deInterlaceMedian(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3384 else if(mode & CUBIC_IPOL_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3385 deInterlaceInterpolateCubic(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3386 /* else if(mode & CUBIC_BLEND_DEINT_FILTER)
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3387 deInterlaceBlendCubic(dstBlock, dstStride);
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3388 */
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3389 dstBlock+=8;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3390 srcBlock+=8;
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3391 }
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3392 memcpy(&(dst[y*dstStride]) + 8*dstStride, tempDst + 9*dstStride, copyAhead*dstStride );
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3393 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3394
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3395 for(y=0; y<height; y+=BLOCK_SIZE)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3396 {
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3397 //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
3398 uint8_t *srcBlock= &(src[y*srcStride]);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3399 uint8_t *dstBlock= &(dst[y*dstStride]);
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3400 #ifdef ARCH_X86
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3401 int *QPptr= isColor ? &QPs[(y>>3)*QPStride] :&QPs[(y>>4)*QPStride];
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3402 int QPDelta= isColor ? 1<<(32-3) : 1<<(32-4);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3403 int QPFrac= QPDelta;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3404 uint8_t *tempBlock1= tempBlocks;
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3405 uint8_t *tempBlock2= tempBlocks + 8;
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3406 #endif
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3407 int QP=0;
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3408 /* can we mess with a 8x16 block from srcBlock/dstBlock downwards and 1 line upwards
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3409 if not than use a temporary buffer */
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3410 if(y+15 >= height)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3411 {
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3412 int i;
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3413 /* copy from line (copyAhead) to (copyAhead+7) of src, these will be copied with
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3414 blockcopy to dst later */
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3415 memcpy(tempSrc + srcStride*copyAhead, srcBlock + srcStride*copyAhead,
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3416 srcStride*MAX(height-y-copyAhead, 0) );
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3417
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3418 /* duplicate last line of src to fill the void upto line (copyAhead+7) */
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3419 for(i=MAX(height-y, 8); i<copyAhead+8; i++)
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3420 memcpy(tempSrc + srcStride*i, src + srcStride*(height-1), srcStride);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3421
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3422 /* copy up to (copyAhead+1) lines of dst (line -1 to (copyAhead-1))*/
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3423 memcpy(tempDst, dstBlock - dstStride, dstStride*MIN(height-y+1, copyAhead+1) );
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3424
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3425 /* duplicate last line of dst to fill the void upto line (copyAhead) */
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3426 for(i=height-y+1; i<=copyAhead; i++)
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3427 memcpy(tempDst + dstStride*i, dst + dstStride*(height-1), dstStride);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3428
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3429 dstBlock= tempDst + dstStride;
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3430 srcBlock= tempSrc;
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3431 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3432
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3433 // 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
3434 // 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
3435 // 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
3436 for(x=0; x<width; x+=BLOCK_SIZE)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3437 {
97
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3438 const int stride= dstStride;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3439 uint8_t *tmpXchg;
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3440 #ifdef ARCH_X86
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3441 QP= *QPptr;
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3442 asm volatile(
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3443 "addl %2, %1 \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3444 "sbbl %%eax, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3445 "shll $2, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3446 "subl %%eax, %0 \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3447 : "+r" (QPptr), "+m" (QPFrac)
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3448 : "r" (QPDelta)
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3449 : "%eax"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3450 );
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3451 #else
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3452 QP= isColor ?
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3453 QPs[(y>>3)*QPStride + (x>>3)]:
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3454 QPs[(y>>4)*QPStride + (x>>4)];
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3455 #endif
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3456 if(!isColor)
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
3457 {
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3458 QP= (QP* QPCorrecture)>>8;
148
1cfc4d567c0a minor changes (fixed some warnings, added attribute aligned(8) stuff)
michael
parents: 142
diff changeset
3459 yHistogram[ srcBlock[srcStride*12 + 4] ]++;
121
3ecf2a90c65e more speed
michael
parents: 120
diff changeset
3460 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3461 #ifdef HAVE_MMX
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3462 asm volatile(
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3463 "movd %0, %%mm7 \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3464 "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
3465 "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
3466 "packuswb %%mm7, %%mm7 \n\t" // QP,..., QP
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3467 "movq %%mm7, pQPb \n\t"
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3468 : : "r" (QP)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3469 );
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3470 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3471
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3472 #ifdef MORE_TIMING
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3473 T0= rdtsc();
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3474 #endif
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3475
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3476 #ifdef HAVE_MMX2
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3477 /*
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3478 prefetchnta(srcBlock + (((x>>2)&6) + 5)*srcStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3479 prefetchnta(srcBlock + (((x>>2)&6) + 6)*srcStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3480 prefetcht0(dstBlock + (((x>>2)&6) + 5)*dstStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3481 prefetcht0(dstBlock + (((x>>2)&6) + 6)*dstStride + 32);
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3482 */
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3483
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3484 asm(
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3485 "movl %4, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3486 "shrl $2, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3487 "andl $6, %%eax \n\t"
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3488 "addl %5, %%eax \n\t"
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3489 "movl %%eax, %%ebx \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3490 "imul %1, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3491 "imul %3, %%ebx \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3492 "prefetchnta 32(%%eax, %0) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3493 "prefetcht0 32(%%ebx, %2) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3494 "addl %1, %%eax \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3495 "addl %3, %%ebx \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3496 "prefetchnta 32(%%eax, %0) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3497 "prefetcht0 32(%%ebx, %2) \n\t"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3498 :: "r" (srcBlock), "r" (srcStride), "r" (dstBlock), "r" (dstStride),
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3499 "m" (x), "m" (copyAhead)
126
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3500 : "%eax", "%ebx"
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3501 );
55f57883bbf5 more speed
michael
parents: 121
diff changeset
3502
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3503 #elif defined(HAVE_3DNOW)
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3504 //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
3505 /* prefetch(srcBlock + (((x>>3)&3) + 5)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3506 prefetch(srcBlock + (((x>>3)&3) + 9)*srcStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3507 prefetchw(dstBlock + (((x>>3)&3) + 5)*dstStride + 32);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3508 prefetchw(dstBlock + (((x>>3)&3) + 9)*dstStride + 32);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3509 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3510 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3511
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3512 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3513 //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
3514 if(x+7 >= width)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3515 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3516 int i;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3517 dstBlockPtrBackup= dstBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3518 srcBlockPtrBackup= srcBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3519
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3520 for(i=0;i<BLOCK_SIZE*2; i++)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3521 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3522 memcpy(tempSrcBlock+i*srcStride, srcBlock+i*srcStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3523 memcpy(tempDstBlock+i*dstStride, dstBlock+i*dstStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3524 }
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3525
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3526 dstBlock= tempDstBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3527 srcBlock= tempSrcBlock;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3528 }
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3529 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3530
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3531 blockCopy(dstBlock + dstStride*copyAhead, dstStride,
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3532 srcBlock + srcStride*copyAhead, srcStride, mode & LEVEL_FIX);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3533
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3534 if(mode & LINEAR_IPOL_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3535 deInterlaceInterpolateLinear(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3536 else if(mode & LINEAR_BLEND_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3537 deInterlaceBlendLinear(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3538 else if(mode & MEDIAN_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3539 deInterlaceMedian(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3540 else if(mode & CUBIC_IPOL_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3541 deInterlaceInterpolateCubic(dstBlock, dstStride);
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3542 /* else if(mode & CUBIC_BLEND_DEINT_FILTER)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3543 deInterlaceBlendCubic(dstBlock, dstStride);
106
389391a6d0bf rewrote the horizontal lowpass filter to fix a bug which caused a blocky look
michael
parents: 105
diff changeset
3544 */
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3545
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3546 /* only deblock if we have 2 blocks */
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3547 if(y + 8 < height)
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3548 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3549 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3550 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3551 memcpyTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3552 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3553 #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
3554 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
3555 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
3556 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
3557 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
3558 else if(mode & V_DEBLOCK)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3559 {
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
3560 if( isVertDC(dstBlock, stride))
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3561 {
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
3562 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
3563 doVertLowPass(dstBlock, stride, QP);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3564 }
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
3565 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
3566 doVertDefFilter(dstBlock, stride, QP);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3567 }
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3568 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3569 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3570 vertTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3571 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3572 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3573 }
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3574
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3575 #ifdef HAVE_MMX
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3576 transpose1(tempBlock1, tempBlock2, dstBlock, dstStride);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3577 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3578 /* 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
3579 if(x - 8 >= 0)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3580 {
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3581 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3582 T0= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3583 #endif
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3584 #ifdef HAVE_MMX
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3585 if(mode & H_RK1_FILTER)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3586 vertRK1Filter(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3587 else if(mode & H_X1_FILTER)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3588 vertX1Filter(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3589 else if(mode & H_DEBLOCK)
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3590 {
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3591 if( isVertDC(tempBlock1, 16) )
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3592 {
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3593 if(isVertMinMaxOk(tempBlock1, 16, QP))
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3594 doVertLowPass(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3595 }
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3596 else
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3597 doVertDefFilter(tempBlock1, 16, QP);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3598 }
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3599
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3600 transpose2(dstBlock-4, dstStride, tempBlock1 + 4*16);
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3601
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3602 #else
115
4514b8e7f0f1 more logic behavior if the altenative deblock filters are used (turning a alt filter on without turning the deblock filter on uses the alt filter instead of using no filter now)
michael
parents: 113
diff changeset
3603 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
3604 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
3605 else if(mode & H_DEBLOCK)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3606 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3607 if( isHorizDC(dstBlock-4, stride))
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3608 {
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3609 if(isHorizMinMaxOk(dstBlock-4, stride, QP))
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3610 doHorizLowPass(dstBlock-4, stride, QP);
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3611 }
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
3612 else
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3613 doHorizDefFilter(dstBlock-4, stride, QP);
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3614 }
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3615 #endif
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3616 #ifdef MORE_TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3617 T1= rdtsc();
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3618 horizTime+= T1-T0;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3619 T0=T1;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3620 #endif
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3621 if(mode & DERING)
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3622 {
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3623 //FIXME filter first line
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3624 if(y>0) dering(dstBlock - stride - 8, stride, QP);
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3625 }
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3626
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3627 if(mode & TEMP_NOISE_FILTER)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3628 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3629 tempNoiseReducer(dstBlock-8, stride,
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3630 tempBlured[isColor] + y*dstStride + x,
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3631 tempBluredPast[isColor] + (y>>3)*256 + (x>>3),
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3632 ppMode->maxTmpNoise);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3633 }
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3634 }
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3635
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3636 #ifdef PP_FUNNY_STRIDE
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3637 /* did we use a tmp-block buffer */
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3638 if(x+7 >= width)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3639 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3640 int i;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3641 dstBlock= dstBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3642 srcBlock= srcBlockPtrBackup;
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3643
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3644 for(i=0;i<BLOCK_SIZE*2; i++)
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3645 {
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3646 memcpy(dstBlock+i*dstStride, tempDstBlock+i*dstStride, width-x);
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3647 }
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3648 }
113
3e0dcdb6b340 added compiletime option to turn width%8==0 on
michael
parents: 112
diff changeset
3649 #endif
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3650
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3651 dstBlock+=8;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3652 srcBlock+=8;
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3653
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3654 #ifdef HAVE_MMX
128
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3655 tmpXchg= tempBlock1;
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3656 tempBlock1= tempBlock2;
e5266b8e79be much better horizontal filters (transpose & use the vertical ones) :)
michael
parents: 126
diff changeset
3657 tempBlock2 = tmpXchg;
129
be35346e27c1 fixed difference with -vo md5 between doVertDefFilter() C and MMX / MMX2 versions
michael
parents: 128
diff changeset
3658 #endif
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3659 }
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3660
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3661 if(mode & DERING)
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3662 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3663 if(y > 0) dering(dstBlock - dstStride - 8, dstStride, QP);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3664 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3665
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3666 if((mode & TEMP_NOISE_FILTER))
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3667 {
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3668 tempNoiseReducer(dstBlock-8, dstStride,
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3669 tempBlured[isColor] + y*dstStride + x,
158
d1a4f4ca7178 temp denoiser:
michael
parents: 157
diff changeset
3670 tempBluredPast[isColor] + (y>>3)*256 + (x>>3),
156
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3671 ppMode->maxTmpNoise);
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3672 }
c09459686be3 temporal noise reducer in C (-pp 0x100000)
michael
parents: 152
diff changeset
3673
142
da4c751fc151 deinterlace bugfix
michael
parents: 141
diff changeset
3674 /* did we use a tmp buffer for the last lines*/
112
a2c063b6ecf9 fixed a bug in the tmp buffer
michael
parents: 111
diff changeset
3675 if(y+15 >= height)
111
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3676 {
8e4c5a16c9fc fixed the height%8!=0 bug
michael
parents: 109
diff changeset
3677 uint8_t *dstBlock= &(dst[y*dstStride]);
130
0cce5d30d1d8 dering in mmx2
michael
parents: 129
diff changeset
3678 memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y) );
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3679 }
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3680 /*
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3681 for(x=0; x<width; x+=32)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3682 {
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3683 volatile int i;
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3684 i+= + dstBlock[x + 7*dstStride] + dstBlock[x + 8*dstStride]
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3685 + dstBlock[x + 9*dstStride] + dstBlock[x +10*dstStride]
164
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3686 + dstBlock[x +11*dstStride] + dstBlock[x +12*dstStride];
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3687 // + dstBlock[x +13*dstStride]
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3688 // + dstBlock[x +14*dstStride] + dstBlock[x +15*dstStride];
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3689 }*/
dedb3aef2bee cleanup
michael
parents: 163
diff changeset
3690 }
96
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3691 #ifdef HAVE_3DNOW
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3692 asm volatile("femms");
29ac11dc53d3 fixed a bug in the horizontal default filter
arpi
parents: 95
diff changeset
3693 #elif defined (HAVE_MMX)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3694 asm volatile("emms");
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3695 #endif
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3696
107
bd163e13a0fb minor cleanups
michael
parents: 106
diff changeset
3697 #ifdef TIMING
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3698 // 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
3699 sumTime= rdtsc() - sumTime;
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3700 if(!isColor)
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3701 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
3702 (int)(memcpyTime/1000), (int)(vertTime/1000), (int)(horizTime/1000),
e57b1d38d71f bugfixes: last 3 lines not brightness/contrast corrected
michael
parents: 96
diff changeset
3703 (int)(sumTime/1000), (int)((sumTime-memcpyTime-vertTime-horizTime)/1000)
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3704 , black, white);
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3705 #endif
163
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3706 #ifdef DEBUG_BRIGHTNESS
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3707 if(!isColor)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3708 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3709 int max=1;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3710 int i;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3711 for(i=0; i<256; i++)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3712 if(yHistogram[i] > max) max=yHistogram[i];
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3713
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3714 for(i=1; i<256; i++)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3715 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3716 int x;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3717 int start=yHistogram[i-1]/(max/256+1);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3718 int end=yHistogram[i]/(max/256+1);
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3719 int inc= end > start ? 1 : -1;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3720 for(x=start; x!=end+inc; x+=inc)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3721 dst[ i*dstStride + x]+=128;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3722 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3723
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3724 for(i=0; i<100; i+=2)
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3725 {
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3726 dst[ (white)*dstStride + i]+=128;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3727 dst[ (black)*dstStride + i]+=128;
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3728 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3729
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3730 }
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3731 #endif
32e7f17a04a7 faster mmx2 / 3dnow deblocking filter
michael
parents: 158
diff changeset
3732
95
8bce253b537c new postprocess code by Michael Niedermayer (michaelni@gmx.at)
arpi
parents:
diff changeset
3733 }