From 5941e41209b87a8ed26f273f170abbd484113938 Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Mon, 29 Aug 2005 07:56:41 +0000 Subject: [PATCH] + Correction to the disabled case (should be disable-motion_est and plugins should not be registered) git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@813 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/motion_est/configure | 13 ++++++------- 1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/modules/motion_est/configure b/src/modules/motion_est/configure index 896908c..24f0b9e 100755 --- a/src/modules/motion_est/configure +++ b/src/modules/motion_est/configure @@ -3,18 +3,17 @@ if [ "$help" != "1" ] then +if [ "$motionest" = "false" ] +then + touch ../disable-motion_est + echo "- motion estimation components disabled. Add --enable-motion-est to enable." +else cat << EOF >> ../filters.dat motion_est libmltmotion_est.so vismv libmltmotion_est.so crop_detect libmltmotion_est.so autotrack_rectangle libmltmotion_est.so EOF - - if [ "$motionest" = "false" ] - then - touch ../disable-motion-est - echo "- motion estimation components disabled. Add --enable-motion-est to enable." - fi - +fi fi -- 1.7.4.4