From patchwork Tue Dec 2 00:55:35 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kenton, Stephen M." X-Patchwork-Id: 416672 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id E1EB014011D for ; Tue, 2 Dec 2014 11:55:42 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 450EB2221E; Tue, 2 Dec 2014 00:55:41 +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 UNwRhLniXW4f; Tue, 2 Dec 2014 00:55:39 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 771A1333CF; Tue, 2 Dec 2014 00:55:39 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 19D511C2C40 for ; Tue, 2 Dec 2014 00:55:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 14FEF91E62 for ; Tue, 2 Dec 2014 00:55:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k6VhqSSDx92P for ; Tue, 2 Dec 2014 00:55:36 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from eastrmfepo202.cox.net (eastrmfepo202.cox.net [68.230.241.217]) by whitealder.osuosl.org (Postfix) with ESMTP id 8D1DC91E61 for ; Tue, 2 Dec 2014 00:55:36 +0000 (UTC) Received: from eastrmimpo210 ([68.230.241.225]) by eastrmfepo202.cox.net (InterMail vM.8.01.05.15 201-2260-151-145-20131218) with ESMTP id <20141202005535.YFXP14201.eastrmfepo202.cox.net@eastrmimpo210> for ; Mon, 1 Dec 2014 19:55:35 -0500 Received: from [192.168.1.2] ([68.97.2.10]) by eastrmimpo210 with cox id NQvb1p00S0CxSiC01QvbxM; Mon, 01 Dec 2014 19:55:35 -0500 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020203.547D0E07.01FE,ss=1,re=0.001,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=2.0 cv=aZC/a2Ut c=1 sm=1 a=nr99965rMXYxaIVTx7+86Q==:17 a=5ZTteq0x3j8A:10 a=IkcTkHD0fZMA:10 a=tp15Pnej4DibxJInx_0A:9 a=QEXdDO2ut3YA:10 a=nr99965rMXYxaIVTx7+86Q==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; none Message-ID: <547D0E07.2070502@ou.edu> Date: Mon, 01 Dec 2014 18:55:35 -0600 From: Steve Kenton User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: buildroot@busybox.net References: <54796318.7010207@ou.edu> <5479642D.1030408@ou.edu> In-Reply-To: <5479642D.1030408@ou.edu> Subject: Re: [Buildroot] [PATCH] ffprobe: V2.0 Add ffprobe option to ffmpeg package 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" On 11/29/2014 12:14 AM, Steve Kenton wrote: V2.0 updated for buildroot 2014.11 [Buildroot][PATCH] ffprobe: V2.0 Add ffprobe option to ffmpeg package I found I needed ffprobe on the target so this adds BR2_PACKAGE_FFMPEG_FFPROBE to make it an option Signed-off-by Stephen M. Kenton diff -ru buildroot-2014.11.clean/package/ffmpeg/Config.in buildroot-2014.11/package/ffmpeg/Config.in --- buildroot-2014.11.clean/package/ffmpeg/Config.in 2014-12-01 03:19:00.000000000 -0600 +++ buildroot-2014.11/package/ffmpeg/Config.in 2014-12-01 10:41:51.550502361 -0600 @@ -49,6 +49,12 @@ help FFserver is a streaming server for both audio and video. +config BR2_PACKAGE_FFMPEG_FFPROBE + bool "Build ffprobe" + help + FFprobe is a utility to determine the audio and video + characteristics of a container file. + config BR2_PACKAGE_FFMPEG_AVRESAMPLE bool "Build libavresample" help diff -ru buildroot-2014.11.clean/package/ffmpeg/ffmpeg.mk buildroot-2014.11/package/ffmpeg/ffmpeg.mk --- buildroot-2014.11.clean/package/ffmpeg/ffmpeg.mk 2014-12-01 03:19:00.000000000 -0600 +++ buildroot-2014.11/package/ffmpeg/ffmpeg.mk 2014-12-01 10:31:58.950490993 -0600 @@ -23,7 +23,6 @@ --enable-logging \ --enable-optimizations \ --disable-extra-warnings \ - --disable-ffprobe \ --enable-avdevice \ --enable-avcodec \ --enable-avformat \ @@ -104,6 +103,12 @@ FFMPEG_CONF_OPTS += --disable-avresample endif +ifeq ($(BR2_PACKAGE_FFMPEG_FFPROBE),y) +FFMPEG_CONF_OPTS += --enable-ffprobe +else +FFMPEG_CONF_OPTS += --disable-ffprobe +endif + ifeq ($(BR2_PACKAGE_FFMPEG_POSTPROC),y) FFMPEG_CONF_OPTS += --enable-postproc else