From 20bc3a5c2dd597407af2b4f1f4c4ebd75186e35e Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Fri, 23 Sep 2005 06:45:24 +0000 Subject: [PATCH 1/1] + Indicator for missing media replacement in case pango doesn't exist git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@829 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/westley/producer_westley.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/modules/westley/producer_westley.c b/src/modules/westley/producer_westley.c index 4921e78..c9fe9bf 100644 --- a/src/modules/westley/producer_westley.c +++ b/src/modules/westley/producer_westley.c @@ -473,6 +473,9 @@ static void on_end_producer( deserialise_context context, const xmlChar *name ) if ( producer == NULL ) producer = MLT_SERVICE( mlt_factory_producer( "fezzik", "+INVALID.txt" ) ); + if ( producer == NULL ) + producer = MLT_SERVICE( mlt_factory_producer( "fezzik", "colour:red" ) ); + // Track this producer track_service( context->destructors, producer, (mlt_destructor) mlt_producer_close ); -- 1.7.4.4