diff options
author | Alexis Ballier <aballier@gentoo.org> | 2018-04-20 16:51:11 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2018-04-20 20:11:56 +0200 |
commit | cc722585c1aa2e0d59093d53c8f466e51ae8aa60 (patch) | |
tree | b82509cfd9a8f3bc0426a7e196974afdfc6252bb /media-libs/aubio | |
parent | media-libs/mesa: Drop old version (diff) | |
download | gentoo-cc722585c1aa2e0d59093d53c8f466e51ae8aa60.tar.gz gentoo-cc722585c1aa2e0d59093d53c8f466e51ae8aa60.tar.bz2 gentoo-cc722585c1aa2e0d59093d53c8f466e51ae8aa60.zip |
media-libs/aubio: fix build with ffmpeg4
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'media-libs/aubio')
-rw-r--r-- | media-libs/aubio/aubio-0.4.6.ebuild | 3 | ||||
-rw-r--r-- | media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/media-libs/aubio/aubio-0.4.6.ebuild b/media-libs/aubio/aubio-0.4.6.ebuild index c02467cd6e71..9c6af6537ba0 100644 --- a/media-libs/aubio/aubio-0.4.6.ebuild +++ b/media-libs/aubio/aubio-0.4.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -40,6 +40,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" DOCS=( AUTHORS ChangeLog README.md ) PYTHON_SRC_DIR="${S}" +PATCHES=( "${FILESDIR}/${PN}-0.4.6-ffmpeg4.patch" ) src_prepare() { default diff --git a/media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch b/media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch new file mode 100644 index 000000000000..7df4665655bb --- /dev/null +++ b/media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch @@ -0,0 +1,13 @@ +Index: aubio-0.4.6/src/io/source_avcodec.c +=================================================================== +--- aubio-0.4.6.orig/src/io/source_avcodec.c ++++ aubio-0.4.6/src/io/source_avcodec.c +@@ -58,7 +58,7 @@ + #include "fmat.h" + #include "source_avcodec.h" + +-#define AUBIO_AVCODEC_MAX_BUFFER_SIZE FF_MIN_BUFFER_SIZE ++#define AUBIO_AVCODEC_MAX_BUFFER_SIZE AV_INPUT_BUFFER_MIN_SIZE + + struct _aubio_source_avcodec_t { + uint_t hop_size; |