]> git.sesse.net Git - mlt/blobdiff - src/modules/xine/filter_deinterlace.c
replace legacy real_width and _height with meta.media.width and .height
[mlt] / src / modules / xine / filter_deinterlace.c
index e864c80569385df0172a49a821145b856877a575..c028da916b9870baf7599a81e33d03742a1895f9 100644 (file)
@@ -247,7 +247,7 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *
                                uint8_t *new_image = mlt_pool_alloc( image_size );
 
                                deinterlace_yuv( new_image, image, *width * 2, *height, method );
-                               mlt_properties_set_data( properties, "image", new_image, image_size, mlt_pool_release, NULL );
+                               mlt_frame_set_image( this, new_image, image_size, mlt_pool_release );
                                *image = new_image;
                        }
                }