Commit 04b0143d authored by Rafaël Carré's avatar Rafaël Carré

picture_Setup: set visible dimensions correctly

parent b07ed16e
...@@ -235,7 +235,7 @@ VLC_API int picture_Export( vlc_object_t *p_obj, block_t **pp_image, video_forma ...@@ -235,7 +235,7 @@ VLC_API int picture_Export( vlc_object_t *p_obj, block_t **pp_image, video_forma
* *
* It can be useful to get the properties of planes. * It can be useful to get the properties of planes.
*/ */
VLC_API int picture_Setup( picture_t *, vlc_fourcc_t i_chroma, int i_width, int i_height, int i_sar_num, int i_sar_den ); VLC_API int picture_Setup( picture_t *, video_format_t * );
/** /**
......
...@@ -348,12 +348,7 @@ void RenderCursor( demux_t *p_demux, int i_x, int i_y, ...@@ -348,12 +348,7 @@ void RenderCursor( demux_t *p_demux, int i_x, int i_y,
{ {
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *p_sys = p_demux->p_sys;
if( !p_sys->dst.i_planes ) if( !p_sys->dst.i_planes )
picture_Setup( &p_sys->dst, picture_Setup( &p_sys->dst, &p_sys->fmt.video );
p_sys->fmt.video.i_chroma,
p_sys->fmt.video.i_width,
p_sys->fmt.video.i_height,
p_sys->fmt.video.i_sar_num,
p_sys->fmt.video.i_sar_den );
if( !p_sys->p_blend ) if( !p_sys->p_blend )
{ {
p_sys->p_blend = vlc_object_create( p_demux, sizeof(filter_t) ); p_sys->p_blend = vlc_object_create( p_demux, sizeof(filter_t) );
......
...@@ -182,9 +182,8 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -182,9 +182,8 @@ static int OpenDecoder( vlc_object_t *p_this )
p_dec->fmt_in.video.i_sar_num, p_dec->fmt_in.video.i_sar_num,
p_dec->fmt_in.video.i_sar_den ); p_dec->fmt_in.video.i_sar_den );
picture_t picture; picture_t picture;
picture_Setup( &picture, p_dec->fmt_out.i_codec, picture_Setup( &picture, &p_dec->fmt_out );
p_dec->fmt_in.video.i_width,
p_dec->fmt_in.video.i_height, 0, 1 );
p_sys->i_raw_size = 0; p_sys->i_raw_size = 0;
for( int i = 0; i < picture.i_planes; i++ ) for( int i = 0; i < picture.i_planes; i++ )
{ {
...@@ -193,12 +192,6 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -193,12 +192,6 @@ static int OpenDecoder( vlc_object_t *p_this )
p_sys->planes[i] = picture.p[i]; p_sys->planes[i] = picture.p[i];
} }
if( !p_dec->fmt_in.video.i_sar_num || !p_dec->fmt_in.video.i_sar_den )
{
p_dec->fmt_out.video.i_sar_num = 1;
p_dec->fmt_out.video.i_sar_den = 1;
}
/* Set callbacks */ /* Set callbacks */
p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **)) p_dec->pf_decode_video = (picture_t *(*)(decoder_t *, block_t **))
DecodeBlock; DecodeBlock;
...@@ -361,9 +354,7 @@ static block_t *SendFrame( decoder_t *p_dec, block_t *p_block ) ...@@ -361,9 +354,7 @@ static block_t *SendFrame( decoder_t *p_dec, block_t *p_block )
int i, j; int i, j;
/* Fill in picture_t fields */ /* Fill in picture_t fields */
picture_Setup( &pic, p_dec->fmt_out.i_codec, picture_Setup( &pic, &p_dec->fmt_out );
p_dec->fmt_out.video.i_width,
p_dec->fmt_out.video.i_height, 0, 1 );
if( !pic.i_planes ) if( !pic.i_planes )
{ {
......
...@@ -128,8 +128,7 @@ static int LCM( int a, int b ) ...@@ -128,8 +128,7 @@ static int LCM( int a, int b )
return a * b / GCD( a, b ); return a * b / GCD( a, b );
} }
int picture_Setup( picture_t *p_picture, vlc_fourcc_t i_chroma, int picture_Setup( picture_t *p_picture, video_format_t *fmt )
int i_width, int i_height, int i_sar_num, int i_sar_den )
{ {
/* Store default values */ /* Store default values */
p_picture->i_planes = 0; p_picture->i_planes = 0;
...@@ -146,9 +145,9 @@ int picture_Setup( picture_t *p_picture, vlc_fourcc_t i_chroma, ...@@ -146,9 +145,9 @@ int picture_Setup( picture_t *p_picture, vlc_fourcc_t i_chroma,
p_picture->i_nb_fields = 2; p_picture->i_nb_fields = 2;
video_format_Setup( &p_picture->format, i_chroma, i_width, i_height, video_format_Setup( &p_picture->format, fmt->i_chroma, fmt->i_width, fmt->i_height,
i_width, i_height, fmt->i_visible_width, fmt->i_visible_height,
i_sar_num, i_sar_den ); fmt->i_sar_num, fmt->i_sar_den );
const vlc_chroma_description_t *p_dsc = const vlc_chroma_description_t *p_dsc =
vlc_fourcc_GetChromaDescription( p_picture->format.i_chroma ); vlc_fourcc_GetChromaDescription( p_picture->format.i_chroma );
...@@ -173,17 +172,17 @@ int picture_Setup( picture_t *p_picture, vlc_fourcc_t i_chroma, ...@@ -173,17 +172,17 @@ int picture_Setup( picture_t *p_picture, vlc_fourcc_t i_chroma,
} }
i_modulo_h = LCM( i_modulo_h, 32 ); i_modulo_h = LCM( i_modulo_h, 32 );
const int i_width_aligned = ( i_width + i_modulo_w - 1 ) / i_modulo_w * i_modulo_w; const int i_width_aligned = ( fmt->i_width + i_modulo_w - 1 ) / i_modulo_w * i_modulo_w;
const int i_height_aligned = ( i_height + i_modulo_h - 1 ) / i_modulo_h * i_modulo_h; const int i_height_aligned = ( fmt->i_height + i_modulo_h - 1 ) / i_modulo_h * i_modulo_h;
const int i_height_extra = 2 * i_ratio_h; /* This one is a hack for some ASM functions */ const int i_height_extra = 2 * i_ratio_h; /* This one is a hack for some ASM functions */
for( unsigned i = 0; i < p_dsc->plane_count; i++ ) for( unsigned i = 0; i < p_dsc->plane_count; i++ )
{ {
plane_t *p = &p_picture->p[i]; plane_t *p = &p_picture->p[i];
p->i_lines = (i_height_aligned + i_height_extra ) * p_dsc->p[i].h.num / p_dsc->p[i].h.den; p->i_lines = (i_height_aligned + i_height_extra ) * p_dsc->p[i].h.num / p_dsc->p[i].h.den;
p->i_visible_lines = i_height * p_dsc->p[i].h.num / p_dsc->p[i].h.den; p->i_visible_lines = fmt->i_visible_height * p_dsc->p[i].h.num / p_dsc->p[i].h.den;
p->i_pitch = i_width_aligned * p_dsc->p[i].w.num / p_dsc->p[i].w.den * p_dsc->pixel_size; p->i_pitch = i_width_aligned * p_dsc->p[i].w.num / p_dsc->p[i].w.den * p_dsc->pixel_size;
p->i_visible_pitch = i_width * p_dsc->p[i].w.num / p_dsc->p[i].w.den * p_dsc->pixel_size; p->i_visible_pitch = fmt->i_visible_width * p_dsc->p[i].w.num / p_dsc->p[i].w.den * p_dsc->pixel_size;
p->i_pixel_pitch = p_dsc->pixel_size; p->i_pixel_pitch = p_dsc->pixel_size;
assert( (p->i_pitch % 16) == 0 ); assert( (p->i_pitch % 16) == 0 );
...@@ -217,8 +216,7 @@ picture_t *picture_NewFromResource( const video_format_t *p_fmt, const picture_r ...@@ -217,8 +216,7 @@ picture_t *picture_NewFromResource( const video_format_t *p_fmt, const picture_r
return NULL; return NULL;
/* Make sure the real dimensions are a multiple of 16 */ /* Make sure the real dimensions are a multiple of 16 */
if( picture_Setup( p_picture, fmt.i_chroma, fmt.i_width, fmt.i_height, if( picture_Setup( p_picture, &fmt ) )
fmt.i_sar_num, fmt.i_sar_den ) )
{ {
free( p_picture ); free( p_picture );
return NULL; return NULL;
......
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