diff options
author | B. Stack <bgstack15@gmail.com> | 2023-10-03 23:02:51 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2023-10-03 23:02:51 -0400 |
commit | ad65717c8aa98fd57817aa1cb772b6e673d95346 (patch) | |
tree | d8b59262f677de927343fa1a6e0d1811fddbcdee /makemkv-oss/debian/patches/missing-av_mallocz_array.patch | |
parent | makemkv 1.17.5 rc1 (diff) | |
download | stackrpms-ad65717c8aa98fd57817aa1cb772b6e673d95346.tar.gz stackrpms-ad65717c8aa98fd57817aa1cb772b6e673d95346.tar.bz2 stackrpms-ad65717c8aa98fd57817aa1cb772b6e673d95346.zip |
remove deprecated patch
Diffstat (limited to 'makemkv-oss/debian/patches/missing-av_mallocz_array.patch')
-rw-r--r-- | makemkv-oss/debian/patches/missing-av_mallocz_array.patch | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/makemkv-oss/debian/patches/missing-av_mallocz_array.patch b/makemkv-oss/debian/patches/missing-av_mallocz_array.patch deleted file mode 100644 index 86a56f0..0000000 --- a/makemkv-oss/debian/patches/missing-av_mallocz_array.patch +++ /dev/null @@ -1,18 +0,0 @@ -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); |