]> git.sesse.net Git - mlt/commitdiff
Move rotoscoping filter into plusgpl module.
authorDan Dennedy <dan@dennedy.org>
Sun, 16 Feb 2014 19:20:08 +0000 (11:20 -0800)
committerDan Dennedy <dan@dennedy.org>
Sun, 16 Feb 2014 19:21:34 +0000 (11:21 -0800)
src/modules/plusgpl/Makefile
src/modules/plusgpl/cJSON.c [moved from src/modules/rotoscoping/cJSON.c with 100% similarity]
src/modules/plusgpl/cJSON.h [moved from src/modules/rotoscoping/cJSON.h with 100% similarity]
src/modules/plusgpl/factory.c
src/modules/plusgpl/filter_rotoscoping.c [moved from src/modules/rotoscoping/filter_rotoscoping.c with 100% similarity]
src/modules/plusgpl/filter_rotoscoping.yml [moved from src/modules/rotoscoping/filter_rotoscoping.yml with 100% similarity]
src/modules/rotoscoping/Makefile [deleted file]
src/modules/rotoscoping/factory.c [deleted file]
src/modules/rotoscoping/gpl [deleted file]

index b9f992371560711e7765e66bea409156d9a30b07..c204ad3d378b68846c006f4cc1392d29646d5faf 100644 (file)
@@ -7,10 +7,12 @@ include ../../../config.mak
 TARGET = ../libmltplusgpl$(LIBSUF)
 
 OBJS = factory.o \
-          filter_telecide.o \
           filter_burn.o \
           image.o \
-          utils.o
+          utils.o \
+          filter_rotoscoping.o \
+          cJSON.o \
+          filter_telecide.o
 
 SRCS := $(OBJS:.o=.c)
 
@@ -30,6 +32,8 @@ clean:
 
 install: all
        install -m 755 $(TARGET) "$(DESTDIR)$(moduledir)"
+       install -d $(DESTDIR)$(mltdatadir)/plusgpl
+       install -m 644 *.yml "$(DESTDIR)$(mltdatadir)/plusgpl"
 
 ifneq ($(wildcard .depend),)
 include .depend
index 9a89e3047391a8b4318ba6561263245a6aaac7a9..dddc117cd1ef20e43e26d1c1c015ed681f8467d1 100644 (file)
@@ -22,6 +22,7 @@
 #include <limits.h>
 
 extern mlt_filter filter_burn_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
+extern mlt_filter filter_rotoscoping_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 extern mlt_filter filter_telecide_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg );
 
 static mlt_properties metadata( mlt_service_type type, const char *id, void *data )
@@ -35,8 +36,10 @@ MLT_REPOSITORY
 {
        MLT_REGISTER( filter_type, "BurningTV", filter_burn_init );
        MLT_REGISTER( filter_type, "burningtv", filter_burn_init );
+       MLT_REGISTER( filter_type, "rotoscoping", filter_rotoscoping_init );
        MLT_REGISTER( filter_type, "telecide", filter_telecide_init );
 
        MLT_REGISTER_METADATA( filter_type, "BurningTV", metadata, "filter_burningtv.yml" );
        MLT_REGISTER_METADATA( filter_type, "burningtv", metadata, "filter_burningtv.yml" );
+       MLT_REGISTER_METADATA( filter_type, "rotoscoping", metadata, "filter_rotoscoping.yml" );
 }
diff --git a/src/modules/rotoscoping/Makefile b/src/modules/rotoscoping/Makefile
deleted file mode 100644 (file)
index f3f2dec..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-CFLAGS += -I../..
-
-LDFLAGS += -L../../framework -lmlt -lm
-
-include ../../../config.mak
-
-TARGET = ../libmltrotoscoping$(LIBSUF)
-
-OBJS = factory.o \
-          filter_rotoscoping.o \
-          cJSON.o
-
-
-LDFLAGS += -lm
-
-SRCS := $(OBJS:.o=.c)
-
-all:   $(TARGET)
-
-$(TARGET): $(OBJS)
-               $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS)
-
-depend:        $(SRCS)
-               $(CC) -MM $(CFLAGS) $^ 1>.depend
-
-distclean:     clean
-               rm -f .depend
-
-clean: 
-               rm -f $(OBJS) $(TARGET)
-
-install: all
-       install -m 755 $(TARGET) "$(DESTDIR)$(moduledir)"
-       install -d $(DESTDIR)$(mltdatadir)/rotoscoping
-       install -m 644 filter_rotoscoping.yml "$(DESTDIR)$(mltdatadir)/rotoscoping"
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif
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 );
-}
diff --git a/src/modules/rotoscoping/gpl b/src/modules/rotoscoping/gpl
deleted file mode 100644 (file)
index e69de29..0000000