From 5fdac4773b651cd5b69b9cf1fb4581f41e37f3b7 Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Fri, 31 Dec 2004 08:35:21 +0000 Subject: [PATCH] Extension to mini fezzik for obscures on cuts git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@591 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/framework/mlt_producer.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/framework/mlt_producer.c b/src/framework/mlt_producer.c index c465181..db69aa6 100644 --- a/src/framework/mlt_producer.c +++ b/src/framework/mlt_producer.c @@ -208,6 +208,10 @@ mlt_producer mlt_producer_cut( mlt_producer this, int in, int out ) mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "_fezzik", 1 ); mlt_producer_attach( result, filter ); mlt_filter_close( filter ); + filter = mlt_factory_filter( "data_show", "%obscure.properties" ); + mlt_properties_set_int( MLT_FILTER_PROPERTIES( filter ), "_fezzik", 1 ); + mlt_producer_attach( result, filter ); + mlt_filter_close( filter ); mlt_events_unblock( MLT_PRODUCER_PROPERTIES( result ), MLT_PRODUCER_PROPERTIES( result ) ); return result; -- 1.7.4.4