Commit 0f96eaaf authored by Rafaël Carré's avatar Rafaël Carré Committed by Jean-Baptiste Kempf

Fix teletext page aspect ratio

It was broken by 29a4015294, which should only have modified text "subpictures"
Closes #13050
Tested-by: default avatarJulian Scheel <julian@jusst.de>

(cherry picked from commit 47f215557953d40ed0d0b38a7834917e9117cc2b)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 07341fa8
......@@ -522,6 +522,7 @@ static subpicture_t *Subpicture( decoder_t *p_dec, video_format_t *p_fmt,
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;
fmt.i_sar_num = fmt.i_sar_den = 0; /* let the vout set the correct AR */
}
fmt.i_x_offset = fmt.i_y_offset = 0;
......
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