]> git.sesse.net Git - mlt/blobdiff - src/modules/plus/filter_charcoal.c
Massive refactoring of image conversion.
[mlt] / src / modules / plus / filter_charcoal.c
index e99981a56add6ddeb096bb95e24eb8574224f39b..3c7c22cd74f9baca6d291ac401939323b87e84b9 100644 (file)
@@ -72,10 +72,11 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *
        mlt_filter filter = mlt_frame_pop_service( this );
 
        // Get the image
+       *format = mlt_image_yuv422;
        int error = mlt_frame_get_image( this, image, format, width, height, 1 );
 
        // Only process if we have no error and a valid colour space
-       if ( error == 0 && *format == mlt_image_yuv422 )
+       if ( error == 0 )
        {
                // Get the charcoal scatter value
                int x_scatter = mlt_properties_get_double( MLT_FILTER_PROPERTIES( filter ), "x_scatter" );