]> git.sesse.net Git - mlt/commitdiff
+ Meta override for field order misreporting/errors in encoders
authorlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Wed, 12 Apr 2006 07:53:15 +0000 (07:53 +0000)
committerlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Wed, 12 Apr 2006 07:53:15 +0000 (07:53 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@905 d19143bc-622f-0410-bfdd-b5b2a6649095

src/modules/core/filter_resize.c

index c82423aa11cdd3cfc22d3f7502bc56d766c59344..81e850d5d73741cce78520eb874a28e626b04caa 100644 (file)
@@ -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;