mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-22 15:50:01 +01:00
168 lines
3.8 KiB
C
168 lines
3.8 KiB
C
/*
|
|
* Linux VeeJay
|
|
*
|
|
* Copyright(C)2002 Niels Elburg <nwelburg@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License , or (at your option) any later version.
|
|
*
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307 , USA.
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include <veejaycore/vjmem.h>
|
|
#include "softblur.h"
|
|
#ifdef HAVE_ARM
|
|
#include <arm_neon.h>
|
|
#endif
|
|
#ifdef HAVE_ASM_SSE2
|
|
#include <emmintrin.h>
|
|
#endif
|
|
|
|
vj_effect *softblur_init(int w,int h)
|
|
{
|
|
vj_effect *ve = (vj_effect *) vj_calloc(sizeof(vj_effect));
|
|
ve->num_params = 1;
|
|
ve->defaults = (int *) vj_calloc(sizeof(int) * ve->num_params); /* default values */
|
|
ve->limits[0] = (int *) vj_calloc(sizeof(int) * ve->num_params); /* min */
|
|
ve->limits[1] = (int *) vj_calloc(sizeof(int) * ve->num_params); /* max */
|
|
ve->defaults[0] = 0;
|
|
|
|
ve->limits[0][0] = 0;
|
|
ve->limits[1][0] = 2; /* 3*/
|
|
ve->description = "Soft Blur";
|
|
ve->sub_format = -1;
|
|
ve->extra_frame = 0;
|
|
ve->has_user = 0;
|
|
ve->param_description = vje_build_param_list(ve->num_params, "Kernel Size");
|
|
|
|
ve->hints = vje_init_value_hint_list( ve->num_params );
|
|
|
|
vje_build_value_hint_list( ve->hints, ve->limits[1][0], 0, "1x3", "3x3","5x5");
|
|
|
|
return ve;
|
|
}
|
|
|
|
static void softblur5_apply(VJFrame *frame)
|
|
{
|
|
int r, c, i, j;
|
|
uint8_t *restrict Y = frame->data[0];
|
|
const int len = frame->len;
|
|
const int width = frame->width;
|
|
|
|
for (r = 2 * width; r < len - 2 * width; r += width) {
|
|
#pragma omp simd
|
|
for (c = 2; c < width - 2; c++) {
|
|
int sum = 0;
|
|
for (i = -2; i <= 2; i++) {
|
|
for (j = -2; j <= 2; j++) {
|
|
sum += Y[r + i * width + c + j];
|
|
}
|
|
}
|
|
Y[r + c] = sum / 25;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
static void softblur3_apply(VJFrame *frame )
|
|
{
|
|
int r,c;
|
|
uint8_t *restrict Y = frame->data[0];
|
|
const int len = frame->len;
|
|
const int width = frame->width;
|
|
|
|
for(c = 1; c < width - 1; c ++ )
|
|
Y[c ] = (Y[c - 1] +
|
|
Y[c ] +
|
|
Y[c + 1]
|
|
) / 3;
|
|
|
|
for(r=width; r < (len-width); r+=width) {
|
|
#pragma omp simd
|
|
for(c=1; c < (width-1); c++) {
|
|
Y[r+c] = ( Y[r - width + c - 1] +
|
|
Y[r - width + c ] +
|
|
Y[r + c + 1] +
|
|
Y[r - width + c] +
|
|
Y[r + c] +
|
|
Y[r + c + 1] +
|
|
Y[r + width + c - 1] +
|
|
Y[r + width + c] +
|
|
Y[r + width + c + 1] ) / 9;
|
|
|
|
}
|
|
}
|
|
|
|
for( c = (len-width) ; c < len; c ++ )
|
|
Y[c ] = (Y[c - 1] +
|
|
Y[c] +
|
|
Y[c + 1]
|
|
) / 3;
|
|
}
|
|
|
|
static void softblur1_apply( VJFrame *frame)
|
|
{
|
|
int r, c;
|
|
const int len = frame->len;
|
|
uint8_t *restrict Y = frame->data[0];
|
|
const int width = frame->width;
|
|
|
|
#pragma omp simd
|
|
for(r=0; r < len; r+=width) {
|
|
for(c=1; c < (width-1); c++) {
|
|
Y[r+c] = (
|
|
Y[r + c + 1] +
|
|
Y[r + c] +
|
|
Y[r + c + 1] ) /3;
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void softblur_apply(void *ptr, VJFrame *frame, int *args)
|
|
{
|
|
|
|
int type = args[0];
|
|
|
|
switch (type) {
|
|
case 0:
|
|
softblur1_apply(frame);
|
|
break;
|
|
case 1:
|
|
softblur3_apply(frame);
|
|
break;
|
|
case 2:
|
|
softblur5_apply(frame);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void softblur_apply_internal(VJFrame *frame, int type)
|
|
{
|
|
switch (type) {
|
|
case 0:
|
|
softblur1_apply(frame);
|
|
break;
|
|
case 1:
|
|
softblur3_apply(frame);
|
|
break;
|
|
case 2:
|
|
softblur5_apply(frame);
|
|
break;
|
|
}
|
|
}
|