From bd9b3ea690d8dc803419a9b4a427a9c9d4e97889 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Wed, 18 Feb 2004 17:41:30 +0000 Subject: [PATCH] create consumer_progressive property on frame git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@153 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/framework/mlt_consumer.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/framework/mlt_consumer.c b/src/framework/mlt_consumer.c index 44fc184..7165ae9 100644 --- a/src/framework/mlt_consumer.c +++ b/src/framework/mlt_consumer.c @@ -166,6 +166,7 @@ mlt_frame mlt_consumer_get_frame( mlt_consumer this ) // TODO: Aspect ratio and other jiggery pokery mlt_properties_set_double( frame_properties, "consumer_aspect_ratio", mlt_properties_get_double( properties, "aspect_ratio" ) ); + mlt_properties_set_int( frame_properties, "consumer_progressive", mlt_properties_get_int( properties, "progressive" ) ); } -- 1.7.4.4