From 24f69abb43ce8100c3f25f08c7240d49ca1830ff3bdc5baf17242a6179731181 Mon Sep 17 00:00:00 2001 From: Antonio Larrosa Date: Mon, 7 Feb 2022 10:10:08 +0000 Subject: [PATCH 1/2] Accepting request 951656 from home:iznogood:branches:multimedia:libs - Update to version 1.18.5: + tagdemux: Fix crash when presented with malformed files (security fix) + videoencoder: make sure the buffer is writable before modifying metadata + video-converter: Fix for broken gamma remap with high bitdepth YUV output + sdpmessage: fix mapping single char fmtp params + oggdemux: fix a race in push mode when performing the duration seek + uridecodebin: Fix critical warnings + audio-converter: Fix resampling when there's nothing to output + tcp: fix build on Solaris + uridecodebin3: Nullify current item after all play items are freed. + audio-resampler: Fix segfault when we can't output any frames + urisourcebin: Handle sources with dynamic pads and pads already present + playbin2/3: autoplug/caps: don't expand caps to ANY + uridecodebin3/urisourcebin: Reusability fixes + rtspconnection: Only reset timeout when socket is unused + gstvideoaggregator.c: fix build with gcc 4.8 - Drop service, use source url, upstream changes in git. OBS-URL: https://build.opensuse.org/request/show/951656 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/gstreamer-plugins-base?expand=0&rev=175 --- _service | 21 --------------------- gst-plugins-base-1.18.5.tar.xz | 3 --- gst-plugins-base-1.18.6.tar.xz | 3 +++ gstreamer-plugins-base.changes | 27 +++++++++++++++++++++++++++ gstreamer-plugins-base.spec | 7 +++---- 5 files changed, 33 insertions(+), 28 deletions(-) delete mode 100644 _service delete mode 100644 gst-plugins-base-1.18.5.tar.xz create mode 100644 gst-plugins-base-1.18.6.tar.xz diff --git a/_service b/_service deleted file mode 100644 index 2f2216e..0000000 --- a/_service +++ /dev/null @@ -1,21 +0,0 @@ - - - - https://gitlab.freedesktop.org/gstreamer/gst-plugins-base.git - gst-plugins-base - @PARENT_TAG@+@TAG_OFFSET@ - (.*)\+0 - \1 - - 1.18.5 - git - - - xz - *.tar - - - - diff --git a/gst-plugins-base-1.18.5.tar.xz b/gst-plugins-base-1.18.5.tar.xz deleted file mode 100644 index 7b20ff8..0000000 --- a/gst-plugins-base-1.18.5.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f74051458419bf5954360c1f0d50938d2e1672f9fde623eb799053952fff9cdd -size 3175980 diff --git a/gst-plugins-base-1.18.6.tar.xz b/gst-plugins-base-1.18.6.tar.xz new file mode 100644 index 0000000..7f7c49d --- /dev/null +++ b/gst-plugins-base-1.18.6.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a9ff2fe9e6603b9e658cf6897d412a173d2180829fe01e92568549c6bd0f5b +size 3180564 diff --git a/gstreamer-plugins-base.changes b/gstreamer-plugins-base.changes index 34de902..0e49dc5 100644 --- a/gstreamer-plugins-base.changes +++ b/gstreamer-plugins-base.changes @@ -1,3 +1,30 @@ +------------------------------------------------------------------- +Fri Feb 4 19:15:19 UTC 2022 - Bjørn Lie + +- Update to version 1.18.5: + + tagdemux: Fix crash when presented with malformed files + (security fix) + + videoencoder: make sure the buffer is writable before modifying + metadata + + video-converter: Fix for broken gamma remap with high bitdepth + YUV output + + sdpmessage: fix mapping single char fmtp params + + oggdemux: fix a race in push mode when performing the duration + seek + + uridecodebin: Fix critical warnings + + audio-converter: Fix resampling when there's nothing to output + + tcp: fix build on Solaris + + uridecodebin3: Nullify current item after all play items are + freed. + + audio-resampler: Fix segfault when we can't output any frames + + urisourcebin: Handle sources with dynamic pads and pads already + present + + playbin2/3: autoplug/caps: don't expand caps to ANY + + uridecodebin3/urisourcebin: Reusability fixes + + rtspconnection: Only reset timeout when socket is unused + + gstvideoaggregator.c: fix build with gcc 4.8 +- Drop service, use source url, upstream changes in git. + ------------------------------------------------------------------- Thu Sep 16 09:14:32 UTC 2021 - Bjørn Lie diff --git a/gstreamer-plugins-base.spec b/gstreamer-plugins-base.spec index 6e9b09c..2a63c8d 100644 --- a/gstreamer-plugins-base.spec +++ b/gstreamer-plugins-base.spec @@ -20,17 +20,16 @@ %define gst_branch 1.0 %define gstreamer_req_version %(echo %{version} | sed -e "s/+.*//") Name: gstreamer-plugins-base -Version: 1.18.5 +Version: 1.18.6 Release: 0 Summary: GStreamer Streaming-Media Framework Plug-Ins License: GPL-2.0-or-later AND LGPL-2.1-or-later Group: Productivity/Multimedia/Other URL: https://gstreamer.freedesktop.org -# Disable tarball source url, use _service -#Source0: %%{url}/src/gst-plugins-base/%%{_name}-%%{version}.tar.xz -Source0: %{_name}-%{version}.tar.xz +Source0: %{url}/src/gst-plugins-base/%{_name}-%{version}.tar.xz Source1: gstreamer-plugins-base.appdata.xml Source2: baselibs.conf + # PATCH-FIX-OPENSUSE gstreamer-plugins-base-gl-deps.patch dimstar@opensuse.org -- Local workaround for https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/issues/735 Patch3: gstreamer-plugins-base-gl-deps.patch Patch4: add_wayland_dep_to_tests.patch From 5a3fd9a4ab482facad7d1e05e9100e88bb6b0b86f1630500e7cb5d92b448405c Mon Sep 17 00:00:00 2001 From: Antonio Larrosa Date: Mon, 7 Feb 2022 11:45:11 +0000 Subject: [PATCH 2/2] Accepting request 952104 from home:alarrosa:branches:multimedia:libs Fix version in changelog - Update to version 1.18.6: OBS-URL: https://build.opensuse.org/request/show/952104 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/gstreamer-plugins-base?expand=0&rev=176 --- gstreamer-plugins-base.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstreamer-plugins-base.changes b/gstreamer-plugins-base.changes index 0e49dc5..85978c3 100644 --- a/gstreamer-plugins-base.changes +++ b/gstreamer-plugins-base.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Fri Feb 4 19:15:19 UTC 2022 - Bjørn Lie -- Update to version 1.18.5: +- Update to version 1.18.6: + tagdemux: Fix crash when presented with malformed files (security fix) + videoencoder: make sure the buffer is writable before modifying