From patchwork Thu Oct 16 22:29:02 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?J=C3=B6rg_Krause?= X-Patchwork-Id: 400394 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 65C501400BB for ; Fri, 17 Oct 2014 09:29:30 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 19AD595A9D; Thu, 16 Oct 2014 22:29:20 +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 Jc8ZhP2mlohU; Thu, 16 Oct 2014 22:29:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id E071895ACF; Thu, 16 Oct 2014 22:29:18 +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 430A11C235D for ; Thu, 16 Oct 2014 22:29:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 3CDEE95A93 for ; Thu, 16 Oct 2014 22:29:06 +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 mVkR08siDdL4 for ; Thu, 16 Oct 2014 22:29:03 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx02.posteo.de (mx02.posteo.de [89.146.194.165]) by hemlock.osuosl.org (Postfix) with ESMTPS id 0D3AD95A8D for ; Thu, 16 Oct 2014 22:29:02 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by mx02.posteo.de (Postfix) with ESMTP id DC5D99DADE6 for ; Fri, 17 Oct 2014 00:29:00 +0200 (CEST) X-Virus-Scanned: amavisd-new at posteo.de Received: from posteo.de ([10.125.125.178]) (using TLS) by localhost (amavis1.posteo.de [10.125.125.165]) (amavisd-new, port 10026) with ESMTPS id RpQj2WuDNFsQ; Fri, 17 Oct 2014 00:28:55 +0200 (CEST) Received: from mail.posteo.de (localhost [127.0.0.1]) by mail.posteo.de (Postfix) with ESMTPSA id 844822C0130; Fri, 17 Oct 2014 00:28:55 +0200 (CEST) From: =?UTF-8?q?J=C3=B6rg=20Krause?= To: buildroot@buildroot.org Date: Fri, 17 Oct 2014 00:29:02 +0200 Message-Id: <1413498543-643-7-git-send-email-jkrause@posteo.de> X-Mailer: git-send-email 2.1.2 In-Reply-To: <1413498543-643-1-git-send-email-jkrause@posteo.de> References: <1413498543-643-1-git-send-email-jkrause@posteo.de> MIME-Version: 1.0 Subject: [Buildroot] [PATCH v3 7/8] package/mpd: enable support for dsd X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Jörg Krause --- Changes v2 -> v3: - fix indentation of help text Changes v1 -> v2: - none --- package/mpd/Config.in | 6 ++++++ package/mpd/mpd.mk | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/package/mpd/Config.in b/package/mpd/Config.in index 4294daf..73bfaf7 100644 --- a/package/mpd/Config.in +++ b/package/mpd/Config.in @@ -62,6 +62,12 @@ config BR2_PACKAGE_MPD_AUDIOFILE Enable audiofile input/streaming support. Select this if you want to play back WAV files. +config BR2_PACKAGE_MPD_DSD + bool "dsd" + help + Enable Digital Speech Decoder (DSD) support to play audio files encoded + in a digital speech format. + config BR2_PACKAGE_MPD_FAAD2 bool "faad2" select BR2_PACKAGE_FAAD2 diff --git a/package/mpd/mpd.mk b/package/mpd/mpd.mk index ef89f3d..4eca183 100644 --- a/package/mpd/mpd.mk +++ b/package/mpd/mpd.mk @@ -62,6 +62,12 @@ else MPD_CONF_OPTS += --disable-curl endif +ifeq ($(BR2_PACKAGE_MPD_DSD),y) +MPD_CONF_OPTS += --enable-dsd +else +MPD_CONF_OPTS += --disable-dsd +endif + ifeq ($(BR2_PACKAGE_MPD_FAAD2),y) MPD_DEPENDENCIES += faad2 MPD_CONF_OPTS += --enable-aac