Commit Graph

54 Commits

Author SHA1 Message Date
Ian Leonard a70227e578 ffmpeg: libffmpeg-full to lgpl; include fdk-aac support
Change libffmpeg-full to, by default, use the LGPL license. This
allows libffmpeg-full to gain support for libfdk-aac.

When libx264 is selected, this changes to GPL, and libfdk-aac
support is lost. Libx264 support is prioritized when both are
selected, which maintains the status quo of what happens now.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2018-04-22 13:48:58 -07:00
Ian Leonard 50b76be748 ffmpeg: fixup for patent related changes
Have encoders and demuxers selectively disabled for patents in
libffmpeg-full too. Assume same codecs covered as decoders and
muxers, respectively. Include vc1 in muxer's too.

Don't invoke --enable-nonfree in libffmpeg-full. It results in:
License: nonfree and unredistributable

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2018-03-27 17:58:19 -07:00
Ted Hess 1fa9c1bc5f ffmpeg: Update to 3.2.10.
Re-organize configuration options to allow non-patented/un-licensed builds.
Include AAC and WMA codecs without BUILD_PATENTED

Signed-off-by: Ted Hess <thess@kitschensync.net>
2018-03-22 13:54:43 -04:00
Rosen Penev 553e3fb63c ffmpeg: Remove BUILD_PATENTED for MPEG2 video.
According to the MPEG-LA, the last patent expired February 13, 2018.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-02-14 12:51:49 -08:00
Rosen Penev 224964e06b
ffmpeg: Remove BUILD_PATENTED for AC3
Dolby Digital patents expired February 1, 2017.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-01-25 19:00:01 -08:00
Matthias Schiffer 00fce347a5
treewide: fix incorrect *_BUILD_DEPENDS
Build depends refer to source package names, not binary package names.

In many cases, PKG_BUILD_DEPENDS simply duplicated runtime dependencies of
a source package's binary packages; as the corresponding source packages
are implicitly added as bulid dependencies, PKG_BUILD_DEPENDS can simply be
dropped in these cases. In the other cases, *_BUILD_DEPENDS is fixed to
refer to the correct source package name.

Dependency of mysql-server is adjusted from libncursesw to libncurses
(as libncursesw is a virtual package provided by libncurses), so the build
dependency on ncurses is emitted unconditionally.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2018-01-09 16:36:02 +01:00
Ted Hess 7fd7ea45fa ffmpeg: Adjusting some build dependencies. Update to 3.2.9
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-11-29 17:31:31 -05:00
Ian Leonard bed874edad ffmpeg: 3.2.8 update
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2017-10-05 09:17:29 -07:00
Ted Hess 808b28d173 ffmpeg: Add mpeg layer 2 audio support and mpeg2 demuxer to libffmpeg-mini
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-08-30 15:45:21 -04:00
Ian Leonard 08554be366 ffmpeg: fixup mpeg support in libffmpeg-mini
The demuxers mpegps is for VOB support and mpegvideo is for raw mpeg video.
mpegps was intended to be included with libffmpeg-mini; mpegvideo was not.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2017-08-19 11:55:18 -07:00
Ian Leonard adc293d3d9 ffmpeg: enable lto build for arm and x86_64
This toggles on Link-Time Optimization for arm and x86-64.

Compile tested on arm/bcm47xx, arm/mvebu, arm/imx6 and x86-64/generic

(Also compile tested on mips/ar71xx where it failed so this change is currently for specific arches.)

Size savings for libffmpeg were 2-3% when measured with libffmpeg-full and libffmpeg-mini.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2017-08-10 22:30:15 -07:00
Ian Leonard 3998494f28 ffmpeg: let ffmpeg choose necessary parsers for audio-dec and custom
This change allows ffmpeg's configure script to determine the necessary parsers based on
selected decoders & encoders. For libffmpeg-audio-dec, this changes from our selecting:

aac, ac3, flac, mpegaudio, opus and aac_latm

to ffmpeg's configure script selecting:

aac_latm, ac3, flac, mpegaudio

for minor space savings and a simpler Makefile to manage on our end.

In libffmpeg-custom, don't select any parsers when choosing decoders/encoders. I'm undecided
on removing the parser selection in its entirety here.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2017-08-10 22:30:15 -07:00
Ian Leonard c2fa282431 ffmpeg: update to 3.2.7
Removes the x86 optimization disables from the SOFT_FLOAT portion. There are no i386 profiles that do
not use hard float, so these options accomplish nothing.

Target-os=linux rules out dxva2 and vda, so disable statements are unnecessary.

For x86-64 users of libffmpeg-full, optimize around performance instead of size.

Remove patented flag requirement from mp2 and mp3 audio files in libffmpeg-custom per expiration.

