From patchwork Fri Jun 12 10:53:03 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Beno=C3=AEt_Th=C3=A9baudeau?= X-Patchwork-Id: 483486 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id CB8DE1402B4 for ; Fri, 12 Jun 2015 20:53:34 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 46FE694E1B; Fri, 12 Jun 2015 10:53:33 +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 OrlQY1-xQhD0; Fri, 12 Jun 2015 10:53:31 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 7441494E0E; Fri, 12 Jun 2015 10:53:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 4CBC81C0B41 for ; Fri, 12 Jun 2015 10:53:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 1A67D32F4B for ; Fri, 12 Jun 2015 10:53:30 +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 ZcvBR1Bo0Y1X for ; Fri, 12 Jun 2015 10:53:28 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from authsmtp.register.it (authsmtp91.register.it [195.110.122.176]) by silver.osuosl.org (Postfix) with ESMTP id 4FCF932CE3 for ; Fri, 12 Jun 2015 10:53:27 +0000 (UTC) Received: from localhost.localdomain ([2.0.181.195]) by paganini31 with id fNtM1q00c4DM0sJ01NtR2Y; Fri, 12 Jun 2015 12:53:26 +0200 X-Rid: benoit@wsystem.com@2.0.181.195 From: =?UTF-8?q?Beno=C3=AEt=20Th=C3=A9baudeau?= To: buildroot@buildroot.org Date: Fri, 12 Jun 2015 12:53:03 +0200 Message-Id: <1434106383-60787-1-git-send-email-benoit@wsystem.com> X-Mailer: git-send-email 2.1.4 MIME-Version: 1.0 Cc: =?UTF-8?q?Beno=C3=AEt=20Th=C3=A9baudeau?= Subject: [Buildroot] [PATCH] ffmpeg: fix dependencies 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" The ffmpeg binary does not require swscale, but ffplay needs it. ffserver needs fork(). Signed-off-by: Benoît Thébaudeau --- package/ffmpeg/Config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/ffmpeg/Config.in b/package/ffmpeg/Config.in index 00163ba..e5981fe 100644 --- a/package/ffmpeg/Config.in +++ b/package/ffmpeg/Config.in @@ -25,7 +25,6 @@ config BR2_PACKAGE_FFMPEG_NONFREE config BR2_PACKAGE_FFMPEG_FFMPEG bool "Build ffmpeg (the command line application)" - select BR2_PACKAGE_FFMPEG_SWSCALE default y help FFmpeg is a very fast video and audio converter. @@ -36,6 +35,7 @@ config BR2_PACKAGE_FFMPEG_FFMPEG config BR2_PACKAGE_FFMPEG_FFPLAY bool "Build ffplay" + select BR2_PACKAGE_FFMPEG_SWSCALE select BR2_PACKAGE_SDL help FFplay is a very simple and portable media player using the @@ -44,6 +44,7 @@ config BR2_PACKAGE_FFMPEG_FFPLAY config BR2_PACKAGE_FFMPEG_FFSERVER bool "Build ffserver" + depends on BR2_USE_MMU # fork() help FFserver is a streaming server for both audio and video.