Commit da065dee authored by Antoine Cellerier's avatar Antoine Cellerier

scale.c: implement RGBA scaling.

vout_subpictures.c: enable scaling for RGBA subpictures.
parent 67e8b0e3
......@@ -66,7 +66,8 @@ static int OpenFilter( vlc_object_t *p_this )
filter_sys_t *p_sys;
if( ( p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','U','V','P') &&
p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','U','V','A') ) ||
p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','U','V','A') &&
p_filter->fmt_in.video.i_chroma != VLC_FOURCC('R','G','B','A') ) ||
p_filter->fmt_in.video.i_chroma != p_filter->fmt_out.video.i_chroma )
{
return VLC_EGENERIC;
......@@ -120,6 +121,9 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
return NULL;
}
if( p_filter->fmt_in.video.i_chroma == VLC_FOURCC('Y','U','V','P') ||
p_filter->fmt_in.video.i_chroma == VLC_FOURCC('Y','U','V','A') )
{
for( i_plane = 0; i_plane < p_pic_dst->i_planes; i_plane++ )
{
uint8_t *p_src = p_pic->p[i_plane].p_pixels;
......@@ -147,6 +151,34 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
}
}
}
}
else /* RGBA */
{
uint8_t *p_src = p_pic->p->p_pixels;
uint8_t *p_dst = p_pic_dst->p->p_pixels;
int i_src_pitch = p_pic->p->i_pitch;
int i_dst_pitch = p_pic_dst->p->i_pitch;
for( i = 0; i < p_pic_dst->p->i_visible_lines; i++ )
{
l = ( p_filter->fmt_in.video.i_height * i +
p_filter->fmt_out.video.i_height / 2 ) /
p_filter->fmt_out.video.i_height;
l = __MIN( (int)p_filter->fmt_in.video.i_height - 1, l );
for( j = 0; j < p_pic_dst->p->i_visible_pitch/4; j++ )
{
k = ( p_filter->fmt_in.video.i_width * j +
p_filter->fmt_out.video.i_width / 2 ) /
p_filter->fmt_out.video.i_width;
k = __MIN( (int)p_filter->fmt_in.video.i_width - 1, k );
*(uint32_t*)(&p_dst[i * i_dst_pitch + 4*j]) =
*(uint32_t*)(&p_src[l * i_src_pitch + 4*k]);
}
}
}
p_pic_dst->date = p_pic->date;
p_pic_dst->b_force = p_pic->b_force;
......
......@@ -673,8 +673,7 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
}
if( (i_scale_width != 1000 || i_scale_height != 1000) &&
p_spu->p_scale && !p_region->p_cache &&
VLC_FOURCC('R','G','B','A') != p_region->fmt.i_chroma /* FIXME */ )
p_spu->p_scale && !p_region->p_cache )
{
picture_t *p_pic;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment