summaryrefslogtreecommitdiff
path: root/media-libs/aubio/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-10-07 11:03:14 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-10-07 11:03:14 +0100
commit957235cf19a691360c720f7913672adda4258ed0 (patch)
tree812bba7928f4293ead05a7ee9c1ac39c5ef9f12e /media-libs/aubio/files
parent62f67115b5c46134c34f88f4b1cbdacc19384c0a (diff)
gentoo resync : 07.10.2018
Diffstat (limited to 'media-libs/aubio/files')
-rw-r--r--media-libs/aubio/files/aubio-0.4.1-ffmpeg29.patch22
-rw-r--r--media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch13
2 files changed, 0 insertions, 35 deletions
diff --git a/media-libs/aubio/files/aubio-0.4.1-ffmpeg29.patch b/media-libs/aubio/files/aubio-0.4.1-ffmpeg29.patch
deleted file mode 100644
index 86562716d3e5..000000000000
--- a/media-libs/aubio/files/aubio-0.4.1-ffmpeg29.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: aubio-0.4.1/src/io/source_avcodec.c
-===================================================================
---- aubio-0.4.1.orig/src/io/source_avcodec.c
-+++ aubio-0.4.1/src/io/source_avcodec.c
-@@ -167,7 +167,7 @@ aubio_source_avcodec_t * new_aubio_sourc
- }
-
- AVFrame *avFrame = s->avFrame;
-- avFrame = avcodec_alloc_frame();
-+ avFrame = av_frame_alloc();
- if (!avFrame) {
- AUBIO_ERR("source_avcodec: Could not allocate frame for (%s)\n", s->path);
- }
-@@ -415,7 +415,7 @@ void del_aubio_source_avcodec(aubio_sour
- }
- s->output = NULL;
- if (s->avFrame != NULL) {
-- avcodec_free_frame( &(s->avFrame) );
-+ av_frame_free( &(s->avFrame) );
- }
- s->avFrame = NULL;
- AUBIO_FREE(s);
diff --git a/media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch b/media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch
deleted file mode 100644
index 7df4665655bb..000000000000
--- a/media-libs/aubio/files/aubio-0.4.6-ffmpeg4.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-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;