git-svn-id: svn://code.dyne.org/veejay/trunk@1355 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
Niels Elburg
2010-01-24 21:12:58 +00:00
parent 18f4239eb3
commit e6f03f0742
72 changed files with 2001 additions and 379 deletions

View File

@@ -105,6 +105,9 @@ void vj_effman_apply_image_effect(
noisepencil_apply(frames[0],frameinfo->width,frameinfo->height,
arg[0],arg[1],arg[2],arg[3]);
break;
case VJ_IMAGE_EFFECT_CALI:
cali_apply( vj_effects[entry]->user_data,frames[0], frameinfo->width,frameinfo->height,arg[0], arg[1] );
break;
case VJ_IMAGE_EFFECT_DIFF:
diffimg_apply(frames[0],
frameinfo->width, frameinfo->height, arg[0], arg[1],
@@ -435,6 +438,9 @@ void vj_effman_apply_video_effect( VJFrame **frames, VJFrameInfo *frameinfo ,vjp
opacity_apply(frames[0], frames[1], frameinfo->width,
frameinfo->height, arg[0]);
break;
case VJ_VIDEO_EFFECT_IRIS:
iris_apply( frames[0],frames[1], frameinfo->width,frameinfo->height,arg[0],arg[1]);
break;
case VJ_VIDEO_EFFECT_THRESHOLDSMOOTH:
opacitythreshold_apply(frames[0], frames[1], frameinfo->width,
frameinfo->height, arg[0], arg[1],arg[2]);