From: Steve Kenton <skenton@ou.edu>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] ffprobe: V2.0 Add ffprobe option to ffmpeg package
Date: Mon, 01 Dec 2014 18:55:35 -0600 [thread overview]
Message-ID: <547D0E07.2070502@ou.edu> (raw)
In-Reply-To: <5479642D.1030408@ou.edu>
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 <skenton@ou.edu>
---
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
next prev parent reply other threads:[~2014-12-02 0:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <54796318.7010207@ou.edu>
2014-11-29 6:14 ` [Buildroot] [PATCH] ffprobe: V1.0 Add ffprobe option to ffmpeg package Steve Kenton
2014-12-02 0:55 ` Steve Kenton [this message]
2014-12-03 22:20 ` [Buildroot] [PATCH] ffprobe: V2.0 " Peter Korsgaard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=547D0E07.2070502@ou.edu \
--to=skenton@ou.edu \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.