From patchwork Sun May 25 20:26:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 352289 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id E3806140096 for ; Mon, 26 May 2014 06:27:45 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4ADE587BA2; Sun, 25 May 2014 20:27:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fnLSQEIWNOIO; Sun, 25 May 2014 20:27:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 87AAE899EE; Sun, 25 May 2014 20:27:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 1AB851BF9D8 for ; Sun, 25 May 2014 20:26:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 17BDA25C9F for ; Sun, 25 May 2014 20:26:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W41QoKGE0yYx for ; Sun, 25 May 2014 20:26:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by silver.osuosl.org (Postfix) with ESMTPS id 5CF92266A6 for ; Sun, 25 May 2014 20:26:40 +0000 (UTC) Received: from fwd16.aul.t-online.de (fwd16.aul.t-online.de [172.20.26.243]) by mailout12.t-online.de (Postfix) with SMTP id 762D65DC819 for ; Sun, 25 May 2014 22:26:38 +0200 (CEST) Received: from fli4l.lan.fli4l (T5d0+OZY8h7WAPOa7uzHnl3z95PVfh+tgMRi-fA1VU8vzfP6ckHL18kVSr1p2XDgmY@[87.146.216.206]) by fwd16.t-online.de with esmtp id 1Wof09-1Nf0b20; Sun, 25 May 2014 22:26:37 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:50153) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Wof08-00046i-Vi; Sun, 25 May 2014 22:26:37 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 25 May 2014 22:26:22 +0200 Message-Id: <1401049582-2110-30-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1401049582-2110-1-git-send-email-bernd.kuhls@t-online.de> References: <1401049582-2110-1-git-send-email-bernd.kuhls@t-online.de> X-ID: T5d0+OZY8h7WAPOa7uzHnl3z95PVfh+tgMRi-fA1VU8vzfP6ckHL18kVSr1p2XDgmY X-TOI-MSGID: a6ef3e92-458a-448b-9e6f-d4b08205576e Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v10 29/29] xbmc: Add VA-API support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Bernd Kuhls --- package/xbmc/xbmc.mk | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index 252f427..501c926 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -51,7 +51,6 @@ XBMC_CONF_OPT += \ --disable-projectm \ --disable-pulse \ --disable-ssh \ - --disable-vaapi \ --disable-vdpau \ --disable-vtbdecoder \ --enable-optimizations @@ -110,6 +109,14 @@ XBMC_CONF_OPT += --disable-gles endif endif +# xbmc needs libva & libva-glx +ifeq ($(BR2_PACKAGE_LIBVA)$(BR2_PACKAGE_MESA3D_DRI_DRIVER),yy) +XBMC_DEPENDENCIES += mesa3d libva +XBMC_CONF_OPT += --enable-vaapi +else +XBMC_CONF_OPT += --disable-vaapi +endif + ifeq ($(BR2_PACKAGE_XBMC_LIBUSB),y) XBMC_DEPENDENCIES += libusb-compat XBMC_CONF_OPT += --enable-libusb