From d9404934027fee5f526cf279928baf157b0e2300 Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Wed, 12 Apr 2006 07:53:15 +0000 Subject: [PATCH] + Meta override for field order misreporting/errors in encoders git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@905 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/core/filter_resize.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/modules/core/filter_resize.c b/src/modules/core/filter_resize.c index c82423a..81e850d 100644 --- a/src/modules/core/filter_resize.c +++ b/src/modules/core/filter_resize.c @@ -110,7 +110,7 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format * char *op = mlt_properties_get( MLT_FILTER_PROPERTIES( filter ), "scale" ); // Correct field order if needed - if ( mlt_properties_get_int( properties, "top_field_first" ) == 1 ) + if ( mlt_properties_get_int( properties, "top_field_first" ) == 1 || mlt_properties_get_int( properties, "meta.top_field_first" ) == 1 ) { // Get the input image, width and height int size; -- 1.7.4.4