From 6bd458abc1d5068e4f072b8c76e4d5f6fa5b5635 Mon Sep 17 00:00:00 2001 From: Ravi Kiran K N Date: Fri, 6 Mar 2015 09:30:51 +0530 Subject: [PATCH] video-converter: correct right-border location for YUY2, YVYU, UYVY Remove 'r_border /= 2' in convert_fill_border(). It doesn't take the right border to correct location. https://bugzilla.gnome.org/show_bug.cgi?id=745719 --- gst-libs/gst/video/video-converter.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gst-libs/gst/video/video-converter.c b/gst-libs/gst/video/video-converter.c index afdb5d3d8c..699a049321 100644 --- a/gst-libs/gst/video/video-converter.c +++ b/gst-libs/gst/video/video-converter.c @@ -3498,7 +3498,6 @@ convert_fill_border (GstVideoConverter * convert, GstVideoFrame * dest) case GST_VIDEO_FORMAT_YVYU: case GST_VIDEO_FORMAT_UYVY: pgroup = 4; - r_border /= 2; rb_width /= 2; lb_width /= 2; out_maxwidth /= 2;