Files
veejay/veejay-current/veejay-server/libvje/effects/3bar.c
2019-09-08 15:08:29 +02:00

132 lines
3.9 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 <libvje/effects/common.h>
#include <veejaycore/vjmem.h>
#include "3bar.h"
vj_effect *bar_init(int width, int height)
{
vj_effect *ve = (vj_effect *) vj_calloc(sizeof(vj_effect));
ve->num_params = 5;
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] = 4;
ve->defaults[1] = 1;
ve->defaults[2] = 3;
ve->defaults[3] = 0;
ve->defaults[4] = 0;
ve->limits[0][0] = 1;
ve->limits[1][0] = height;
ve->sub_format = 1;
ve->limits[0][1] = 0;
ve->limits[1][1] = height;
ve->limits[0][2] = 0;
ve->limits[1][2] = height;
ve->limits[0][3] = 0;
ve->limits[1][3] = height;
ve->limits[0][4] = 0;
ve->limits[1][4] = height;
ve->description = "Horizontal Sliding Bars";
ve->extra_frame = 1;
ve->has_user = 0;
ve->param_description = vje_build_param_list(ve->num_params, "Divider", "Top Y", "Bot Y", "Top X", "Bot X");
return ve;
}
typedef struct {
int bar_top_auto;
int bar_bot_auto;
int bar_top_vert;
int bar_bot_vert;
} bar_t;
void *bar_malloc(int w, int h) {
return vj_calloc(sizeof(bar_t));
}
void bar_free(void *ptr) {
free(ptr);
}
void bar_apply(void *ptr, VJFrame *frame, VJFrame *frame2, int *args) {
int divider = args[0];
int top_y = args[1];
int bot_y = args[2];
int top_x = args[3];
int bot_x = args[4];
bar_t *bar = (bar_t*) ptr;
const unsigned int width = frame->width;
const unsigned int height = frame->height;
unsigned int top_width = width; /* frame in frame destination area */
unsigned int top_height = height/(divider);
unsigned int bottom_width = width; /* frame in frame destionation area */
unsigned int bottom_height = (height - top_height);
int y,x;
int yy=0;
int y2 = bar->bar_top_auto + top_y; /* destination */
int x2 = bar->bar_top_vert + top_x;
uint8_t *Y = frame->data[0];
uint8_t *Cb= frame->data[1];
uint8_t *Cr = frame->data[2];
uint8_t *Y2 = frame2->data[0];
uint8_t *Cb2= frame2->data[1];
uint8_t *Cr2= frame2->data[2];
if(y2 > width) { y2 = 0; bar->bar_top_auto = 0; }
if(x2 > (bottom_height)) {x2 = 0; bar->bar_top_vert = 0; }
/* start with top frame in a frame */
for( y = 0; y < top_height; y++ ) {
for ( x = 0; x < top_width; x++ ) {
Y[ (y*width + x)] = Y2[ ( (y+x2) *width + x +y2)];
Cb[ (y*width + x)] = Cb2[ ( (y+x2) *width + x +y2)];
Cr[ (y*width + x)] = Cr2[ ( (y+x2) *width + x +y2)];
}
}
/* do bottom part */
y2 = bar->bar_bot_auto + bot_y;
x2 = bar->bar_bot_vert + bot_x;
if(y2 > width) { y2 = 0; bar->bar_bot_auto = 0; }
if(x2 > (bottom_height)) { x2 = 0; bar->bar_bot_vert = 0; }
/* start with bottom frame in a frame */
for ( y = bottom_height; y < height; y++) {
yy++;
for(x=0; x < bottom_width; x++ ) {
Y[ (y*width + x)] = Y2[((yy+x2)*width+x+y2)];
Cb[ (y*width + x)] = Cb2[((yy+x2)*width+x+y2)];
Cr[ (y*width + x)] = Cr2[((yy+x2)*width+x+y2)];
}
}
bar->bar_top_auto += top_y;
bar->bar_bot_auto += bot_y;
bar->bar_top_vert += top_x;
bar->bar_bot_vert += bot_x;
}