Commit a7958769 authored by Laurent Aimar's avatar Laurent Aimar Committed by Jean-Baptiste Kempf

Fixed zvbi subpictures AR.

(cherry picked from commit 4343ec78)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 835a5c00
......@@ -462,18 +462,15 @@ static subpicture_t *Subpicture( decoder_t *p_dec, video_format_t *p_fmt,
}
memset( &fmt, 0, sizeof(video_format_t) );
fmt.i_chroma = b_text ? VLC_CODEC_TEXT :
VLC_CODEC_RGBA;
fmt.i_chroma = b_text ? VLC_CODEC_TEXT : VLC_CODEC_RGBA;
fmt.i_sar_num = 0;
fmt.i_sar_den = 1;
if( b_text )
{
fmt.i_bits_per_pixel = 0;
fmt.i_sar_num = 0;
fmt.i_sar_den = 0;
}
else
{
fmt.i_sar_num = 1;
fmt.i_sar_den = 1;
fmt.i_width = fmt.i_visible_width = i_columns * 12;
fmt.i_height = fmt.i_visible_height = i_rows * 10;
fmt.i_bits_per_pixel = 32;
......
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