]> git.sesse.net Git - mlt/blobdiff - src/modules/qimage/qimage_wrapper.cpp
remove a couple more remnants of legacy real_width and _height
[mlt] / src / modules / qimage / qimage_wrapper.cpp
index 5345ab2e22fdfa0ea8f537361ddb23f7d7978c75..98c7f97bfd0bfd02c3226c5e5d9fcd5fb7a304d7 100644 (file)
@@ -194,8 +194,8 @@ int refresh_qimage( producer_qimage self, mlt_frame frame )
                        self->current_height = qimage->height( );
 
                        mlt_events_block( producer_props, NULL );
-                       mlt_properties_set_int( producer_props, "_real_width", self->current_width );
-                       mlt_properties_set_int( producer_props, "_real_height", self->current_height );
+                       mlt_properties_set_int( producer_props, "meta.media.width", self->current_width );
+                       mlt_properties_set_int( producer_props, "meta.media.height", self->current_height );
                        mlt_properties_set_int( producer_props, "_disable_exif", disable_exif );
                        mlt_events_unblock( producer_props, NULL );
                }
@@ -209,8 +209,6 @@ int refresh_qimage( producer_qimage self, mlt_frame frame )
        // Set width/height of frame
        mlt_properties_set_int( properties, "width", self->current_width );
        mlt_properties_set_int( properties, "height", self->current_height );
-       mlt_properties_set_int( properties, "real_width", mlt_properties_get_int( producer_props, "_real_width" ) );
-       mlt_properties_set_int( properties, "real_height", mlt_properties_get_int( producer_props, "_real_height" ) );
 
        return image_idx;
 }