X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_consumer.c;h=8d79fc7d6eb6c7231d739c308d2ada68201b8690;hb=00db7ed91dfa61f9e144b6d5548350a5954deb61;hp=44fc184f4c7a528767db3701a061241f504cd1fa;hpb=8a3795b090723264c973d274eedc28da480e76fd;p=melted diff --git a/src/framework/mlt_consumer.c b/src/framework/mlt_consumer.c index 44fc184..8d79fc7 100644 --- a/src/framework/mlt_consumer.c +++ b/src/framework/mlt_consumer.c @@ -164,8 +164,10 @@ mlt_frame mlt_consumer_get_frame( mlt_consumer this ) if ( mlt_properties_get( properties, "rescale" ) != NULL ) mlt_properties_set( frame_properties, "rescale.interp", mlt_properties_get( properties, "rescale" ) ); - // TODO: Aspect ratio and other jiggery pokery + // 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" ) ); + mlt_properties_set_int( frame_properties, "consumer_deinterlace", mlt_properties_get_int( properties, "deinterlace" ) ); }