X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2Ffilter_resize.c;h=dab7fdfc04d0141f91dbe017ecf2f60c304a820b;hb=885cb897cfb90465e61c39c1c266891b7e499055;hp=1ebb7419b5b8b0c317b2b605587fb8692138cf46;hpb=e4c9ccbcef39cadaccbad655bc6e36e825bf3dde;p=melted diff --git a/src/modules/core/filter_resize.c b/src/modules/core/filter_resize.c index 1ebb741..dab7fdf 100644 --- a/src/modules/core/filter_resize.c +++ b/src/modules/core/filter_resize.c @@ -22,6 +22,7 @@ #include +#include #include #include @@ -33,6 +34,10 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format * int owidth = *width; int oheight = *height; mlt_frame_get_image( this, image, format, &owidth, &oheight, 0 ); + if ( *width == 0 ) + *width = 720; + if ( *height == 0 ) + *height = 576; if ( !strcmp( mlt_properties_get( mlt_frame_properties( this ), "resize.scale" ), "affine" ) ) *image = mlt_frame_rescale_yuv422( this, *width, *height ); else