Tidies up some of the configure steps where only one option is being changed or cosmetic consistency.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2017-08-10 22:30:15 -07:00
Ted Hess 0fc6b2ec31 ffmpeg: add avresample to libffmpeg-full
Some projects, like freeswitch-stable, require avresample in
libffmpeg-full.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-07-17 12:26:29 -04:00
Ian Leonard 12c706bc0e ffmpeg: update to 3.2.6, correct arm optimization check
mpfu=neon implies neon-vfpv3, so enable vfp when just neon is found.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2017-07-06 15:21:06 -07:00
Ian Leonard 79b73ba321 ffmpeg: update to 3.2.5
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2017-05-26 18:51:17 -07:00
Ian Leonard edc982430c ffmpeg: update to 3.2.4, add libshine support, add fdk-aac support to custom, cleanup
Also makes the following changes:

Updates project URL and moves libpthread to a common dependency;
Makes libopus support in libffmpeg-full contingent on selecting the
libopus package, like other external libraries;
Adds note regarding disabling altivec in ppc hard-float;
Reorganizes SIMD sections to be together;
Drops the need to specify decoder=libopus from -full, done by default;
Adds encoder=libopus to custom.

Expand options for libffmpeg-custom:
Build licensing: GPL, GPLv3, LGPLv3
Building for performance or size

Drops version 3 of GPL for -audio-dec, -mini, and -full. Version 3 is
at the discretion of the packager, per:
http://ffmpeg.org/doxygen/trunk/md_LICENSE.html

Add enable-nonfree toggle support to libffmpeg-custom build licensing
to allow inclusion of libfdk-aac.

Use ffmpeg's names for its external libraries in libffmpeg-custom config
Alphabetize same

Correct @BUILD_PATENTED flags for libffmpeg variants

Split libffmpeg-full into hard/soft float:
Hard float configures itself for lame / libx264 using GPL license
Soft float for libshine and LGPL license

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-02-17 15:39:18 -05:00
Ted Hess 785159fcaf ffmpeg: Upgrade to 3.2.2. Remove Speex support
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-01-06 13:47:30 -05:00
Ted Hess e327156211 ffmpeg: Build without altivec on powerpc hfp platforms
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-10-11 13:39:41 -04:00
Ian Leonard 3b624ce56e ffmpeg: Update 2.8.8, add codecs, update dlna profile, correct libopus use
Update ffmpeg to 2.8.8.

Adds HEVC, Opus, VC-1 and Vorbis to custom and minidlna profiles. This should
more closely match formats media being streamed on the local network via
DLNA/UPNP.

Removes raw aac, ac3 and h264 from minidlna profile. Most players expect
this content to come within a container (mkv, mov, mp4, mpegts, etc...),
so this was unnecessary for the profile's goals.

Remove libopus from being selected by the -custom's audio-dec profile, and as
a depend on -audio-dec. -audio-dec uses ffmpeg's internal Opus decoder, not
the external library.

Don't select specific parsers in libffmpeg-mini profile. The demuxers separate
streams from containers. Parsers break up the streams. These are not needed
for DLNA/UPNP. If a parser is needed, the ffmpeg configure script should grab
it.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2016-09-26 18:58:39 -07:00
Daniel Golle 1913622d9b ffmpeg: allow building without yasm
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2016-09-03 14:58:27 +02:00
Daniel Golle efc746428a ffmpeg: enable assembly on targets with fpu
Also no longer disable run-time CPU detection for fpu targets except
arm which is built for each variant (neon, vfp).
This vastly improves performance on x86 which now supports building ASM
code with yasm and makes use of a broad spectrum of extensions
depending on their availability at run-time.

In future, such differentiation should also be introduced for MIPS
to at least conditionally enable the output of MIPS32r2 instructions as
well as DSPr1 and DSPr2 if the target supports that dispite them having
CONFIG_SOFT_FLOAT=y set.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2016-09-02 02:34:47 +02:00
Ted Hess ec133992b7 ffmpeg: Dependency cleanup
Custom builds need to select x264 and/or lame-lib explictly. Automatic
CONFIG_ALL builds of ffmpeg-full include x264 and lame.

Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-08-19 18:50:29 -04:00
Adrian Panella 3f124e2b8e ffmpeg: Update to 2.8.7. Add support for x264 and libmp3lame
Add support for libmp3lame & libx264 to 'full' and optional in 'custom'.
Enable some optimizations according to ARCH and CPU type.
Cleaup options and dependencies.

Signed-off-by: Adrian Panella <ianchi74@outlook.com>
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-08-02 11:21:08 -04:00
Ian Leonard d2c8f9ecd2 ffmpeg: update to 2.7.6
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2016-02-22 15:43:58 -08:00
Ian Leonard ae9521d067 ffmpeg: update to 2.7.4
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2015-12-28 19:39:07 -08:00
Ted Hess 8de9653955 ffmpeg: Update to latest - 2.7.2
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-07-21 11:20:50 -04:00
Ian Leonard ae13b1441d ffmpeg: libffmpeg-audio-dec and -custom use integrated opus decoder
For libffmpeg-audio-dec:

