-
Notifications
You must be signed in to change notification settings - Fork 0
/
Conversions.cpp
486 lines (468 loc) · 14.3 KB
/
Conversions.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/*
FFT3DFilter plugin for Avisynth 2.6 - 3D Frequency Domain filter
Functions for converting video buffers
Copyright(C)2004-2006 A.G.Balakhnin aka Fizick, [email protected], http://avisynth.org.ru
Copyright(C) 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"
//-----------------------------------------------------------------------
//
void PlanarPlaneToCovebuf(const BYTE *srcp, int src_width, int src_height, int src_pitch, BYTE *coverbuf, int coverwidth, int coverheight, int coverpitch, int mirw, int mirh, bool interlaced, IScriptEnvironment* env) noexcept
{
int w(0);
const int width2 = src_width + src_width + mirw + mirw - 2;
BYTE * coverbuf1(coverbuf + coverpitch * mirh);
const int mirw_left = mirw % 4;
const int coverwidth_left = coverwidth % 4;
if (!interlaced) //progressive
{
for (int h = mirh; h < src_height + mirh; h++)
{
env->BitBlt(coverbuf1 + mirw, coverpitch, srcp, src_pitch, src_width, 1); // copy line
for (w = 0; w < mirw - mirw_left; w += 4)
{
coverbuf1[w] = coverbuf1[mirw + mirw - w + 1]; // mirror left border
coverbuf1[w + 1] = coverbuf1[mirw + mirw - w + 2]; // mirror left border
coverbuf1[w + 2] = coverbuf1[mirw + mirw - w + 3]; // mirror left border
coverbuf1[w + 3] = coverbuf1[mirw + mirw - w + 4]; // mirror left border
}
for (w = mirw - mirw_left; w < mirw; w++)
{
coverbuf1[w] = coverbuf1[mirw + mirw - w]; // mirror left border
}
for (w = src_width + mirw; w < coverwidth - coverwidth_left; w += 4)
{
coverbuf1[w] = coverbuf1[width2 - w]; // mirror right border
coverbuf1[w + 1] = coverbuf1[width2 - w + 1]; // mirror right border
coverbuf1[w + 2] = coverbuf1[width2 - w + 2]; // mirror right border
coverbuf1[w + 3] = coverbuf1[width2 - w + 3]; // mirror right border
}
for (w = coverwidth - coverwidth_left; w < coverwidth; w++)
{
coverbuf1[w] = coverbuf1[width2 - w]; // mirror right border
}
coverbuf1 += coverpitch;
srcp += src_pitch;
}
}
else // interlaced
{
for (int h = mirh; h < src_height / 2 + mirh; h++) // first field
{
env->BitBlt(coverbuf1 + mirw, coverpitch, srcp, src_pitch, src_width, 1); // copy line
for (w = 0; w < mirw; w++)
{
coverbuf1[w] = coverbuf1[mirw + mirw - w]; // mirror left border
}
for (w = src_width + mirw; w < coverwidth; w++)
{
coverbuf1[w] = coverbuf1[width2 - w]; // mirror right border
}
coverbuf1 += coverpitch;
srcp += src_pitch * 2;
}
srcp -= src_pitch;
for (int h = src_height / 2 + mirh; h < src_height + mirh; h++) // flip second field
{
env->BitBlt(coverbuf1 + mirw, coverpitch, srcp, src_pitch, src_width, 1); // copy line
for (w = 0; w < mirw; w++)
{
coverbuf1[w] = coverbuf1[mirw + mirw - w]; // mirror left border
}
for (w = src_width + mirw; w < coverwidth; w++)
{
coverbuf1[w] = coverbuf1[width2 - w]; // mirror right border
}
coverbuf1 += coverpitch;
srcp -= src_pitch * 2;
}
}
BYTE * pmirror = coverbuf1 - coverpitch * 2; // pointer to vertical mirror
for (int h = src_height + mirh; h < coverheight; h++)
{
env->BitBlt(coverbuf1, coverpitch, pmirror, coverpitch, coverwidth, 1); // mirror bottom line by line
coverbuf1 += coverpitch;
pmirror -= coverpitch;
}
coverbuf1 = coverbuf;
pmirror = coverbuf1 + coverpitch * mirh * 2; // pointer to vertical mirror
for (int h = 0; h < mirh; h++)
{
env->BitBlt(coverbuf1, coverpitch, pmirror, coverpitch, coverwidth, 1); // mirror bottom line by line
coverbuf1 += coverpitch;
pmirror -= coverpitch;
}
}
//-----------------------------------------------------------------------
//
void CoverbufToPlanarPlane(const BYTE *coverbuf, int coverpitch, BYTE *dstp, int dst_width, int dst_height, int dst_pitch, int mirw, int mirh, bool interlaced, IScriptEnvironment* env) noexcept
{
const BYTE *coverbuf1 = coverbuf + coverpitch * mirh + mirw;
if (!interlaced) // progressive
{
for (int h = 0; h < dst_height; h++)
{
env->BitBlt(dstp, dst_pitch, coverbuf1, coverpitch, dst_width, 1); // copy pure frame size only
dstp += dst_pitch;
coverbuf1 += coverpitch;
}
}
else // interlaced
{
for (int h = 0; h < dst_height; h += 2)
{
env->BitBlt(dstp, dst_pitch, coverbuf1, coverpitch, dst_width, 1); // copy pure frame size only
dstp += dst_pitch * 2;
coverbuf1 += coverpitch;
}
// second field is flipped
dstp -= dst_pitch;
for (int h = 0; h < dst_height; h += 2)
{
env->BitBlt(dstp, dst_pitch, coverbuf1, coverpitch, dst_width, 1); // copy pure frame size only
dstp -= dst_pitch * 2;
coverbuf1 += coverpitch;
}
}
}
//-----------------------------------------------------------------------
// not planar
void YUY2PlaneToCoverbuf(int plane, const BYTE *srcp, int src_width, int src_height, int src_pitch, BYTE *coverbuf, int coverwidth, int coverheight, int coverpitch, int mirw, int mirh, bool interlaced) noexcept
{
int w(0);
int src_width_plane(0);
int width2(0);
BYTE * coverbuf1(coverbuf + coverpitch * mirh + mirw); // start of image (not mirrored) v.1.0.1
if (!interlaced)
{
if (plane == 0) // Y
{
src_width_plane = src_width / 2;
for (int h = mirh; h < src_height + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[w << 1];// copy image line
}
coverbuf1 += coverpitch;
srcp += src_pitch;
}
}
else if (plane == 1) // U
{
src_width_plane = src_width / 4;
for (int h = mirh; h < src_height + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[(w << 2) + 1];// copy line
}
coverbuf1 += coverpitch;
srcp += src_pitch;
}
}
else if (plane == 2) // V
{
src_width_plane = src_width / 4;
for (int h = mirh; h < src_height + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[(w << 2) + 3];// copy line
}
coverbuf1 += coverpitch;
srcp += src_pitch;
}
}
}
else // interlaced
{
if (plane == 0) // Y
{
src_width_plane = src_width / 2;
for (int h = mirh; h < src_height / 2 + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[w << 1];// copy image line
}
coverbuf1 += coverpitch;
srcp += src_pitch * 2;
}
srcp -= src_pitch;
for (int h = mirh; h < src_height / 2 + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[w << 1];// copy image line
}
coverbuf1 += coverpitch;
srcp -= src_pitch * 2;
}
}
else if (plane == 1) // U
{
src_width_plane = src_width / 4;
for (int h = mirh; h < src_height / 2 + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[(w << 2) + 1];// copy line
}
coverbuf1 += coverpitch;
srcp += src_pitch * 2;
}
srcp -= src_pitch;
for (int h = mirh; h < src_height / 2 + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[(w << 2) + 1];// copy line
}
coverbuf1 += coverpitch;
srcp -= src_pitch * 2;
}
}
else if (plane == 2) // V
{
src_width_plane = src_width / 4;
for (int h = mirh; h < src_height / 2 + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[(w << 2) + 3];// copy line
}
coverbuf1 += coverpitch;
srcp += src_pitch * 2;
}
srcp -= src_pitch;
for (int h = mirh; h < src_height / 2 + mirh; h++)
{
for (w = 0; w < src_width_plane; w++)
{
coverbuf1[w] = srcp[(w << 2) + 3];// copy line
}
coverbuf1 += coverpitch;
srcp -= src_pitch * 2;
}
}
}
// make mirrors
coverbuf1 = coverbuf + coverpitch * mirh; // start of first image line
width2 = src_width_plane * 2 + mirw * 2 - 2; // for right position
for (int h = mirh; h < src_height + mirh; h++)
{
for (w = 0; w < mirw; w++)
{
coverbuf1[w] = coverbuf1[(mirw + mirw - w)]; // mirror left border
}
for (w = src_width_plane + mirw; w < coverwidth; w++)
{
coverbuf1[w] = coverbuf1[width2 - w]; // mirror right border
}
coverbuf1 += coverpitch;
// srcp += src_pitch;
}
// make bottom mirror
BYTE * pmirror = coverbuf1 - coverpitch * 2; // pointer to vertical mirror
for (int h = src_height + mirh; h < coverheight; h++)
{
for (w = 0; w < coverwidth; w++)
{
coverbuf1[w] = pmirror[w];// copy line
}
coverbuf1 += coverpitch;
pmirror -= coverpitch;
}
// make top mirror
coverbuf1 = coverbuf;
pmirror = coverbuf1 + coverpitch * mirh * 2; // pointer to vertical mirror
for (int h = 0; h < mirh; h++)
{
for (w = 0; w < coverwidth; w++)
{
coverbuf1[w] = pmirror[w];// copy line
}
coverbuf1 += coverpitch;
pmirror -= coverpitch;
}
}
//-----------------------------------------------------------------------
// not planar
void CoverbufToYUY2Plane(int plane, const BYTE *coverbuf, int coverpitch, BYTE *dstp, int dst_width, int dst_height, int dst_pitch, int mirw, int mirh, bool interlaced) noexcept
{
int w(0), dst_width_plane(0);
const BYTE *coverbuf1 = coverbuf + coverpitch * mirh + mirw;
if (!interlaced)
{
if (plane == 0) // Y
{
dst_width_plane = dst_width / 2;
for (int h = 0; h < dst_height; h++)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[w << 1] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp += dst_pitch;
}
}
else if (plane == 1) // U
{
dst_width_plane = dst_width / 4;
for (int h = 0; h < dst_height; h++)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[(w << 2) + 1] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp += dst_pitch;
}
}
else if (plane == 2) // V
{
dst_width_plane = dst_width / 4;
for (int h = 0; h < dst_height; h++)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[(w << 2) + 3] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp += dst_pitch;
}
}
}
else //progressive
{
if (plane == 0) // Y
{
dst_width_plane = dst_width / 2;
for (int h = 0; h < dst_height; h += 2)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[w << 1] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp += dst_pitch * 2;
}
dstp -= dst_pitch;
for (int h = 0; h < dst_height; h += 2)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[w << 1] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp -= dst_pitch * 2;
}
}
else if (plane == 1) // U
{
dst_width_plane = dst_width / 4;
for (int h = 0; h < dst_height; h += 2)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[(w << 2) + 1] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp += dst_pitch * 2;
}
dstp -= dst_pitch;
for (int h = 0; h < dst_height; h += 2)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[(w << 2) + 1] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp -= dst_pitch * 2;
}
}
else if (plane == 2) // V
{
dst_width_plane = dst_width / 4;
for (int h = 0; h < dst_height; h += 2)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[(w << 2) + 3] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp += dst_pitch * 2;
}
dstp -= dst_pitch;
for (int h = 0; h < dst_height; h += 2)
{
for (w = 0; w < dst_width_plane; w++)
{
dstp[(w << 2) + 3] = coverbuf1[w];// copy line
}
coverbuf1 += coverpitch;
dstp -= dst_pitch * 2;
}
}
}
}
//-----------------------------------------------------------------------
//
void FramePlaneToCoverbuf(int plane, const PVideoFrame &src, VideoInfo vi1, BYTE *coverbuf, int coverwidth, int coverheight, int coverpitch, int mirw, int mirh, bool interlaced, IScriptEnvironment* env) noexcept
{
const BYTE *srcp(nullptr);
int src_width(0), src_height(0), src_pitch(0), planarNum(0);
if (vi1.IsPlanar()) // YV12
{
planarNum = 1 << plane;
srcp = src->GetReadPtr(planarNum);
src_height = src->GetHeight(planarNum);
src_width = src->GetRowSize(planarNum);
src_pitch = src->GetPitch(planarNum);
PlanarPlaneToCovebuf(srcp, src_width, src_height, src_pitch, coverbuf, coverwidth, coverheight, coverpitch, mirw, mirh, interlaced, env);
}
else // YUY2
{
srcp = src->GetReadPtr();
src_height = src->GetHeight();
src_width = src->GetRowSize();
src_pitch = src->GetPitch();
YUY2PlaneToCoverbuf(plane, srcp, src_width, src_height, src_pitch, coverbuf, coverwidth, coverheight, coverpitch, mirw, mirh, interlaced);
}
}
//-----------------------------------------------------------------------
//
void CoverbufToFramePlane(int plane, const BYTE *coverbuf, int, int, int coverpitch, const PVideoFrame &dst, VideoInfo vi1, int mirw, int mirh, bool interlaced, IScriptEnvironment* env) noexcept
{
BYTE *dstp(nullptr);
int dst_width(0), dst_height(0), dst_pitch(0), planarNum(0);
if (vi1.IsPlanar()) // YV12
{
planarNum = 1 << plane;
dstp = dst->GetWritePtr(planarNum);
dst_height = dst->GetHeight(planarNum);
dst_width = dst->GetRowSize(planarNum);
dst_pitch = dst->GetPitch(planarNum);
CoverbufToPlanarPlane(coverbuf, coverpitch, dstp, dst_width, dst_height, dst_pitch, mirw, mirh, interlaced, env);
}
else // YUY2
{
dstp = dst->GetWritePtr();
dst_height = dst->GetHeight();
dst_width = dst->GetRowSize();
dst_pitch = dst->GetPitch();
CoverbufToYUY2Plane(plane, coverbuf, coverpitch, dstp, dst_width, dst_height, dst_pitch, mirw, mirh, interlaced);
}
}