summaryrefslogtreecommitdiff
path: root/media-video/makemkv/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-08-04 08:53:53 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-08-04 08:53:53 +0100
commite3872864be25f7421015bef2732fa57c0c9fb726 (patch)
tree9cb29a544215119b5c5538e37211b994ce1c87ae /media-video/makemkv/files
parent480486b52ea64765faf696c88b2c6a26a5a454d4 (diff)
gentoo resync : 04.08.2018
Diffstat (limited to 'media-video/makemkv/files')
-rw-r--r--media-video/makemkv/files/makemkv-ffmpeg.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/media-video/makemkv/files/makemkv-ffmpeg.patch b/media-video/makemkv/files/makemkv-ffmpeg.patch
deleted file mode 100644
index 930c144d263d..000000000000
--- a/media-video/makemkv/files/makemkv-ffmpeg.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Taken from https://negativo17.org/repos/multimedia/epel-7/SRPMS/makemkv-1.12.2-2.el7.src.rpm
-See https://github.com/FFmpeg/FFmpeg/commit/7c6eb0a1b7bf1aac7f033a7ec6d8cacc3b5c2615
-and https://github.com/FFmpeg/FFmpeg/commit/b79a7da36faa6bb5914b04800b548e99eb3b81ca
-diff --git a/libffabi/src/ffabi.c b/libffabi/src/ffabi.c
-index 20db4e9..f08d53c 100644
---- a/libffabi/src/ffabi.c
-+++ b/libffabi/src/ffabi.c
-@@ -517,7 +517,7 @@ FFM_AudioEncodeContext* __cdecl ffm_audio_encode_init(void* logctx,const char* n
- info->profile : FF_PROFILE_UNKNOWN;
-
- if ((CodecFlags&FFM_CODEC_FLAG_GLOBAL_HEADER)!=0)
-- ctx->avctx->flags |= CODEC_FLAG_GLOBAL_HEADER;
-+ ctx->avctx->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
-
- if (argp) {
- for (i=0;argp[i];i+=2) {
-@@ -718,7 +718,7 @@ int __cdecl ffm_audio_encode_get_info(FFM_AudioEncodeContext* ctx,FFM_AudioEncod
- info->delay = (int32_t)ctx->avctx->delay;
- info->flags = 0;
-
-- if ((ctx->avctx->flags&CODEC_FLAG_GLOBAL_HEADER)!=0)
-+ if ((ctx->avctx->flags&AV_CODEC_FLAG_GLOBAL_HEADER)!=0)
- info->flags |= FFM_CODEC_FLAG_GLOBAL_HEADER;
-
- return 0;