diff --git a/veejay-current/veejay-server/libvje/effects/common.c b/veejay-current/veejay-server/libvje/effects/common.c index 4b8aa53d..0b36362f 100644 --- a/veejay-current/veejay-server/libvje/effects/common.c +++ b/veejay-current/veejay-server/libvje/effects/common.c @@ -1508,7 +1508,6 @@ void binarify_1src( uint8_t *dst, uint8_t *src, uint8_t threshold,int reverse, i void binarify( uint8_t *bm, uint8_t *bg, uint8_t *src,int threshold,int reverse, const int len ) { - int i; if(!reverse) { vje_diff_plane( bg, src, bm, threshold,len ); diff --git a/veejay-current/veejay-server/libvje/effects/dither.c b/veejay-current/veejay-server/libvje/effects/dither.c index e5eca6b8..9bb925a8 100644 --- a/veejay-current/veejay-server/libvje/effects/dither.c +++ b/veejay-current/veejay-server/libvje/effects/dither.c @@ -47,7 +47,7 @@ vj_effect *dither_init(int w, int h) return ve; } -static last_size = 0; +static int last_size = 0; void dither_apply(VJFrame *frame, int width, int height, int size, int random_on) { long int w_, h_; diff --git a/veejay-current/veejay-server/libvje/vj-effect.c b/veejay-current/veejay-server/libvje/vj-effect.c index 8d39d893..68a8b26f 100644 --- a/veejay-current/veejay-server/libvje/vj-effect.c +++ b/veejay-current/veejay-server/libvje/vj-effect.c @@ -492,9 +492,6 @@ void vj_effect_deactivate_all() void vj_effect_initialize(int width, int height, int full_range) { - int i = VJ_VIDEO_COUNT; - int k; - if( full_range ) { set_pixel_range( 255, 255,0,0 );