From d9d3271af07e40d7cfa4d9b028b5c0c7c064d282 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 3 Oct 2023 20:22:22 -0400 Subject: makemkv 1.17.5 rc1 --- makemkv-oss/debian/_service | 6 +++--- makemkv-oss/debian/changelog | 11 +++++++++++ makemkv-oss/debian/makemkv-oss+stackrpms.dsc | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) (limited to 'makemkv-oss') diff --git a/makemkv-oss/debian/_service b/makemkv-oss/debian/_service index 162b3d7..8d2102a 100644 --- a/makemkv-oss/debian/_service +++ b/makemkv-oss/debian/_service @@ -1,7 +1,7 @@ git - https://bgstack15.ddns.net/cgit/stackrpms + https://gitlab.com/bgstack15/stackrpms.git makemkv-oss/debian debian makemkv-bump @@ -18,7 +18,7 @@ https makemkv.com - download/makemkv-oss-1.17.4.tar.gz - makemkv-oss_1.17.4.orig.tar.gz + download/makemkv-oss-1.17.5.tar.gz + makemkv-oss_1.17.5.orig.tar.gz diff --git a/makemkv-oss/debian/changelog b/makemkv-oss/debian/changelog index d0bd10a..6f8261b 100644 --- a/makemkv-oss/debian/changelog +++ b/makemkv-oss/debian/changelog @@ -1,3 +1,14 @@ +makemkv-oss (1.17.5-1+stackrpms) obs; urgency=low + + * Upstream updates + * Improved handling for discs with mastering errors + * Fixed several bughs related to HD-DVD handling (just about time...) + * Fixed Linux ARM64 executabe crashing on certain hardware + configurations + * Small improvements and bugfixes + + -- B. Stack Tue, 03 Oct 2023 20:20:26 -0400 + makemkv-oss (1.17.4-2+stackrpms) obs; urgency=low * Add av_mallocz_array patch diff --git a/makemkv-oss/debian/makemkv-oss+stackrpms.dsc b/makemkv-oss/debian/makemkv-oss+stackrpms.dsc index 8ceaa0c..2368b78 100644 --- a/makemkv-oss/debian/makemkv-oss+stackrpms.dsc +++ b/makemkv-oss/debian/makemkv-oss+stackrpms.dsc @@ -2,7 +2,7 @@ Format: 3.0 (quilt) Source: makemkv-oss Binary: makemkv-oss Architecture: any -Version: 1.17.4-2+stackrpms +Version: 1.17.5-1+stackrpms Maintainer: B. Stack Homepage: https://www.makemkv.com Standards-Version: 4.1.4 -- cgit From ad65717c8aa98fd57817aa1cb772b6e673d95346 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 3 Oct 2023 23:02:51 -0400 Subject: remove deprecated patch --- makemkv-oss/debian/changelog | 1 + .../debian/patches/missing-av_mallocz_array.patch | 18 ------------------ makemkv-oss/debian/patches/series | 1 - 3 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 makemkv-oss/debian/patches/missing-av_mallocz_array.patch (limited to 'makemkv-oss') diff --git a/makemkv-oss/debian/changelog b/makemkv-oss/debian/changelog index 6f8261b..db21cb5 100644 --- a/makemkv-oss/debian/changelog +++ b/makemkv-oss/debian/changelog @@ -6,6 +6,7 @@ makemkv-oss (1.17.5-1+stackrpms) obs; urgency=low * Fixed Linux ARM64 executabe crashing on certain hardware configurations * Small improvements and bugfixes + * Remove patch for av_mallocz_array -- B. Stack Tue, 03 Oct 2023 20:20:26 -0400 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); diff --git a/makemkv-oss/debian/patches/series b/makemkv-oss/debian/patches/series index ce8f4e2..e69de29 100644 --- a/makemkv-oss/debian/patches/series +++ b/makemkv-oss/debian/patches/series @@ -1 +0,0 @@ -missing-av_mallocz_array.patch -p1 -- cgit