From 0044dfd3fc95c4740dcefd2cd78f434bf1dcc180 Mon Sep 17 00:00:00 2001 From: c0ntrol Date: Sun, 7 Jul 2019 23:06:22 +0200 Subject: [PATCH] disable ac_average fx --- veejay-current/veejay-server/libvje/vj-effect.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/veejay-current/veejay-server/libvje/vj-effect.c b/veejay-current/veejay-server/libvje/vj-effect.c index 5def06ff..1c42c553 100644 --- a/veejay-current/veejay-server/libvje/vj-effect.c +++ b/veejay-current/veejay-server/libvje/vj-effect.c @@ -119,7 +119,7 @@ static struct { slicer_malloc,slicer_free,NULL,VJ_VIDEO_EFFECT_SLICER}, { perspective_malloc,perspective_free,NULL,VJ_IMAGE_EFFECT_PERSPECTIVE}, { feathermask_malloc,feathermask_free,NULL,VJ_IMAGE_EFFECT_ALPHAFEATHERMASK }, -{ average_malloc,average_free,NULL,VJ_IMAGE_EFFECT_AVERAGE}, +//{ average_malloc,average_free,NULL,VJ_IMAGE_EFFECT_AVERAGE}, { rgbkey_malloc,rgbkey_free,NULL,VJ_VIDEO_EFFECT_RGBKEY}, { gaussblur_malloc,gaussblur_free,NULL,VJ_IMAGE_EFFECT_CHOKEMATTE}, { meanfilter_malloc,meanfilter_free,NULL,VJ_IMAGE_EFFECT_MEANFILTER}, @@ -450,7 +450,7 @@ void vj_effect_initialize(int width, int height, int full_range, int custom_cfg) vj_effects[VJ_VIDEO_EFFECT_RADIOACTIVE] = radioactivetv_init(width,height); vj_effects[VJ_VIDEO_EFFECT_RIPPLETV] = water_init(width,height); vj_effects[VJ_VIDEO_EFFECT_SLICER] = slicer_init(width,height); - vj_effects[VJ_VIDEO_EFFECT_AVERAGEBLEND] = average_blend_init(width,height); +// vj_effects[VJ_VIDEO_EFFECT_AVERAGEBLEND] = average_blend_init(width,height); vj_effects[VJ_VIDEO_EFFECT_IRIS] = iris_init(width,height); vj_effects[VJ_VIDEO_EFFECT_MIXTOALPHA] = mixtoalpha_init(width,height); vj_effects[VJ_VIDEO_EFFECT_MAGICALPHA] = overlayalphamagic_init(width,height); @@ -506,7 +506,7 @@ void vj_effect_initialize(int width, int height, int full_range, int custom_cfg) vj_effects[VJ_IMAGE_EFFECT_CONTRAST] = contrast_init(width,height); vj_effects[VJ_IMAGE_EFFECT_MOTIONBLUR] = motionblur_init(width,height); vj_effects[VJ_IMAGE_EFFECT_SINOIDS] = sinoids_init(width,height); - vj_effects[VJ_IMAGE_EFFECT_AVERAGE] = average_init(width,height); +// vj_effects[VJ_IMAGE_EFFECT_AVERAGE] = average_init(width,height); vj_effects[VJ_IMAGE_EFFECT_RIPPLE] = ripple_init(width,height); vj_effects[VJ_IMAGE_EFFECT_BATHROOM] = bathroom_init(width,height); vj_effects[VJ_IMAGE_EFFECT_SLICE] = slice_init(width,height);