Change registration of vmfx/mono to threshold to disambiguate with core/mono.
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 30 Mar 2007 07:02:23 +0000 (07:02 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 30 Mar 2007 07:02:23 +0000 (07:02 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@959 d19143bc-622f-0410-bfdd-b5b2a6649095

ChangeLog
src/modules/vmfx/configure
src/modules/vmfx/factory.c

index bfbc9f8..0c00bf8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@ $Id$
 
 2007-03-29 Dan Dennedy <dan@dennedy.org>
        Cleanup license declarations and remove dv1394d references.
+       Change registration of vmfx/mono to threshold to disambiguate with 
+       core/mono.
 
 2007-03-27 Dan Dennedy <dan@dennedy.org>
        Fix ffmpeg swscale code enabled with mmx flags and fix --enable-swscale
index 561f3bd..70339bb 100755 (executable)
@@ -10,7 +10,7 @@ EOF
 cat << EOF >> ../filters.dat
 chroma                 libmltvmfx$LIBSUF
 chroma_hold            libmltvmfx$LIBSUF
-mono                   libmltvmfx$LIBSUF
+threshold              libmltvmfx$LIBSUF
 shape                  libmltvmfx$LIBSUF
 EOF
 
index 518ae8c..313408f 100644 (file)
@@ -39,7 +39,7 @@ void *mlt_create_filter( char *id, void *arg )
                return filter_chroma_init( arg );
        if ( !strcmp( id, "chroma_hold" ) )
                return filter_chroma_hold_init( arg );
-       if ( !strcmp( id, "mono" ) )
+       if ( !strcmp( id, "threshold" ) )
                return filter_mono_init( arg );
        if ( !strcmp( id, "shape" ) )
                return filter_shape_init( arg );