From 6857b65acc5bf6d1dcec03e9d7d3436e5712aa03 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Fri, 30 Mar 2007 07:02:23 +0000 Subject: [PATCH] Change registration of vmfx/mono to threshold to disambiguate with core/mono. git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@959 d19143bc-622f-0410-bfdd-b5b2a6649095 --- ChangeLog | 2 ++ src/modules/vmfx/configure | 2 +- src/modules/vmfx/factory.c | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index bfbc9f8..0c00bf8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ $Id$ 2007-03-29 Dan Dennedy Cleanup license declarations and remove dv1394d references. + Change registration of vmfx/mono to threshold to disambiguate with + core/mono. 2007-03-27 Dan Dennedy Fix ffmpeg swscale code enabled with mmx flags and fix --enable-swscale diff --git a/src/modules/vmfx/configure b/src/modules/vmfx/configure index 561f3bd..70339bb 100755 --- a/src/modules/vmfx/configure +++ b/src/modules/vmfx/configure @@ -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 diff --git a/src/modules/vmfx/factory.c b/src/modules/vmfx/factory.c index 518ae8c..313408f 100644 --- a/src/modules/vmfx/factory.c +++ b/src/modules/vmfx/factory.c @@ -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 ); -- 1.7.4.4