From patchwork Sun Oct 12 18:13:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 398993 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 736111400B6 for ; Mon, 13 Oct 2014 05:13:50 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 23AE8952BF; Sun, 12 Oct 2014 18:13:49 +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 p15ibSGfHKtZ; Sun, 12 Oct 2014 18:13:47 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id D071C952B7; Sun, 12 Oct 2014 18:13:46 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id A70BF1C2ACF for ; Sun, 12 Oct 2014 18:13:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 95CACA1728 for ; Sun, 12 Oct 2014 18:13:41 +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 7GtKAyFeKNiA for ; Sun, 12 Oct 2014 18:13:41 +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 fraxinus.osuosl.org (Postfix) with ESMTPS id D3EE1A179D for ; Sun, 12 Oct 2014 18:13:40 +0000 (UTC) Received: from fwd13.aul.t-online.de (fwd13.aul.t-online.de [172.20.27.62]) by mailout08.t-online.de (Postfix) with SMTP id F3D415599AC for ; Sun, 12 Oct 2014 20:13:38 +0200 (CEST) Received: from fli4l.lan.fli4l (ZqeHuuZE8hlmDshL3KOGcVi+tEjKUtdhKxz3nPFeNqiTvUumkZsZ2koCzNvtR7mwIH@[79.247.133.238]) by fwd13.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1XdNeE-2NFgm00; Sun, 12 Oct 2014 20:13:38 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:33819) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.84) (envelope-from ) id 1XdNeD-0007WP-Ri; Sun, 12 Oct 2014 20:13:38 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 12 Oct 2014 20:13:30 +0200 Message-Id: <1413137610-21887-8-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1413137610-21887-1-git-send-email-bernd.kuhls@t-online.de> References: <1413137610-21887-1-git-send-email-bernd.kuhls@t-online.de> X-ID: ZqeHuuZE8hlmDshL3KOGcVi+tEjKUtdhKxz3nPFeNqiTvUumkZsZ2koCzNvtR7mwIH X-TOI-MSGID: 5f117b3c-0648-48f9-b68f-6a168608f658 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 8/8] package/tvheadend: Add transcoding support by ffmpeg 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls Reviewed-by: "Yann E. MORIN" --- package/tvheadend/tvheadend.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk index 7d27edc..5267a10 100644 --- a/package/tvheadend/tvheadend.mk +++ b/package/tvheadend/tvheadend.mk @@ -14,6 +14,13 @@ ifeq ($(BR2_PACKAGE_AVAHI),y) TVHEADEND_DEPENDENCIES += avahi endif +ifeq ($(BR2_PACKAGE_FFMPEG_AVRESAMPLE)$(BR2_PACKAGE_FFMPEG_SWSCALE),yy) +TVHEADEND_DEPENDENCIES += ffmpeg +TVHEADEND_CONF_OPTS += --enable-libav +else +TVHEADEND_CONF_OPTS += --disable-libav +endif + ifeq ($(BR2_PACKAGE_LIBDVBCSA),y) TVHEADEND_DEPENDENCIES += libdvbcsa TVHEADEND_CONF_OPTS += --enable-dvbcsa