]> git.sesse.net Git - mlt/commitdiff
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 bfbc9f88815136f0683cf9147757e0aa512cf20a..0c00bf846deea9f6f005cf9f9b279dbd73ab62eb 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 561f3bddc6f5979ab5a23740f627cf5788882011..70339bb23560bc3542682f1e119b2d5730cc014f 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 518ae8c1d213446614f8b9e2bbb8f179ec8fef99..313408f46dddf82c0971d0d31315ae8c21eb7c1b 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 );