-
Notifications
You must be signed in to change notification settings - Fork 0
/
Conversions-sse.cpp
261 lines (244 loc) · 11.3 KB
/
Conversions-sse.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
FFT3DFilter plugin for Avisynth 2.6 - 3D Frequency Domain filter
Copyright(C)2004-2006 A.G.Balakhnin aka Fizick, [email protected], http://avisynth.org.ru
2018 Daniel Klíma aka Klimax
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "fft3dfilter.h"
#include <intrin.h>
//
//-----------------------------------------------------------------------------------------
// make destination frame plane from overlaped blocks
// use synthesis windows wsynxl, wsynxr, wsynyl, wsynyr
void FFT3DFilter::DecodeOverlapPlane_SSE(const float *__restrict inp0, BYTE *__restrict dstp0) noexcept
{
int w(0);
BYTE *__restrict dstp = dstp0;// + (hrest/2)*coverpitch + wrest/2; // centered
const float *__restrict inp = inp0;
const int dbwow = bw - ow;
const int dbwow4 = dbwow - dbwow % 4;
const int d2bwow = dbwow - ow;
const int ow4 = ow - ow % 4;
const int xoffset = bh * bw - dbwow;
const int yoffset = bw * nox*bh - bw * (bh - oh); // vertical offset of same block (overlap)
// first top big non-overlapped) part
{
for (int h = 0; h < bh - oh; h++)
{
inp = inp0 + h * bw;
for (w = 0; w < dbwow4; w = w + 4) // first half line of first block
{ // Copy each byte from float array to dest with windows
dstp[w] = (BYTE)min(255, max(0, (int)(inp[w] * norm) + planeBase));
dstp[w + 1] = (BYTE)min(255, max(0, (int)(inp[w + 1] * norm) + planeBase));
dstp[w + 2] = (BYTE)min(255, max(0, (int)(inp[w + 2] * norm) + planeBase));
dstp[w + 3] = (BYTE)min(255, max(0, (int)(inp[w + 3] * norm) + planeBase));
}
for (; w < dbwow; w++) // first half line of first block
{ // Copy each byte from float array to dest with windows
dstp[w] = (BYTE)min(255, max(0, (int)(inp[w] * norm) + planeBase));
}
inp += dbwow;
dstp += dbwow;
for (int ihx = 1; ihx < nox; ihx++) // middle horizontal half-blocks
{
for (w = 0; w < ow4; w = w + 4) // half line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynxr[w] + inp[w + xoffset] * wsynxl[w])*norm) + planeBase)); // overlapped Copy
dstp[w + 1] = (BYTE)min(255, max(0, ((inp[w + 1] * wsynxr[w + 1] + inp[w + 1 + xoffset] * wsynxl[w + 1])*norm) + planeBase));
dstp[w + 2] = (BYTE)min(255, max(0, ((inp[w + 2] * wsynxr[w + 2] + inp[w + 2 + xoffset] * wsynxl[w + 2])*norm) + planeBase));
dstp[w + 3] = (BYTE)min(255, max(0, ((inp[w + 3] * wsynxr[w + 3] + inp[w + 3 + xoffset] * wsynxl[w + 3])*norm) + planeBase));
}
for (; w < ow; w++) // half line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynxr[w] + inp[w + xoffset] * wsynxl[w])*norm) + planeBase)); // overlapped Copy
}
inp += xoffset + ow;
dstp += ow;
for (w = 0; w < d2bwow; w++) // first half line of first block
{
dstp[w] = (BYTE)min(255, max(0, (inp[w] * norm) + planeBase)); // Copy each byte from float array to dest with windows
}
inp += d2bwow;
dstp += d2bwow;
}
for (w = 0; w < ow4; w = w + 4) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, (inp[w] * norm) + planeBase));
dstp[w + 1] = (BYTE)min(255, max(0, (inp[w + 1] * norm) + planeBase));
dstp[w + 2] = (BYTE)min(255, max(0, (inp[w + 2] * norm) + planeBase));
dstp[w + 3] = (BYTE)min(255, max(0, (inp[w + 3] * norm) + planeBase));
}
for (; w < ow; w++) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, (inp[w] * norm) + planeBase));
}
inp += ow;
dstp += ow;
dstp += (coverpitch - coverwidth); // Add the pitch of one line (in bytes) to the dest image.
}
}
for (int ihy = 1; ihy < noy; ihy += 1) // middle vertical
{
for (int h = 0; h < oh; h++) // top overlapped part
{
inp = inp0 + (ihy - 1)*(yoffset + (bh - oh)*bw) + (bh - oh)*bw + h * bw;
const float wsynyrh = wsynyr[h] * norm; // remove from cycle for speed
const float wsynylh = wsynyl[h] * norm;
for (w = 0; w < dbwow4; w = w + 4) // first half line of first block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynyrh + inp[w + yoffset] * wsynylh)) + planeBase)); //
dstp[w + 1] = (BYTE)min(255, max(0, ((inp[w + 1] * wsynyrh + inp[w + 1 + yoffset] * wsynylh)) + planeBase)); //
dstp[w + 2] = (BYTE)min(255, max(0, ((inp[w + 2] * wsynyrh + inp[w + 2 + yoffset] * wsynylh)) + planeBase)); //
dstp[w + 3] = (BYTE)min(255, max(0, ((inp[w + 3] * wsynyrh + inp[w + 3 + yoffset] * wsynylh)) + planeBase)); //
}
for (; w < dbwow; w++) // first half line of first block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynyrh + inp[w + yoffset] * wsynylh)) + planeBase)); //
}
inp += dbwow;
dstp += dbwow;
for (int ihx = 1; ihx < nox; ihx++) // middle blocks
{
for (w = 0; w < ow; w++) // half overlapped line of block
{
dstp[w] = (BYTE)min(255, max(0, (((inp[w] * wsynxr[w] + inp[w + xoffset] * wsynxl[w])*wsynyrh
+ (inp[w + yoffset] * wsynxr[w] + inp[w + xoffset + yoffset] * wsynxl[w])*wsynylh)) + planeBase)); // x overlapped
}
inp += xoffset + ow;
dstp += ow;
for (w = 0; w < d2bwow; w++) // double minus - half non-overlapped line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynyrh + inp[w + yoffset] * wsynylh)) + planeBase));
}
inp += d2bwow;
dstp += d2bwow;
}
for (w = 0; w < ow4; w = w + 4) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynyrh + inp[w + yoffset] * wsynylh)) + planeBase));
dstp[w + 1] = (BYTE)min(255, max(0, ((inp[w + 1] * wsynyrh + inp[w + 1 + yoffset] * wsynylh)) + planeBase));
dstp[w + 2] = (BYTE)min(255, max(0, ((inp[w + 2] * wsynyrh + inp[w + 2 + yoffset] * wsynylh)) + planeBase));
dstp[w + 3] = (BYTE)min(255, max(0, ((inp[w + 3] * wsynyrh + inp[w + 3 + yoffset] * wsynylh)) + planeBase));
}
for (; w < ow; w++) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynyrh + inp[w + yoffset] * wsynylh)) + planeBase));
}
inp += ow;
dstp += ow;
dstp += (coverpitch - coverwidth); // Add the pitch of one line (in bytes) to the source image.
}
// middle vertical non-ovelapped part
for (int h = 0; h < (bh - oh - oh); h++)
{
inp = inp0 + (ihy - 1)*(yoffset + (bh - oh)*bw) + (bh)*bw + h * bw + yoffset;
for (w = 0; w < dbwow; w++) // first half line of first block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w])*norm) + planeBase));
}
inp += dbwow;
dstp += dbwow;
for (int ihx = 1; ihx < nox; ihx++) // middle blocks
{
for (w = 0; w < ow4; w = w + 4) // half overlapped line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynxr[w] + inp[w + xoffset] * wsynxl[w])*norm) + planeBase)); // x overlapped
dstp[w + 1] = (BYTE)min(255, max(0, ((inp[w + 1] * wsynxr[w + 1] + inp[w + 1 + xoffset] * wsynxl[w + 1])*norm) + planeBase)); // x overlapped
dstp[w + 2] = (BYTE)min(255, max(0, ((inp[w + 2] * wsynxr[w + 2] + inp[w + 2 + xoffset] * wsynxl[w + 2])*norm) + planeBase)); // x overlapped
dstp[w + 3] = (BYTE)min(255, max(0, ((inp[w + 3] * wsynxr[w + 3] + inp[w + 3 + xoffset] * wsynxl[w + 3])*norm) + planeBase)); // x overlapped
}
for (; w < ow; w++) // half overlapped line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynxr[w] + inp[w + xoffset] * wsynxl[w])*norm) + planeBase)); // x overlapped
}
inp += xoffset + ow;
dstp += ow;
for (w = 0; w < d2bwow; w++) // half non-overlapped line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w])*norm) + planeBase));
}
inp += d2bwow;
dstp += d2bwow;
}
for (w = 0; w < ow4; w = w + 4) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w])*norm) + planeBase));
dstp[w + 1] = (BYTE)min(255, max(0, ((inp[w + 1])*norm) + planeBase));
dstp[w + 2] = (BYTE)min(255, max(0, ((inp[w + 2])*norm) + planeBase));
dstp[w + 3] = (BYTE)min(255, max(0, ((inp[w + 3])*norm) + planeBase));
}
for (; w < ow; w++) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w])*norm) + planeBase));
}
inp += ow;
dstp += ow;
dstp += (coverpitch - coverwidth); // Add the pitch of one line (in bytes) to the source image.
}
}
const int ihy = noy; // last bottom part
{
for (int h = 0; h < oh; h++)
{
inp = inp0 + (ihy - 1)*(yoffset + (bh - oh)*bw) + (bh - oh)*bw + h * bw;
for (w = 0; w < dbwow4; w = w + 4) // first half line of first block
{
dstp[w] = (BYTE)min(255, max(0, (inp[w] * norm) + planeBase));
dstp[w + 1] = (BYTE)min(255, max(0, (inp[w + 1] * norm) + planeBase));
dstp[w + 2] = (BYTE)min(255, max(0, (inp[w + 2] * norm) + planeBase));
dstp[w + 3] = (BYTE)min(255, max(0, (inp[w + 3] * norm) + planeBase));
}
for (; w < dbwow; w++) // first half line of first block
{
dstp[w] = (BYTE)min(255, max(0, (inp[w] * norm) + planeBase));
}
inp += dbwow;
dstp += dbwow;
for (int ihx = 1; ihx < nox; ihx++) // middle blocks
{
for (w = 0; w < ow4; w = w + 4) // half line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynxr[w] + inp[w + xoffset] * wsynxl[w])*norm) + planeBase)); // overlapped Copy
dstp[w + 1] = (BYTE)min(255, max(0, ((inp[w + 1] * wsynxr[w + 1] + inp[w + 1 + xoffset] * wsynxl[w + 1])*norm) + planeBase)); // overlapped Copy
dstp[w + 2] = (BYTE)min(255, max(0, ((inp[w + 2] * wsynxr[w + 2] + inp[w + 2 + xoffset] * wsynxl[w + 2])*norm) + planeBase)); // overlapped Copy
dstp[w + 3] = (BYTE)min(255, max(0, ((inp[w + 3] * wsynxr[w + 3] + inp[w + 3 + xoffset] * wsynxl[w + 3])*norm) + planeBase)); // overlapped Copy
}
for (; w < ow; w++) // half line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w] * wsynxr[w] + inp[w + xoffset] * wsynxl[w])*norm) + planeBase)); // overlapped Copy
}
inp += xoffset + ow;
dstp += ow;
for (w = 0; w < d2bwow; w++) // half line of block
{
dstp[w] = (BYTE)min(255, max(0, ((inp[w])*norm) + planeBase));
}
inp += d2bwow;
dstp += d2bwow;
}
for (w = 0; w < ow4; w = w + 4) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, (inp[w] * norm) + planeBase));
dstp[w + 1] = (BYTE)min(255, max(0, (inp[w + 1] * norm) + planeBase));
dstp[w + 2] = (BYTE)min(255, max(0, (inp[w + 2] * norm) + planeBase));
dstp[w + 3] = (BYTE)min(255, max(0, (inp[w + 3] * norm) + planeBase));
}
for (; w < ow; w++) // last half line of last block
{
dstp[w] = (BYTE)min(255, max(0, (inp[w] * norm) + planeBase));
}
inp += ow;
dstp += ow;
dstp += (coverpitch - coverwidth); // Add the pitch of one line (in bytes) to the source image.
}
}
}