Remove @DEVEL flag from libffmpeg-audio-dec. Reasoning for this is
that choosing this package does not rquire any further action by the
builder in what codecs or formats should be built in.
libffmpeg-custom, the other libffmpeg to require @DEVEL, does need
further interaction.

Add @BUILD_PATENTED as at least one of the audio codecs is likely
patent protected.

Add ffmpeg's native Opus decoder to libffmpeg-audio-dec

Remove libopus dependency to libffmpeg-audio-dec as libopus provides
decode and encode support for Opus audio. Since FFmpeg can decode
Opus audio on its own, and libffmpeg-audio-dec is intended for audio
decoding, libopus is no longer required for Opus audio support.

For libffmpeg-custom:

Add in options for ffmpeg's integrated Opus decoder

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2015-05-22 22:43:08 -07:00
Ian Leonard d1a5f0ab5d ffmpeg: update to 2.6.3, remove stray spaces
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2015-05-17 12:42:52 -07:00
Syrone Wong 7d81e52877 ffmpeg: upgrade to 2.6.2
2.6.2 was released on 2015-04-12. It is the latest stable FFmpeg release from the 2.6 release branch
2015-04-29 22:12:29 +08:00
Nicolas Thill 9828cf1ea1 ffmpeg: add icecast transport
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-04-26 18:58:08 +02:00
Nicolas Thill c3a822ef3d ffmpeg: disable lzma explicitly
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2015-04-24 02:36:37 +02:00
Ian Leonard 733ce321de ffmpeg: upgrade to 2.5.5
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2015-03-22 21:33:00 -07:00
Ian Leonard 32eafba860 ffmpeg: update to 2.5.4
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2015-02-28 13:58:12 -08:00
Ted Hess e74ed31e76 ffmpeg: Update to 2.5.3. Fix mips64 build failures
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-02-04 14:09:58 -05:00
Ian Leonard 44d4b10c94 ffmpeg: update to 2.4.5
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-12-24 14:30:39 -08:00
Ian Leonard 665cd72e82 ffmpeg: Update to 2.4.4
Drop fminf patch; fminf emulation is no longer included upstream.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-12-14 16:19:10 -08:00
Ted Hess 19e545b593 ffmpeg: Upgrade to 2.4.2. Supress libffmpeg-custom when ALL selected
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-10-29 12:47:59 -04:00
Bruno Randolf e652eb6243 ffmpeg: Disable mips32r2 for mips32 CPUs
Some CPUs, such as the au1500 are MIPS32 but not MIPS32r2 and we have to
explicitly disable mips32r2 in the ffmpeg configure script.

Signed-off-by: Bruno Randolf <br1@einfach.org>
2014-10-14 10:17:11 +01:00
Ian Leonard 94b4a11fe1 ffmpeg: Update to 2.3.4
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-10-11 22:13:15 -07:00
Ian Leonard ad20ef1147 ffmpeg: add libopus support
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-10-11 22:13:15 -07:00
Ian Leonard 39d930cfb4 ffmpeg: update to 2.3.3
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-08-30 01:23:46 -07:00
Ted Hess ca7ddc5abc ffmpeg: patch to fix build with uClibc 0.9.33.2
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-08-13 12:46:19 -04:00
Ian Leonard 8bbe2c06fa ffmpeg: improve minidlna profile
Minidlna has no need to mux streams, or be able to read network streams at this point in time, so remove this support from
libffmpeg.

Synchronize the minidlna profile between libffmpeg-ucstom and libffmpeg-mini.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-08-12 13:03:51 -07:00
Ian Leonard 2b414271f5 ffmpeg: add external libraries section to Config.in
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-08-12 13:03:51 -07:00
Ian Leonard bcb2eea7a4 ffmpeg: add audio-dec profile to libffmpeg-custom
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-08-12 13:03:51 -07:00
Ian Leonard 77366562a5 ffmpeg: Drop the libdlna profile from the Custom ffmpeg option. Libdlna is no longer in the package feed, and has an inactive
upstream.

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-08-12 13:03:51 -07:00
Ian Leonard b246dadc45 ffmpeg: Have the custom Vorbis decoder support select the Ogg demuxer.
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-08-12 13:03:51 -07:00
Ian Leonard 228c3d0dea ffmpeg: update to 2.3.1
Changes:
Disable SIMD usage; creates build errors
Disable runtime cpudetect as it's all disabled
Re-enable compiler optimizations
re-enable stripping

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-08-12 13:02:46 -07:00
Ian Leonard c729313425 ffmpeg: convert license to SPDX format.
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-07-31 21:34:30 -07:00