update to vlc-3.0.17.3, from Brad Smith (maintainer)

This commit is contained in:
sthen 2022-03-20 09:51:15 +00:00
parent 6ac6a54c21
commit 8165e265c9
3 changed files with 5 additions and 22 deletions

View File

@ -1,12 +1,10 @@
COMMENT-main= VideoLAN client; multimedia player
COMMENT-jack= JACK audio output module for VLC
V= 3.0.14
V= 3.0.17.3
DISTNAME= vlc-${V}
PKGNAME-main= ${DISTNAME}
PKGNAME-jack= vlc-jack-${V}
REVISION-main= 2
REVISION-jack= 0
CATEGORIES= x11
MASTER_SITES= https://download.videolan.org/pub/videolan/vlc/${V}/
EXTRACT_SUFX= .tar.xz
@ -38,8 +36,8 @@ WANTLIB-main= EGL GL ICE Qt5Core Qt5Gui Qt5Svg Qt5Widgets Qt5X11Extras \
pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre pcre2-16 \
pixman-1 placebo png postproc protobuf-lite rsvg-2 \
smb2 sndio soxr speex speexdsp ssl swresample swscale \
tag tar tasn1 theoradec theoraenc tiff unistring usbhid \
vorbis vorbisenc vpx webp x264 x265 xcb xcb-composite \
tag tar tasn1 theoradec theoraenc tiff udfread unistring \
usbhid vorbis vorbisenc vpx webp x264 x265 xcb xcb-composite \
xcb-dri2 xcb-dri3 xcb-glx xcb-keysyms xcb-present xcb-randr \
xcb-render xcb-shm xcb-sync xcb-xfixes xcb-xv xml2 \
xshmfence xvidcore z zstd ${WANTLIB-common}

View File

@ -1,2 +1,2 @@
SHA256 (vlc-3.0.14.tar.xz) = Sbk+WzPeqjcGDmskqYIAytcMQHlH8U6yqLagxk2FNaY=
SIZE (vlc-3.0.14.tar.xz) = 26424968
SHA256 (vlc-3.0.17.3.tar.xz) = b36Q74lz0x2W3mTbgXFz40UVCClxepQISxu4MhzeIBQ=
SIZE (vlc-3.0.17.3.tar.xz) = 26393440

View File

@ -1,15 +0,0 @@
sndio: fix crash when volume is adjusted while stopped
e94b04c8f867382ce6835254d29ee54fe855c686
Index: modules/audio_output/sndio.c
--- modules/audio_output/sndio.c.orig
+++ modules/audio_output/sndio.c
@@ -208,6 +208,8 @@ static void Stop (audio_output_t *aout)
{
aout_sys_t *sys = aout->sys;
+ aout->volume_set = NULL;
+ aout->mute_set = NULL;
sio_close (sys->hdl);
}