From patchwork Thu Apr 3 19:01:28 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 336738 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 016211400D9 for ; Fri, 4 Apr 2014 06:03:09 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B41318C08A; Thu, 3 Apr 2014 19:02:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qOnUTUZHsftJ; Thu, 3 Apr 2014 19:02:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E975B8BF62; Thu, 3 Apr 2014 19:02:26 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id BAC651CE7BE for ; Thu, 3 Apr 2014 19:01:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id B7EE488EE5 for ; Thu, 3 Apr 2014 19:01:58 +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 21OXJSv6LUdu for ; Thu, 3 Apr 2014 19:01:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) by hemlock.osuosl.org (Postfix) with ESMTPS id DE63B881C3 for ; Thu, 3 Apr 2014 19:01:57 +0000 (UTC) Received: from fwd08.aul.t-online.de (fwd08.aul.t-online.de [172.20.26.151]) by mailout01.t-online.de (Postfix) with SMTP id F1CD3581993 for ; Thu, 3 Apr 2014 21:01:55 +0200 (CEST) Received: from fli4l.lan.fli4l (XKFIYgZQrhIh6WIPLSlj7ArS8SHPNR7bGHjux62D1ZKmMoMIIhoJ5drfTmBX4yKw2w@[79.247.166.166]) by fwd08.t-online.de with esmtp id 1WVmtd-0sWdGa0; Thu, 3 Apr 2014 21:01:53 +0200 Received: from [192.168.1.122] (port=43827 helo=fli4lbuild64.lan.fli4l) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1WVmtc-0004C8-Rh; Thu, 03 Apr 2014 21:01:53 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 3 Apr 2014 21:01:28 +0200 Message-Id: <1396551692-12371-34-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1396551692-12371-1-git-send-email-bernd.kuhls@t-online.de> References: <1396551692-12371-1-git-send-email-bernd.kuhls@t-online.de> X-ID: XKFIYgZQrhIh6WIPLSlj7ArS8SHPNR7bGHjux62D1ZKmMoMIIhoJ5drfTmBX4yKw2w X-TOI-MSGID: 5c2a7396-c96e-4eef-b51f-35a492f0ee48 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v4 33/37] WIP: 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 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index 691cad6..6c79c4c 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -39,7 +39,6 @@ XBMC_CONF_OPT += \ --disable-projectm \ --disable-pulse \ --disable-ssh \ - --disable-vaapi \ --disable-vdpau \ --disable-vtbdecoder \ --enable-optimizations @@ -55,6 +54,13 @@ ifeq ($(BR2_PACKAGE_DBUS),y) XBMC_DEPENDENCIES += dbus endif +ifeq ($(BR2_PACKAGE_LIBVA),y) +XBMC_DEPENDENCIES += libva +XBMC_CONF_OPT += --enable-vaapi +else +XBMC_CONF_OPT += --disable-vaapi +endif + ifeq ($(BR2_PACKAGE_XSERVER_XORG_SERVER),y) XBMC_DEPENDENCIES += \ libglew \