Lines Matching refs:iheight

29 static uint8_t *resize_alpha( uint8_t *input, int owidth, int oheight, int iwidth, int iheight, uin…  in resize_alpha()  argument
33 if ( input != NULL && ( iwidth != owidth || iheight != oheight ) && ( owidth > 6 && oheight > 6 ) ) in resize_alpha()
37 int offset_y = ( oheight - iheight ) / 2; in resize_alpha()
49 while ( iheight -- ) in resize_alpha()
65 …int8_t *output, int owidth, int oheight, uint8_t *input, int iwidth, int iheight, int bpp, mlt_ima… in resize_image() argument
71 int offset_y = ( oheight - iheight ) / 2; in resize_image()
78 …if ( output == NULL || input == NULL || ( owidth <= 6 || oheight <= 6 || iwidth <= 6 || iheight <=… in resize_image()
82 else if ( iwidth == owidth && iheight == oheight ) in resize_image()
84 memcpy( output, input, iheight * istride ); in resize_image()
116 while ( iheight -- ) in resize_image()
147 int iheight = mlt_properties_get_int( properties, "height" ); in frame_resize_image() local
150 if ( iwidth < owidth || iheight < oheight ) in frame_resize_image()
157 resize_image( output, owidth, oheight, input, iwidth, iheight, bpp, format, alpha_value ); in frame_resize_image()
163 if ( format != mlt_image_rgba && alpha && alpha_size >= iwidth * iheight ) in frame_resize_image()
165 alpha = resize_alpha( alpha, owidth, oheight, iwidth, iheight, alpha_value ); in frame_resize_image()
271 int iheight = mlt_properties_get_int( properties, "height" ); in filter_get_image() local
272 if ( iwidth < owidth || iheight < oheight ) in filter_get_image()