X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fvmfx%2Ffilter_chroma.c;h=7616856c12ad2ac4f154ad0c97e1544d7e7a095f;hb=7ecd47eeebf87332a4892d167baff959f0f6a11a;hp=d9ab009c0f7f24b34e3e1275f8d86d1d06574c0e;hpb=5ca02525045c7b3f6bb3ac33a903a1c88f8a2ea4;p=melted diff --git a/src/modules/vmfx/filter_chroma.c b/src/modules/vmfx/filter_chroma.c index d9ab009..7616856 100644 --- a/src/modules/vmfx/filter_chroma.c +++ b/src/modules/vmfx/filter_chroma.c @@ -18,7 +18,7 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "filter_chroma.h" +#include #include #include #include @@ -63,7 +63,7 @@ static int filter_get_image( mlt_frame frame, uint8_t **image, mlt_image_format while ( size -- ) { *alpha = alpha_value( *alpha, p, u, v, variance, 0 ); - *alpha ++; + alpha ++; *alpha = alpha_value( *alpha, p, u, v, variance, 1 ); alpha ++; p += 4; @@ -86,7 +86,7 @@ static mlt_frame filter_process( mlt_filter this, mlt_frame frame ) /** Constructor for the filter. */ -mlt_filter filter_chroma_init( char *arg ) +mlt_filter filter_chroma_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg ) { mlt_filter this = mlt_filter_new( ); if ( this != NULL )