X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fvmfx%2Ffactory.c;h=cd67d5ceba5d6ef836ca93e420bcc2faaeb35df0;hb=052a4094e84db1317d143849bb307a8f3c306bab;hp=b1b809b18e7168d4728458de389eddffbbbf7fe6;hpb=206ff6b48bd54bee6d1ac679c352296f374c7590;p=melted diff --git a/src/modules/vmfx/factory.c b/src/modules/vmfx/factory.c index b1b809b..cd67d5c 100644 --- a/src/modules/vmfx/factory.c +++ b/src/modules/vmfx/factory.c @@ -20,6 +20,7 @@ #include +#include "filter_chroma.h" #include "filter_shape.h" #include "producer_pgm.h" @@ -32,6 +33,8 @@ void *mlt_create_producer( char *id, void *arg ) void *mlt_create_filter( char *id, void *arg ) { + if ( !strcmp( id, "chroma" ) ) + return filter_chroma_init( arg ); if ( !strcmp( id, "shape" ) ) return filter_shape_init( arg ); return NULL;