From 596737e7e5b05c099c2c7e39652dc741d11f0908 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Sun, 10 Mar 2002 21:37:26 +0000 Subject: copy last 2 lines on linear blend CVS patchset: 1549 CVS date: 2002/03/10 21:37:26 --- src/video_out/deinterlace.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') diff --git a/src/video_out/deinterlace.c b/src/video_out/deinterlace.c index cb8773321..6434d2b25 100644 --- a/src/video_out/deinterlace.c +++ b/src/video_out/deinterlace.c @@ -674,6 +674,13 @@ static void deinterlace_linearblend_yuv_mmx( uint8_t *pdst, uint8_t *psrc[], } } + /* copy last 2 lines */ + xine_fast_memcpy(pdst + Line * LineLength, + psrc[0] + Line * LineLength, LineLength); + Line++; + xine_fast_memcpy(pdst + Line * LineLength, + psrc[0] + Line * LineLength, LineLength); + /* clear out the MMX registers ready for doing floating point * again */ -- cgit v1.2.3