From 56fbf54d2757156619dce4243b9563ad442a49e2 Mon Sep 17 00:00:00 2001 From: Niels Elburg Date: Sun, 1 Aug 2004 16:03:15 +0000 Subject: [PATCH] Added new effect git-svn-id: svn://code.dyne.org/veejay/trunk@9 eb8d1916-c9e9-0310-b8de-cf0c9472ead5 --- veejay-30aug04/veejay-0.6/veejay/vj-effect.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/veejay-30aug04/veejay-0.6/veejay/vj-effect.c b/veejay-30aug04/veejay-0.6/veejay/vj-effect.c index 2556832a..67173ebd 100644 --- a/veejay-30aug04/veejay-0.6/veejay/vj-effect.c +++ b/veejay-30aug04/veejay-0.6/veejay/vj-effect.c @@ -118,6 +118,7 @@ #include "effects/binaryoverlays.h" #include "effects/chromium.h" #include "effects/chromapalette.h" +#include "effects/uvcorrect.h" static struct { @@ -151,6 +152,7 @@ static struct { fisheye_malloc, fisheye_free ,VJ_IMAGE_EFFECT_FISHEYE }, { swirl_malloc , swirl_free ,VJ_IMAGE_EFFECT_SWIRL }, { radialblur_malloc, radialblur_free, VJ_IMAGE_EFFECT_RADIALBLUR }, +{ uvcorrect_malloc, uvcorrect_free, VJ_IMAGE_EFFECT_UVCORRECT }, { NULL , NULL ,0 }, }; @@ -411,6 +413,7 @@ void vj_effect_initialize(int width, int height) vj_effects[i + 56] = radialblur_init(width,height); vj_effects[i + 57] = chromium_init(width,height); vj_effects[i + 58] = chromapalette_init(width,height); + vj_effects[i + 59] = uvcorrect_init(width,height); max_width = width; max_height = height;