Commit 7474f4b9 authored by Laurent Aimar's avatar Laurent Aimar Committed by Rémi Denis-Courmont

XCB/XVideo: fix resolution with non multiple of 16x16 videos

Fixes: #3928
Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
(cherry picked from commit 447e29e9d8ece04c0a3d0942a14f4e89af5c5314)
parent 655ebda4
......@@ -254,8 +254,8 @@ FindFormat (vout_display_t *vd,
continue;
/* VLC pads scanline to 16 pixels internally */
unsigned width = (fmt->i_width + 15) & ~15;
unsigned height = (fmt->i_height + 15) & ~15;
unsigned width = fmt->i_width;
unsigned height = fmt->i_height;
xcb_xv_query_image_attributes_reply_t *i;
i = xcb_xv_query_image_attributes_reply (conn,
xcb_xv_query_image_attributes (conn, port, f->id,
......
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