Skip to content
Snippets Groups Projects
Commit ae588e59 authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf
Browse files

d3d11_deinterlace: copy the whole texture


Not just the visible area or the output may contain green rather than the black
coming out of the decoder.

Fixes #19298

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a420de32
No related branches found
No related tags found
No related merge requests found
......@@ -202,9 +202,9 @@ static int RenderPic( filter_t *p_filter, picture_t *p_outpic, picture_t *p_pic,
D3D11_BOX box = {
.top = 0,
.bottom = p_outpic->format.i_visible_height,
.bottom = p_outpic->format.i_height,
.left = 0,
.right = p_outpic->format.i_visible_width,
.right = p_outpic->format.i_width,
.back = 1,
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment