]> git.sesse.net Git - mlt/blobdiff - src/modules/jackrack/factory.c
cleanup and reduce code in jackrack support code and add new jack-less filter_ladspa.
[mlt] / src / modules / jackrack / factory.c
index c5c9a964d06514d4a8eebb21ea5516fbbe570f3d..a5fb16e952c1bd321855182fef146bf23dae30c1 100644 (file)
@@ -21,6 +21,7 @@
 #include <string.h>
 
 #include "filter_jackrack.h"
+#include "filter_ladspa.h"
 
 void *mlt_create_producer( char *id, void *arg )
 {
@@ -31,6 +32,8 @@ void *mlt_create_filter( char *id, void *arg )
 {
        if ( !strcmp( id, "jackrack" ) )
                return filter_jackrack_init( arg );
+       else if ( !strcmp( id, "ladspa" ) )
+               return filter_ladspa_init( arg );
        return NULL;
 }