Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vlc for openSUSE:Factory checked in at 2026-02-12 17:25:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vlc (Old) and /work/SRC/openSUSE:Factory/.vlc.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vlc" Thu Feb 12 17:25:46 2026 rev:163 rq:1332491 version:3.0.23 Changes: -------- --- /work/SRC/openSUSE:Factory/vlc/vlc.changes 2026-01-27 16:07:03.924885027 +0100 +++ /work/SRC/openSUSE:Factory/.vlc.new.1977/vlc.changes 2026-02-12 17:26:19.360632286 +0100 @@ -1,0 +2,19 @@ +Wed Feb 11 14:00:16 UTC 2026 - Dominique Leuenberger <[email protected]> + +- Replace the content of vlc-gstreamer-1.28-build-fix.patch with + the upstream proposed variant from + https://code.videolan.org/videolan/vlc/-/merge_requests/8479 + +------------------------------------------------------------------- +Wed Feb 11 11:21:20 UTC 2026 - Takashi Iwai <[email protected]> + +- Fix build with gstreamer 1.28: + vlc-gstreamer-1.28-build-fix.patch + +------------------------------------------------------------------- +Thu Feb 5 15:28:23 UTC 2026 - Dominique Leuenberger <[email protected]> + +- Disable faad support on Leap 15.x, unless in BUILD_ORIG case (3rd + party repos): faad2 does not exist in Leap 15.x. + +------------------------------------------------------------------- New: ---- vlc-gstreamer-1.28-build-fix.patch ----------(New B)---------- New: - Replace the content of vlc-gstreamer-1.28-build-fix.patch with the upstream proposed variant from ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vlc.spec ++++++ --- /var/tmp/diff_new_pack.WpwiMu/_old 2026-02-12 17:26:20.588684384 +0100 +++ /var/tmp/diff_new_pack.WpwiMu/_new 2026-02-12 17:26:20.588684384 +0100 @@ -30,7 +30,11 @@ %bcond_with vdpau # VNC support - the module is not really usable in most cases tested so far (e.g. against qemu-kvm -vnc :xx) %bcond_with vnc +%if 0%{?suse_version} >= 1600 || 0%{?BUILD_ORIG} %bcond_without faad +%else +%bcond_with faad +%endif %define chromecast 0%{?suse_version} > 1500 || 0%{?sle_version} > 150600 # vlc needs a c++17 compiler at least %if 0%{?sle_version} && 0%{?sle_version} < 160000 @@ -56,6 +60,8 @@ Patch100: vlc-projectM-qt5.patch # PATCH-FIX-UPSTREAM -- Use OpenCV C++ API Patch103: 0001-Port-OpenCV-facedetect-example-to-C-API.patch +# PATCH-FIX-OPENSUSE vlc-gstreamer-1.28-build-fix.patch -- Fix building with gstreamer-1.28vlc-gstreamer-1.28-build-fix.patch +Patch104: vlc-gstreamer-1.28-build-fix.patch BuildRequires: Mesa-devel BuildRequires: aalib-devel @@ -389,6 +395,7 @@ %patch -P 100 -p1 %endif %patch -P 103 -p1 +%patch -P 104 -p1 ### And LUA 5.3.1 has some more API changes if pkg-config --atleast-version 5.3.1 lua; then ++++++ vlc-gstreamer-1.28-build-fix.patch ++++++ >From e2acc2828d2d8e1ba432dc4c918e84058a1d84c8 Mon Sep 17 00:00:00 2001 From: Steve Lhomme <[email protected]> Date: Wed, 11 Feb 2026 14:26:56 +0100 Subject: [PATCH] gstreamer: remove unneeded includes We don't use anything specific to these headers that is not include by gstvlcpictureplaneallocator.h. Fixes #29604 --- modules/codec/gstreamer/gstvlcvideopool.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/codec/gstreamer/gstvlcvideopool.h b/modules/codec/gstreamer/gstvlcvideopool.h index 996665c4a3d..495643d929d 100644 --- a/modules/codec/gstreamer/gstvlcvideopool.h +++ b/modules/codec/gstreamer/gstvlcvideopool.h @@ -26,9 +26,6 @@ #ifndef VLC_GST_VIDEO_POOL_H #define VLC_GST_VIDEO_POOL_H -#include <gst/gstbufferpool.h> -#include <gst/video/gstvideopool.h> - #include "gstvlcpictureplaneallocator.h" typedef struct _GstVlcVideoPool GstVlcVideoPool; -- GitLab
