[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
65/149: gnu: gst-libav: Update to 1.18.5.
From: |
guix-commits |
Subject: |
65/149: gnu: gst-libav: Update to 1.18.5. |
Date: |
Tue, 26 Oct 2021 23:52:19 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit f70d56b8581976709c13a5d747800e3caa05b9a1
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Oct 8 15:12:46 2021 -0400
gnu: gst-libav: Update to 1.18.5.
* gnu/packages/gstreamer.scm (gst-libav): Update to 1.18.5.
[source]: Remove patch, now integrated upstream.
* gnu/packages/patches/gst-libav-64channels-stack-corruption.patch: Delete
file.
* gnu/local.mk: De-register it.
---
gnu/local.mk | 1 -
gnu/packages/gstreamer.scm | 5 ++--
.../gst-libav-64channels-stack-corruption.patch | 31 ----------------------
3 files changed, 2 insertions(+), 35 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 97e1464..d3fd8a6 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1214,7 +1214,6 @@ dist_patch_DATA =
\
%D%/packages/patches/grub-efi-fat-serial-number.patch \
%D%/packages/patches/grub-setup-root.patch \
%D%/packages/patches/gspell-dash-test.patch \
- %D%/packages/patches/gst-libav-64channels-stack-corruption.patch \
%D%/packages/patches/gst-plugins-good-fix-test.patch \
%D%/packages/patches/guile-1.8-cpp-4.5.patch \
%D%/packages/patches/guile-2.2-skip-oom-test.patch \
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index e03da78..227f2c9 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -960,7 +960,7 @@ think twice about shipping them.")
(define-public gst-libav
(package
(name "gst-libav")
- (version "1.18.4")
+ (version "1.18.5")
(source
(origin
(method url-fetch)
@@ -968,9 +968,8 @@ think twice about shipping them.")
(string-append
"https://gstreamer.freedesktop.org/src/" name "/"
name "-" version ".tar.xz"))
- (patches (search-patches "gst-libav-64channels-stack-corruption.patch"))
(sha256
- (base32 "15n3x3vhshqa3icw93g4vqmqd46122anzqvfxwn6q8famlxlcjil"))))
+ (base32 "0j55jgk9sbhinfx2gsg21q609x6yzrixrn5xxlxd378fj6500bl2"))))
(build-system meson-build-system)
(native-inputs
`(("perl" ,perl)
diff --git a/gnu/packages/patches/gst-libav-64channels-stack-corruption.patch
b/gnu/packages/patches/gst-libav-64channels-stack-corruption.patch
deleted file mode 100644
index cc174e6..0000000
--- a/gnu/packages/patches/gst-libav-64channels-stack-corruption.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Fix a stack corruption when handling files with more than 64 audio
-channels:
-
-https://gstreamer.freedesktop.org/security/sa-2021-0005.html
-
-Patch copied from upstream source repository:
-
-https://gitlab.freedesktop.org/gstreamer/gst-libav/-/commit/dcea8baa14a5fc3b796d876baaf2f238546ba2b1
-
-diff --git a/ext/libav/gstavcodecmap.c b/ext/libav/gstavcodecmap.c
-index
b5be4bb7a5f2712f78383da9319754a8849e3307..be22f22cf5c7c7b22b13e44b10999adaacbcca2b
100644
---- a/ext/libav/gstavcodecmap.c
-+++ b/ext/libav/gstavcodecmap.c
-@@ -102,7 +102,7 @@ gst_ffmpeg_channel_layout_to_gst (guint64 channel_layout,
gint channels,
- guint nchannels = 0;
- gboolean none_layout = FALSE;
-
-- if (channel_layout == 0) {
-+ if (channel_layout == 0 || channels > 64) {
- nchannels = channels;
- none_layout = TRUE;
- } else {
-@@ -163,7 +163,7 @@ gst_ffmpeg_channel_layout_to_gst (guint64 channel_layout,
gint channels,
- } else {
- guint i;
-
-- for (i = 0; i < nchannels; i++)
-+ for (i = 0; i < nchannels && i < 64; i++)
- pos[i] = GST_AUDIO_CHANNEL_POSITION_NONE;
- }
- }
- 43/149: gnu: zxing-cpp: Update to 1.2.0., (continued)
- 43/149: gnu: zxing-cpp: Update to 1.2.0., guix-commits, 2021/10/26
- 47/149: gnu: gst-editing-services: Update to 1.19.2., guix-commits, 2021/10/26
- 49/149: gnu: e2fsprogs: Update to 1.46.4., guix-commits, 2021/10/26
- 50/149: gnu: lib2geom: Update to 1.1., guix-commits, 2021/10/26
- 51/149: gnu: pulseaudio: Update to 15.0., guix-commits, 2021/10/26
- 52/149: Revert commits made to resolve a gdk-pixbuf+svg propagation issue., guix-commits, 2021/10/26
- 55/149: gnu: abseil-cpp: Update to 20210324.2., guix-commits, 2021/10/26
- 56/149: gnu: mozjs-78: Update to 78.15.0., guix-commits, 2021/10/26
- 70/149: gnu: python-keras: Enable parallel tests., guix-commits, 2021/10/26
- 64/149: gnu: gst-plugins-ugly: Update to 1.18.5., guix-commits, 2021/10/26
- 65/149: gnu: gst-libav: Update to 1.18.5.,
guix-commits <=
- 67/149: gnu: python-gst: Update to 1.18.5., guix-commits, 2021/10/26
- 73/149: bluez: Update to 5.61., guix-commits, 2021/10/26
- 78/149: gnu: gtk+-2: Fix ‘builder’ test., guix-commits, 2021/10/26
- 81/149: build: qt-utils: Don't wrap .X-real files., guix-commits, 2021/10/26
- 92/149: gnu: rust: Add rust 1.54 and move all non-bootstrapping logic to it., guix-commits, 2021/10/26
- 96/149: gnu: python-pypa-build: Update to 0.7.0., guix-commits, 2021/10/26
- 84/149: gnu: make-ld-wrapper: Add a LINKER argument., guix-commits, 2021/10/26
- 58/149: gnu: polkit: Update to 0.120 and ungraft., guix-commits, 2021/10/26
- 60/149: gnu: gstreamer: Update to 1.18.5., guix-commits, 2021/10/26
- 61/149: gnu: gst-plugins-base: Update to 1.18.5., guix-commits, 2021/10/26