Updating link to change in openSUSE:Factory/vlc revision 147

OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/vlc?expand=0&rev=29110908d616ca15e28ec8388e377965
This commit is contained in:
OBS User buildservice-autocommit 2024-05-23 13:34:42 +00:00 committed by Git OBS Bridge
parent e0695037fc
commit fb5917ae92
3 changed files with 36 additions and 0 deletions

27
770789f2.patch Normal file
View File

@ -0,0 +1,27 @@
From 770789f265761fc7ab2de69ca105fec4ad93d9e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= <remi@remlab.net>
Date: Mon, 26 Feb 2018 20:36:29 +0200
Subject: [PATCH] chromaprint: missing cast
(cherry picked from commit 7bd5bab3e43ae187f7219db61ed85d06d2ba0547)
Signed-off-by: Steve Lhomme <robux4@ycbcr.xyz>
---
modules/stream_out/chromaprint.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/stream_out/chromaprint.c b/modules/stream_out/chromaprint.c
index 80ec31ba2590..c76cbda3c2bb 100644
--- a/modules/stream_out/chromaprint.c
+++ b/modules/stream_out/chromaprint.c
@@ -231,7 +231,7 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_sys_t *id,
if ( !p_sys->b_finished && id->i_samples > 0 && p_buf->i_buffer )
{
if(! chromaprint_feed( p_sys->p_chromaprint_ctx,
- p_buf->p_buffer,
+ (int16_t *)p_buf->p_buffer,
p_buf->i_buffer / BYTESPERSAMPLE ) )
msg_Warn( p_stream, "feed error" );
id->i_samples -= i_samples;
--
GitLab

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed May 22 12:52:19 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
- Add 770789f2.patch: Fix missing cast in chromaprint
(boo#1223909).
-------------------------------------------------------------------
Tue May 14 14:47:20 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@ -56,6 +56,8 @@ Patch5: vlc-libplacebo-5.patch
Patch6: vlc-taglib-2.0.patch
# PATCH-FIX-UPSTREAM
Patch7: https://code.videolan.org/videolan/vlc/-/merge_requests/4645.patch
# PATCH-FIX-UPSTREAM -- chromaprint, missing cast
Patch8: https://code.videolan.org/videolan/vlc/-/commit/770789f2.patch
# PATCH-FEATURE-OPENSUSE vlc-projectM-qt5.patch -- Build against projectM-qt5; openSUSE provides projectM as -qt and -qt5 variant
Patch100: vlc-projectM-qt5.patch
# PATCH-FIX-UPSTREAM -- Use OpenCV C++ API
@ -417,6 +419,7 @@ OpenCV based video filters and a face detection example.
%patch -P 4 -p1
%patch -P 6 -p1
%patch -P 7 -p1
%patch -P 8 -p1
%if 0%{?suse_version} > 1320 && 0%{?suse_version} < 1550 && 0%{?sle_version} < 150200
%patch -P 100 -p1
%endif