Commit 58b2cc3f authored by KO Myung-Hun's avatar KO Myung-Hun Committed by Jean-Baptiste Kempf

kva: set visible region correctly

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 2897e2b4
......@@ -606,10 +606,10 @@ static int OpenDisplay( vout_display_t *vd, video_format_t *fmt )
sys->kvas.ulLength = sizeof( KVASETUP );
sys->kvas.szlSrcSize.cx = w;
sys->kvas.szlSrcSize.cy = h;
sys->kvas.rclSrcRect.xLeft = 0;
sys->kvas.rclSrcRect.yTop = 0;
sys->kvas.rclSrcRect.xRight = w;
sys->kvas.rclSrcRect.yBottom = h;
sys->kvas.rclSrcRect.xLeft = fmt->i_x_offset;
sys->kvas.rclSrcRect.yTop = fmt->i_y_offset;
sys->kvas.rclSrcRect.xRight = fmt->i_x_offset + fmt->i_visible_width;
sys->kvas.rclSrcRect.yBottom = fmt->i_y_offset + fmt->i_visible_height;
sys->kvas.ulRatio = KVAR_FORCEANY;
sys->kvas.ulAspectWidth = w;
sys->kvas.ulAspectHeight = h;
......
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