]> git.sesse.net Git - mlt/commitdiff
Fix color producer not setting real_wdith and _height.
authorDan Dennedy <dan@dennedy.org>
Sun, 18 Apr 2010 02:22:45 +0000 (19:22 -0700)
committerDan Dennedy <dan@dennedy.org>
Sun, 18 Apr 2010 02:22:45 +0000 (19:22 -0700)
src/modules/core/producer_colour.c

index ad2a5ae092aca3a1c1da95e27e6f07a1ba241d7e..742348c223cc6189e8ea87c8b373effc3925f85e 100644 (file)
@@ -221,6 +221,9 @@ static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_form
        mlt_properties_set_data( properties, "image", *buffer, size, mlt_pool_release, NULL );
        mlt_properties_set_data( properties, "alpha", alpha, alpha_size, mlt_pool_release, NULL );
        mlt_properties_set_double( properties, "aspect_ratio", mlt_properties_get_double( producer_props, "aspect_ratio" ) );
+       mlt_properties_set_int( properties, "real_width", *width );
+       mlt_properties_set_int( properties, "real_height", *height );
+
 
        return 0;
 }