]> git.sesse.net Git - mlt/blobdiff - src/modules/rotoscoping/factory.c
Move rotoscoping filter into plusgpl module.
[mlt] / src / modules / rotoscoping / factory.c
diff --git a/src/modules/rotoscoping/factory.c b/src/modules/rotoscoping/factory.c
deleted file mode 100644 (file)
index 0d6162b..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * factory.c -- the factory method interfaces
- * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
- * Author: Charles Yates <charles.yates@pandora.be>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#include <string.h>
-#include <framework/mlt.h>
-#include <limits.h>
-
-extern mlt_filter filter_rotoscoping_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
-
-static mlt_properties rotoscoping_metadata( mlt_service_type type, const char *id, void *data )
-{
-    char file[ PATH_MAX ];
-    snprintf( file, PATH_MAX, "%s/rotoscoping/filter_%s.yml", mlt_environment( "MLT_DATA" ), id );
-    return mlt_properties_parse_yaml( file );
-}
-
-MLT_REPOSITORY
-{
-        MLT_REGISTER( filter_type, "rotoscoping", filter_rotoscoping_init );
-
-        MLT_REGISTER_METADATA( filter_type, "rotoscoping", rotoscoping_metadata, NULL );
-}