From 8264d59aab396c287c86e24d6b5096ca83c472b9 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sat, 23 Apr 2011 12:44:50 -0700 Subject: [PATCH] videoscale: use simpler scaling method for small images https://bugzilla.gnome.org/show_bug.cgi?id=633837 --- gst/videoscale/gstvideoscale.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gst/videoscale/gstvideoscale.c b/gst/videoscale/gstvideoscale.c index ac2968a..b941ed0 100644 --- a/gst/videoscale/gstvideoscale.c +++ b/gst/videoscale/gstvideoscale.c @@ -1022,6 +1022,14 @@ gst_video_scale_transform (GstBaseTransform * trans, GstBuffer * in, add_borders = videoscale->add_borders; GST_OBJECT_UNLOCK (videoscale); + if (videoscale->from_width == 1) { + method = GST_VIDEO_SCALE_NEAREST; + } + if (method == GST_VIDEO_SCALE_4TAP && + (videoscale->from_width < 4 || videoscale->from_height < 4)) { + method = GST_VIDEO_SCALE_BILINEAR; + } + gst_video_scale_setup_vs_image (&src, videoscale->format, 0, videoscale->from_width, videoscale->from_height, 0, 0, GST_BUFFER_DATA (in)); -- 2.7.4