diff options
author | 2017-05-18 13:40:18 +0200 | |
---|---|---|
committer | 2017-05-18 13:40:18 +0200 | |
commit | 83743e167f12cd4959d4c026dbbba60adf2e4119 (patch) | |
tree | 31cc1075c7e3a546c748b9e2758ab9d4c9daa064 /media-plugins/alsa-plugins/files | |
parent | media-plugins/alsa-plugins: Bump to version 1.1.4 (diff) | |
download | gentoo-83743e167f12cd4959d4c026dbbba60adf2e4119.tar.gz gentoo-83743e167f12cd4959d4c026dbbba60adf2e4119.tar.bz2 gentoo-83743e167f12cd4959d4c026dbbba60adf2e4119.zip |
media-plugins/alsa-plugins: Removed old.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'media-plugins/alsa-plugins/files')
-rw-r--r-- | media-plugins/alsa-plugins/files/alsa-plugins-1.0.29-ffmpeg29.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/media-plugins/alsa-plugins/files/alsa-plugins-1.0.29-ffmpeg29.patch b/media-plugins/alsa-plugins/files/alsa-plugins-1.0.29-ffmpeg29.patch deleted file mode 100644 index efd37839f326..000000000000 --- a/media-plugins/alsa-plugins/files/alsa-plugins-1.0.29-ffmpeg29.patch +++ /dev/null @@ -1,30 +0,0 @@ -Index: alsa-plugins-1.0.29/a52/pcm_a52.c -=================================================================== ---- alsa-plugins-1.0.29.orig/a52/pcm_a52.c -+++ alsa-plugins-1.0.29/a52/pcm_a52.c -@@ -39,7 +39,6 @@ - #endif - - #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(53, 34, 0) --#include <libavutil/audioconvert.h> - #include <libavutil/mem.h> - #define USE_AVCODEC_FRAME - #endif -@@ -513,7 +512,7 @@ static void a52_free(struct a52_ctx *rec - rec->inbuf = NULL; - } - #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54, 28, 0) -- avcodec_free_frame(&rec->frame); -+ av_frame_free(&rec->frame); - #else - av_freep(&rec->frame); - #endif -@@ -557,7 +556,7 @@ static int alloc_input_buffer(snd_pcm_io - { - struct a52_ctx *rec = io->private_data; - #ifdef USE_AVCODEC_FRAME -- rec->frame = avcodec_alloc_frame(); -+ rec->frame = av_frame_alloc(); - if (!rec->frame) - return -ENOMEM; - if (av_samples_alloc(rec->frame->data, rec->frame->linesize, |