X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2Ffactory.c;h=43f45913a212e802f75b6d546946e45a8a693e2d;hb=0d368e962076c3b96040b86cd5d87a1bbfe0a594;hp=1d037a0685f75237a381b273218080cd4a266bea;hpb=2e4eb8e703760fb408f86152451aeaf425f6a579;p=melted diff --git a/src/modules/core/factory.c b/src/modules/core/factory.c index 1d037a0..43f4591 100644 --- a/src/modules/core/factory.c +++ b/src/modules/core/factory.c @@ -22,6 +22,7 @@ #include "producer_ppm.h" #include "filter_brightness.h" +#include "filter_channelcopy.h" #include "filter_gamma.h" #include "filter_luma.h" #include "filter_greyscale.h" @@ -49,6 +50,8 @@ void *mlt_create_filter( char *id, void *arg ) { if ( !strcmp( id, "brightness" ) ) return filter_brightness_init( arg ); + if ( !strcmp( id, "channelcopy" ) ) + return filter_channelcopy_init( arg ); if ( !strcmp( id, "gamma" ) ) return filter_gamma_init( arg ); if ( !strcmp( id, "greyscale" ) ) @@ -85,4 +88,3 @@ void *mlt_create_consumer( char *id, void *arg ) { return NULL; } -