Commit 4b961ac4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

ASCII Art: fix invalid video format, crash in scaling

(cherry picked from commit 583dbc92c7caef8fd42f012f83ef65189077b991)
parent 15d6df20
......@@ -119,6 +119,8 @@ static int Open(vlc_object_t *object)
fmt.i_chroma = VLC_CODEC_RGB8;
fmt.i_width = aa_imgwidth(sys->aa_context);
fmt.i_height = aa_imgheight(sys->aa_context);
fmt.i_visible_width = fmt.i_width;
fmt.i_visible_height = fmt.i_height;
/* */
vout_display_info_t info = vd->info;
......
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