From patchwork Sat Feb 27 15:27:02 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 589388 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 960211401B5 for ; Sun, 28 Feb 2016 02:27:58 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1A759A5D76; Sat, 27 Feb 2016 15:27:54 +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 D1h1dsO2lmgJ; Sat, 27 Feb 2016 15:27:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id DC06CA5DC0; Sat, 27 Feb 2016 15:27:46 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 601391C1EB9 for ; Sat, 27 Feb 2016 15:27:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5DA9DA5D60 for ; Sat, 27 Feb 2016 15:27:30 +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 Fu1itlz90IW0 for ; Sat, 27 Feb 2016 15:27:27 +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 B3BBAA5D3F for ; Sat, 27 Feb 2016 15:27:27 +0000 (UTC) Received: from fwd05.aul.t-online.de (fwd05.aul.t-online.de [172.20.27.149]) by mailout08.t-online.de (Postfix) with SMTP id A344E374E5E for ; Sat, 27 Feb 2016 16:27:25 +0100 (CET) Received: from fli4l.lan.fli4l (rfc5IQZOQhEWHchuwSfcM8ACCZ6Phx6st0JjTbjuBdjYJhOZi7VZ24bnaRznnHKgsp@[84.191.200.13]) by fwd05.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1aZgmD-4XBbg80; Sat, 27 Feb 2016 16:27:25 +0100 Received: from mahler.lan.fli4l ([192.168.1.1]:52712 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.86) (envelope-from ) id 1aZgmC-0004Bb-OA; Sat, 27 Feb 2016 16:27:25 +0100 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 27 Feb 2016 16:27:02 +0100 Message-Id: <1456586838-21197-13-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1456586838-21197-1-git-send-email-bernd.kuhls@t-online.de> References: <1456586838-21197-1-git-send-email-bernd.kuhls@t-online.de> X-ID: rfc5IQZOQhEWHchuwSfcM8ACCZ6Phx6st0JjTbjuBdjYJhOZi7VZ24bnaRznnHKgsp X-TOI-MSGID: 668fe524-4bac-4249-afce-6b8566640b9d Cc: Bernd Kuhls Subject: [Buildroot] [PATCH/next v9 12/28] package/freeswitch: enable mod_av, add optional dependencies to ffmpeg, libvpx & libyuv 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" mod_av delivers native support for these video codecs: codec,H263 Video,mod_av codec,H263+ Video,mod_av codec,H264 Video,mod_av Signed-off-by: Bernd Kuhls --- package/freeswitch/freeswitch.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/freeswitch/freeswitch.mk b/package/freeswitch/freeswitch.mk index 3925573..51762cf 100644 --- a/package/freeswitch/freeswitch.mk +++ b/package/freeswitch/freeswitch.mk @@ -156,6 +156,11 @@ endef FREESWITCH_PRE_CONFIGURE_HOOKS += FREESWITCH_ENABLE_MODULES +ifeq ($(BR2_PACKAGE_FFMPEG_AVRESAMPLE)$(BR2_PACKAGE_FFMPEG_SWSCALE)$(BR2_PACKAGE_LIBVPX)$(BR2_PACKAGE_LIBYUV),yyyy) +FREESWITCH_DEPENDENCIES += ffmpeg libvpx libyuv +FREESWITCH_ENABLED_MODULES += applications/mod_av +endif + ifeq ($(BR2_PACKAGE_FREETYPE),y) FREESWITCH_DEPENDENCIES += freetype endif