From patchwork Wed Jul 23 04:40:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 372808 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 031BA14019B for ; Wed, 23 Jul 2014 14:41:10 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1B0B28BB38; Wed, 23 Jul 2014 04:41:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k2GKAqXZCEVk; Wed, 23 Jul 2014 04:41:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 712948BA73; Wed, 23 Jul 2014 04:40:50 +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 BA6691C214E for ; Wed, 23 Jul 2014 04:40:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B2E1126AB4 for ; Wed, 23 Jul 2014 04:40:35 +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 X+QfjSzCgLzm for ; Wed, 23 Jul 2014 04:40:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout08.t-online.de (mailout08.t-online.de [194.25.134.20]) by silver.osuosl.org (Postfix) with ESMTPS id 6413030D90 for ; Wed, 23 Jul 2014 04:40:33 +0000 (UTC) Received: from fwd10.aul.t-online.de (fwd10.aul.t-online.de [172.20.26.152]) by mailout08.t-online.de (Postfix) with SMTP id 781F640F855 for ; Wed, 23 Jul 2014 06:40:31 +0200 (CEST) Received: from fli4l.lan.fli4l (b7SnAGZ6QhqVUesT5MKtg1JSf79PZkHP1-oQCdlGbQgCC08eOfEFouTzlVKqeX-Q+n@[79.247.188.144]) by fwd10.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1X9oLv-2PTjKC0; Wed, 23 Jul 2014 06:40:31 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:51879) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1X9oLu-0003i6-Ct; Wed, 23 Jul 2014 06:40:30 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Wed, 23 Jul 2014 06:40:25 +0200 Message-Id: <1406090425-5925-10-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1406090425-5925-1-git-send-email-bernd.kuhls@t-online.de> References: <1406090425-5925-1-git-send-email-bernd.kuhls@t-online.de> X-ID: b7SnAGZ6QhqVUesT5MKtg1JSf79PZkHP1-oQCdlGbQgCC08eOfEFouTzlVKqeX-Q+n X-TOI-MSGID: 9efaaaa4-f6f4-4ca5-9551-09605b77adcf Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v15 9/9] 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 a1fb022..7d1ebe4 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -52,7 +52,6 @@ XBMC_CONF_OPT += \ --disable-projectm \ --disable-pulse \ --disable-ssh \ - --disable-vaapi \ --disable-vdpau \ --disable-vtbdecoder \ --enable-optimizations @@ -112,6 +111,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