From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id C837CE00C0B; Sun, 31 Jan 2016 23:26:12 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.0 SPF_HELO_PASS SPF: HELO matches SPF record * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from ptmx.org (ptmx.org [178.63.28.110]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id DC780E00C00 for ; Sun, 31 Jan 2016 23:26:11 -0800 (PST) Received: from [192.168.178.14] (chello062178118086.5.14.vie.surfer.at [62.178.118.86]) by ptmx.org (Postfix) with ESMTPSA id A24CC2A599; Mon, 1 Feb 2016 08:26:10 +0100 (CET) To: Yuqing Zhu , "meta-freescale@yoctoproject.org" References: <1453887720-16863-1-git-send-email-b54851@freescale.com> <1453887720-16863-7-git-send-email-b54851@freescale.com> <56A8B6F5.7000001@pseudoterminal.org> From: Carlos Rafael Giani Message-ID: <56AF0892.40308@pseudoterminal.org> Date: Mon, 1 Feb 2016 08:26:10 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 In-Reply-To: Subject: Re: [meta-fsl-arm][PATCH 6/9] gstreamer1.0-plugins-bad: Change wayland default res to 1024x768 X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 07:26:12 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit I'd say this is OK then. It doesn't break anything and really is i.MX specific. On 2016-01-29 07:41, Yuqing Zhu wrote: > Hi Carlos, > > As in our release, the default display is full screen in LVDS, and 1024x768 resolution will be better in testing for our released platform. > > > > B.R. > Yuqing Zhu > > > -----Original Message----- > From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-bounces@yoctoproject.org] On Behalf Of Carlos Rafael Giani > Sent: Wednesday, January 27, 2016 8:24 PM > To: meta-freescale@yoctoproject.org > Subject: Re: [meta-freescale] [meta-fsl-arm][PATCH 6/9] gstreamer1.0-plugins-bad: Change wayland default res to 1024x768 > > Could you add an explanation to the commit message why you increase the default resolution? > > On 01/27/2016 10:41 AM, Yuqing Zhu wrote: >> Change wayland backend default window resolution from 320x240 to >> 1024x768. >> >> Signed-off-by: Yuqing Zhu >> --- >> ...in-Change-wayland-default-res-to-1024x768.patch | 41 ++++++++++++++++++++++ >> .../gstreamer/gstreamer1.0-plugins-bad_%.bbappend | 1 + >> 2 files changed, 42 insertions(+) >> create mode 100755 >> recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0007-glplugin-Ch >> ange-wayland-default-res-to-1024x768.patch >> >> diff --git >> a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0007-glplugin- >> Change-wayland-default-res-to-1024x768.patch >> b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0007-glplugin- >> Change-wayland-default-res-to-1024x768.patch >> new file mode 100755 >> index 0000000..49a0a9d >> --- /dev/null >> +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0007-glplu >> +++ gin-Change-wayland-default-res-to-1024x768.patch >> @@ -0,0 +1,41 @@ >> +From decc71a707d3b3596888d30a4c7ca25b57a686b2 Mon Sep 17 00:00:00 >> +2001 >> +From: Jian >> +Date: Tue, 17 Nov 2015 14:39:07 +0800 >> +Subject: [PATCH 2/3] [glplugin] Change wayland default res to >> +1024x768 >> +MIME-Version: 1.0 >> +Content-Type: text/plain; charset=UTF-8 >> +Content-Transfer-Encoding: 8bit >> + >> +Change wayland backend default window resolution from 320x240 to >> +1024x768 >> + >> +Upstream-Status: Inappropriate [i.MX specific] >> + >> +Signed-off-by: Jian >> +--- >> + gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c | 4 ++-- >> + 1 file changed, 2 insertions(+), 2 deletions(-) >> + >> +diff --git a/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c >> +b/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c >> +index b34ad42..b557daa 100644 >> +--- a/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c >> ++++ b/gst-libs/gst/gl/wayland/gstglwindow_wayland_egl.c >> +@@ -305,13 +305,13 @@ create_surfaces (GstGLWindowWaylandEGL * window_egl) >> + if (window_egl->window.window_width > 0) >> + width = window_egl->window.window_width; >> + else >> +- width = 320; >> ++ width = 1024; >> + window_egl->window.window_width = width; >> + >> + if (window_egl->window.window_height > 0) >> + height = window_egl->window.window_height; >> + else >> +- height = 240; >> ++ height = 768; >> + window_egl->window.window_height = height; >> + >> + if (!window_egl->window.native) { >> +-- >> +1.7.9.5 >> + >> diff --git >> a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend >> b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend >> index b290423..40be87a 100644 >> --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend >> +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend >> @@ -16,6 +16,7 @@ IMX_PATCHES = " file://0001-PATCH-install-gstaggregator-and-gstvideoaggregator-h >> file://0004-glplugin-Add-directviv-to-glimagesink-to-improve-playback-performance.patch \ >> file://0005-glplugin-support-video-crop-for-glimagesink.patch \ >> >> file://0006-glplugin-Support-fb-backend-for-gl-plugins.patch \ >> + >> + file://0007-glplugin-Change-wayland-default-res-to-1024x768.patch \ >> " >> >> SRC_URI_append_mx6 = "${IMX_PATCHES}" > -- > _______________________________________________ > meta-freescale mailing list > meta-freescale@yoctoproject.org > https://lists.yoctoproject.org/listinfo/meta-freescale