]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_frame.c
hold modifications and test card env var
[mlt] / src / framework / mlt_frame.c
index 0924cbbc780e9e0ee155c2c90cd0bc33885aa98b..1b147a6926ed111b2b12a59e94ba36f42534895d 100644 (file)
@@ -219,13 +219,14 @@ int mlt_frame_get_image( mlt_frame this, uint8_t **buffer, mlt_image_format *for
                if ( test_frame != NULL )
                {
                        mlt_properties test_properties = mlt_frame_properties( test_frame );
-                       mlt_properties_set_double( test_properties, "consumer_aspect_ratio", mlt_properties_get_double( properties, "consumer_aspect_ratio" ) );
-                       mlt_properties_set( test_properties, "rescale.interp", "nearest" );
+                       mlt_properties_pass( properties, test_properties, "" );
                        mlt_frame_get_image( test_frame, buffer, format, width, height, writable );
                        mlt_properties_set_data( properties, "test_card_frame", test_frame, 0, ( mlt_destructor )mlt_frame_close, NULL );
                        mlt_properties_set_data( properties, "image", *buffer, *width * *height * 2, NULL, NULL );
                        mlt_properties_set_int( properties, "width", *width );
                        mlt_properties_set_int( properties, "height", *height );
+                       mlt_properties_set( properties, "rescale.interps", "none" );
+                       mlt_properties_set( properties, "scale", "off" );
                }
                else
                {