summaryrefslogtreecommitdiff
path: root/makemkv-oss/debian/patches
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-09-14 10:49:11 -0400
committerB. Stack <bgstack15@gmail.com>2023-09-14 10:49:11 -0400
commit0dba28e1f62886b65977765e9101bcf64a13c48b (patch)
treefdde2e096092f7404b24acaa4b65625434c6b4b3 /makemkv-oss/debian/patches
parentadd waterfox-g (diff)
downloadstackrpms-0dba28e1f62886b65977765e9101bcf64a13c48b.tar.gz
stackrpms-0dba28e1f62886b65977765e9101bcf64a13c48b.tar.bz2
stackrpms-0dba28e1f62886b65977765e9101bcf64a13c48b.zip
makemkv: add patch for av_mallocz_array
Diffstat (limited to 'makemkv-oss/debian/patches')
-rw-r--r--makemkv-oss/debian/patches/missing-av_mallocz_array.patch18
-rw-r--r--makemkv-oss/debian/patches/series2
2 files changed, 19 insertions, 1 deletions
diff --git a/makemkv-oss/debian/patches/missing-av_mallocz_array.patch b/makemkv-oss/debian/patches/missing-av_mallocz_array.patch
new file mode 100644
index 0000000..86a56f0
--- /dev/null
+++ b/makemkv-oss/debian/patches/missing-av_mallocz_array.patch
@@ -0,0 +1,18 @@
+Author: junknot
+Origin: https://build.opensuse.org/package/show/home:junknot/makemkv
+Reference: https://forum.makemkv.com/forum/viewtopic.php?f=3&p=132993
+Version: 1.17.4
+Message: FFmpeg deprecated a function call name.
+diff --git a/libffabi/src/ffabi.c b/libffabi/src/ffabi.c
+index 5dda9e1..2b29b87 100644
+--- a/libffabi/src/ffabi.c
++++ b/libffabi/src/ffabi.c
+@@ -478,7 +478,7 @@ FFM_AudioEncodeContext* __cdecl ffm_audio_encode_init(void* logctx,const char* n
+ #else
+ ctx->frame = av_frame_alloc();
+ if (av_sample_fmt_is_planar(ctx->avctx->sample_fmt)) {
+- ctx->frame_extended_data = av_mallocz_array(ctx->avctx->channels,
++ ctx->frame_extended_data = av_calloc(ctx->avctx->channels,
+ sizeof(*ctx->frame_extended_data));
+ if (!ctx->frame_extended_data) {
+ ffm_audio_encode_close(ctx);
diff --git a/makemkv-oss/debian/patches/series b/makemkv-oss/debian/patches/series
index 4a97dfa..ce8f4e2 100644
--- a/makemkv-oss/debian/patches/series
+++ b/makemkv-oss/debian/patches/series
@@ -1 +1 @@
-# You must remove unused comment lines for the released package.
+missing-av_mallocz_array.patch -p1
bgstack15