[vlc-commits] deinterlace: fix interlacing modes with doubled rate

Steve Lhomme git at videolan.org
Wed Jan 24 16:05:32 CET 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jan 24 16:04:29 2018 +0100| [d8f0537f4f64c55b27c4a0869008b34d2dbb0c3a] | committer: Steve Lhomme

deinterlace: fix interlacing modes with doubled rate

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d8f0537f4f64c55b27c4a0869008b34d2dbb0c3a
---

 modules/video_filter/deinterlace/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/video_filter/deinterlace/common.c b/modules/video_filter/deinterlace/common.c
index 1791190ff8..b6e580d911 100644
--- a/modules/video_filter/deinterlace/common.c
+++ b/modules/video_filter/deinterlace/common.c
@@ -279,7 +279,7 @@ picture_t *DoDeinterlacing( filter_t *p_filter,
             p_context->pf_render_ordered( p_filter, p_dst[1], p_pic,
                                           1, b_top_field_first );
         if ( p_dst[2] )
-            p_context->pf_render_ordered( p_filter, p_dst[1], p_pic,
+            p_context->pf_render_ordered( p_filter, p_dst[2], p_pic,
                                           2, !b_top_field_first );
     }
 



More information about the vlc-commits mailing list