]> git.sesse.net Git - mlt/blobdiff - src/modules/core/factory.c
added filter_channelcopy.
[mlt] / src / modules / core / factory.c
index 1d037a0685f75237a381b273218080cd4a266bea..43f45913a212e802f75b6d546946e45a8a693e2d 100644 (file)
@@ -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;
 }
-