From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 39094C7EE24 for ; Fri, 2 Jun 2023 12:39:08 +0000 (UTC) Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by mx.groups.io with SMTP id smtpd.web11.11476.1685709544083546109 for ; Fri, 02 Jun 2023 05:39:04 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: denix.org, ip: 64.68.198.64, mailfrom: denis@denix.org) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id 53BFB40CA7; Fri, 2 Jun 2023 12:39:03 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo14-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tIDQ4KNnrhtG; Fri, 2 Jun 2023 12:39:03 +0000 (UTC) Received: from mail.denix.org (pool-100-15-88-116.washdc.fios.verizon.net [100.15.88.116]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 066E040C24; Fri, 2 Jun 2023 12:38:56 +0000 (UTC) Received: by mail.denix.org (Postfix, from userid 1000) id 7DA73163942; Fri, 2 Jun 2023 08:38:10 -0400 (EDT) Date: Fri, 2 Jun 2023 08:38:10 -0400 From: Denys Dmytriyenko To: Rahul T R Cc: meta-arago@lists.yoctoproject.org, Ryan Eatmon , j-choudhary@ti.com, a-bhatia1@ti.com, b-brnich@ti.com, devarsht@ti.com Subject: Re: [meta-arago][master/kirkstone][PATCH] conf: arago: Add flag to enable kmssink plugin Message-ID: <20230602123810.GO9226@denix.org> References: <20230518132636.17398-1-r-ravikumar@ti.com> <20230518180151.GS9226@denix.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 02 Jun 2023 12:39:08 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14490 On Thu, Jun 01, 2023 at 12:28:11AM +0530, Rahul T R wrote: > Hi Denys, > > On 18/05/23 23:31, Denys Dmytriyenko wrote: > >On Thu, May 18, 2023 at 06:56:36PM +0530, Rahul T R via lists.yoctoproject.org wrote: > >>Enable building kmssink plugin in gstreamer1.0-plugins-bad > >> > >>Signed-off-by: Rahul T R > >>--- > >> meta-arago-distro/conf/distro/arago.conf | 3 +++ > >> 1 file changed, 3 insertions(+) > >> > >>diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf > >>index 379b1d44..e32259a9 100644 > >>--- a/meta-arago-distro/conf/distro/arago.conf > >>+++ b/meta-arago-distro/conf/distro/arago.conf > >>@@ -113,6 +113,9 @@ PACKAGECONFIG:append:pn-openssl = " cryptodev-linux" > >> # Enable GST_TRACER logging in gstreamer > >> PACKAGECONFIG:append:pn-gstreamer1.0 = " tracer-hooks" > >>+# Enable kmssink in gstreamer > >>+PACKAGECONFIG:append:pn-gstreamer1.0-plugins-bad = " kms" > >FWIW, corresponding bbappend also sets this option, but it needs updating to > >the current gstreamer version: > > > >https://git.yoctoproject.org/meta-arago/tree/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.%25.bbappend#n3 > > Since the gst-plugins-bad bbappend is to be removed as per the > discussion in below thread > https://lists.yoctoproject.org/g/meta-arago/message/14441 Not sure what the conclusion of that discussion was, as changes haven't been merged - GST DRM allocator is still required, so gst-plugins-bad bbappend may have to stay. > Can this patch be merged > > >> # Disable pulseaudio routing in alsa by default > >> PACKAGECONFIG:remove:pn-alsa-plugins = "pulseaudio" > >> RDEPENDS:pulseaudio-server:remove = "alsa-plugins-pulseaudio-conf" > >>--