]> git.sesse.net Git - mlt/commitdiff
Fix regression with ladspa metadata.
authorTill Theato <root@ttill.de>
Wed, 10 Aug 2011 02:23:21 +0000 (19:23 -0700)
committerDan Denedy <dan@dennedy.org>
Wed, 10 Aug 2011 02:23:21 +0000 (19:23 -0700)
src/modules/jackrack/factory.c

index 3958f7fba2064efb3f6678071560faa5aadbdec3..0c18642abc62ad23b84429e8946d0f4ecf2a412d 100644 (file)
@@ -43,7 +43,7 @@ static mlt_properties metadata( mlt_service_type type, const char *id, char *dat
 {
        char file[ PATH_MAX ];
        snprintf( file, PATH_MAX, "%s/jackrack/%s",
-                         mlt_environment( "MLT_DATA" ), strncmp( id, "ladspa.", 7 ) ? data : "ladspa" );
+                         mlt_environment( "MLT_DATA" ), strncmp( id, "ladspa.", 7 ) ? data : "filter_ladspa.yml" );
        mlt_properties result = mlt_properties_parse_yaml( file );
 
 #ifdef GPL