[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
46/227: gnu: gst-libav: Update to 1.19.2.
From: |
guix-commits |
Subject: |
46/227: gnu: gst-libav: Update to 1.19.2. |
Date: |
Thu, 11 Nov 2021 12:29:58 -0500 (EST) |
apteryx pushed a commit to branch core-updates-frozen
in repository guix.
commit 5be7ae7bf345fb3b4b4ed84e63f1cb48d0efb357
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Oct 2 00:29:20 2021 -0400
gnu: gst-libav: Update to 1.19.2.
* gnu/packages/gstreamer.scm (gst-libav): Update to 1.19.2.
[source]: Re-indent origin. Delete patches field.
[meson]: Use meson-0.55.
* gnu/packages/patches/gst-libav-64channels-stack-corruption.patch: Delete
file.
* gnu/local.mk (dist_patch_DATA): De-register it.
---
gnu/local.mk | 1 -
gnu/packages/gstreamer.scm | 21 +++++++--------
.../gst-libav-64channels-stack-corruption.patch | 31 ----------------------
3 files changed, 10 insertions(+), 43 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 59ac1f1..308643b 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1216,7 +1216,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/guile-1.8-cpp-4.5.patch \
%D%/packages/patches/guile-2.2-skip-oom-test.patch \
%D%/packages/patches/guile-2.2-skip-so-test.patch \
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index efa5b2c..be6c85e 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -949,18 +949,17 @@ think twice about shipping them.")
(define-public gst-libav
(package
(name "gst-libav")
- (version "1.18.4")
- (source
- (origin
- (method url-fetch)
- (uri
- (string-append
- "https://gstreamer.freedesktop.org/src/" name "/"
- name "-" version ".tar.xz"))
- (patches (search-patches "gst-libav-64channels-stack-corruption.patch"))
- (sha256
- (base32 "15n3x3vhshqa3icw93g4vqmqd46122anzqvfxwn6q8famlxlcjil"))))
+ (version "1.19.2")
+ (source (origin
+ (method url-fetch)
+ (uri(string-append
+ "https://gstreamer.freedesktop.org/src/" name "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
"0rv4vxrqvlc8lm1afcg934k961gysx94xshmb5jv4xpwjkl8akzw"))))
(build-system meson-build-system)
+ (arguments
+ `(#:meson ,meson-0.55))
(native-inputs
`(("perl" ,perl)
("pkg-config" ,pkg-config)
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;
- }
- }
- 45/227: gnu: gst-plugins-ugly: Update to 1.19.2., (continued)
- 45/227: gnu: gst-plugins-ugly: Update to 1.19.2., guix-commits, 2021/11/11
- 44/227: gnu: gst-plugins-bad: Update to 1.19.2., guix-commits, 2021/11/11
- 49/227: gnu: e2fsprogs: Update to 1.46.4., guix-commits, 2021/11/11
- 50/227: gnu: lib2geom: Update to 1.1., guix-commits, 2021/11/11
- 51/227: gnu: pulseaudio: Update to 15.0., guix-commits, 2021/11/11
- 53/227: gnu: googletest: Update to 1.11.0., guix-commits, 2021/11/11
- 55/227: gnu: abseil-cpp: Update to 20210324.2., guix-commits, 2021/11/11
- 32/227: gnu: python-docutils: Update to 0.17.1., guix-commits, 2021/11/11
- 37/227: gnu: python-sphinxcontrib-serializinghtml: Update to 1.1.5., guix-commits, 2021/11/11
- 42/227: gnu: gst-plugins-good: Update to 1.19.2., guix-commits, 2021/11/11
- 46/227: gnu: gst-libav: Update to 1.19.2.,
guix-commits <=
- 27/227: gnu: gst-editing-services: Update to 1.18.4., guix-commits, 2021/11/11
- 47/227: gnu: gst-editing-services: Update to 1.19.2., guix-commits, 2021/11/11
- 48/227: gnu: python-gst: Update to 1.19.2., guix-commits, 2021/11/11
- 52/227: Revert commits made to resolve a gdk-pixbuf+svg propagation issue., guix-commits, 2021/11/11
- 57/227: gnu: Add a missing copyright., guix-commits, 2021/11/11
- 58/227: gnu: polkit: Update to 0.120 and ungraft., guix-commits, 2021/11/11
- 71/227: gnu: dbus-c++: Fix build., guix-commits, 2021/11/11
- 75/227: gnu: glibc: Remove unneeded nscd patching., guix-commits, 2021/11/11
- 70/227: gnu: python-keras: Enable parallel tests., guix-commits, 2021/11/11
- 72/227: gnu: libnice: Update to 0.1.18-0.47a9633 and disable test-bind test., guix-commits, 2021/11/11