summaryrefslogtreecommitdiff
path: root/package/multimedia/ffmpeg/Config.in
diff options
context:
space:
mode:
authorLuca Ceresoli <luca@lucaceresoli.net>2010-06-14 21:41:42 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-06-14 23:39:07 +0200
commit13293407c988c5c5fdcf0ffacf4e29f8462e2b64 (patch)
treed94c878de164e3543dacbded6442cbfdb4c8adad /package/multimedia/ffmpeg/Config.in
parentd2f6fcd1b4e0cffd621f2ceec347536e4322e8a4 (diff)
ffmpeg: add new package
[Peter: configure doesn't support --disable-nls / --disable-largefile, needs largefile support in toolchain] Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/multimedia/ffmpeg/Config.in')
-rw-r--r--package/multimedia/ffmpeg/Config.in27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/multimedia/ffmpeg/Config.in b/package/multimedia/ffmpeg/Config.in
new file mode 100644
index 000000000..f60790a73
--- /dev/null
+++ b/package/multimedia/ffmpeg/Config.in
@@ -0,0 +1,27 @@
+comment "ffmpeg requires a toolchain with LARGEFILE support"
+ depends on !BR2_LARGEFILE
+
+menuconfig BR2_PACKAGE_FFMPEG
+ bool "ffmpeg"
+ depends on BR2_LARGEFILE
+ help
+ FFmpeg is a complete, cross-platform solution to record, convert
+ and stream audio and video.
+
+ http://www.ffmpeg.org
+
+if BR2_PACKAGE_FFMPEG
+
+config BR2_PACKAGE_FFMPEG_GPL
+ bool "Enable GPL code"
+ help
+ allow use of GPL code, the resulting libs and binaries will
+ be under GPL
+
+config BR2_PACKAGE_FFMPEG_NONFREE
+ bool "Enable nonfree code"
+ help
+ allow use of nonfree code, the resulting libs and binaries
+ will be unredistributable
+
+endif