Hello community,
here is the log from the commit of package gstreamer-plugins-bad for
openSUSE:Factory checked in at 2020-06-04 17:51:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gstreamer-plugins-bad (Old)
and /work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gstreamer-plugins-bad"
Thu Jun 4 17:51:56 2020 rev:105 rq:811158 version:1.16.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/gstreamer-plugins-bad/gstreamer-plugins-bad.changes
2020-04-15 20:08:25.638184010 +0200
+++
/work/SRC/openSUSE:Factory/.gstreamer-plugins-bad.new.3606/gstreamer-plugins-bad.changes
2020-06-04 17:52:12.580221796 +0200
@@ -1,0 +2,6 @@
+Wed Jun 3 11:13:32 UTC 2020 - Dominique Leuenberger <[email protected]>
+
+- Add gst-plugins-bad-vkerror.patch: vulkan: Drop use of
+ VK_RESULT_BEGIN_RANGE.
+
+-------------------------------------------------------------------
New:
----
gst-plugins-bad-vkerror.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gstreamer-plugins-bad.spec ++++++
--- /var/tmp/diff_new_pack.9cMunk/_old 2020-06-04 17:52:13.880225793 +0200
+++ /var/tmp/diff_new_pack.9cMunk/_new 2020-06-04 17:52:13.884225805 +0200
@@ -48,7 +48,8 @@
Patch1: gst-bad-autoconvert-fix-lock-less.patch
# PATCH-FIX-UPSTREAM gst-plugins-bad-wayland-headers.patch -- Fix wayland
headers discovery
Patch2: gst-plugins-bad-wayland-headers.patch
-
+# PATCH-FIX-UPSTREAM gst-plugins-bad-vkerror.patch [email protected] --
vulkan: Drop use of VK_RESULT_BEGIN_RANGE
+Patch3: gst-plugins-bad-vkerror.patch
BuildRequires: Mesa-libGLESv3-devel
BuildRequires: fdupes
BuildRequires: gcc-c++
++++++ gst-plugins-bad-vkerror.patch ++++++
vulkan: Drop use of VK_RESULT_BEGIN_RANGE
This was removed in Vulkan 1.2.140.
> Shortly after 2020-04-24, we will be removing the automatically
> generated `VK_*_BEGIN_RANGE`, `VK_*_END_RANGE`, and `VK_*_RANGE_SIZE`
> tokens from the Vulkan headers. These tokens are currently defined for
> some enumerated types, but are explicitly not part of the Vulkan API.
> They existed only to support some Vulkan implementation internals,
> which no longer require them. We will be accepting comments on this
> topic in [#1230], but we strongly suggest any external projects using
> these tokens immediately migrate away from them.
[#1230]: https://github.com/KhronosGroup/Vulkan-Docs/issues/1230
Part-of: <!1255>
Index: gst-plugins-bad-1.16.2/ext/vulkan/vkerror.c
===================================================================
--- gst-plugins-bad-1.16.2.orig/ext/vulkan/vkerror.c
+++ gst-plugins-bad-1.16.2/ext/vulkan/vkerror.c
@@ -27,7 +27,7 @@
#include "vkerror.h"
/* *INDENT-OFF* */
-static const struct
+static const struct
{
VkResult result;
const char *str;
@@ -63,8 +63,6 @@ _vk_result_to_string (VkResult result)
if (result >= 0)
return NULL;
- if (result < VK_RESULT_BEGIN_RANGE)
- return "Unknown Error";
for (i = 0; i < G_N_ELEMENTS (vk_result_string_map); i++) {
if (result == vk_result_string_map[i].result)