Overview
vlc-beta.changes
Changed
x
1
2
-------------------------------------------------------------------
3
-Fri Oct 9 09:09:09 UTC 2020 - olaf@aepfle.de
4
+Sun Jan 10 10:10:10 UTC 2021 - olaf@aepfle.de
5
6
-- Update to 20201009.4d79988692
7
+- Update to 20210110.7c10ffdd52
8
9
-------------------------------------------------------------------
10
Sun Jan 21 21:10:34 UTC 2018 - enzokiel@kabelmail.de
11
vlc-beta.spec
Changed
56
1
2
%bcond_with opengles
3
%endif
4
Name: vlc-beta
5
-Version: 20201009.4d79988692
6
+Version: 20210110.7c10ffdd52
7
Release: 0
8
Summary: Video Lan Client multimedia player
9
License: GPL-2.0+ and LGPL-2.1+
10
11
Source: %{name}-%{version}.tar.xz
12
Source1: %{name}.changes
13
Source3: %{name}-rpmlintrc
14
-Patch0: vlc.hostname.patch
15
+Patch0: vlc-beta.patch
16
Patch1: vlc.a52dec.patch
17
-Patch2: vlc.dvdread6.patch
18
-Patch3: vlc.libmodplug.patch
19
+Patch2: vlc.hostname.patch
20
Patch5: fix_lib_version.patch
21
Patch6: fix_freerdp2_detection.patch
22
Patch7: fix_lua53_luaL_checkint.patch
23
24
BuildRequires: pkgconfig(libva-drm)
25
BuildRequires: pkgconfig(libva-x11)
26
BuildRequires: pkgconfig(libavformat) >= 53.21.0
27
-BuildRequires: pkgconfig(libswscale)
28
+BuildRequires: pkgconfig(libswscale) >= 0.5.0
29
BuildRequires: pkgconfig(libpostproc)
30
BuildRequires: pkgconfig(faad2)
31
BuildRequires: pkgconfig(rav1e)
32
33
The all new Qt interface for the VLC VideoLAN Client.
34
35
%prep
36
-%setup -q
37
-%patch0 -p1
38
-%patch1 -p1
39
-%patch2 -p1
40
-%patch3 -p1
41
-%patch5 -p1
42
-%patch6 -p1
43
-%patch7 -p1
44
+%autosetup -p1
45
46
%build
47
# fix builddate info
48
49
--disable-coverage \
50
--disable-mod \
51
--disable-opencv \
52
- --disable-sdl-image \
53
--without-sanitizer \
54
--enable-optimizations \
55
--disable-fdkaac \
56
fix_freerdp2_detection.patch
Changed
67
1
2
--- a/configure.ac
3
+++ b/configure.ac
4
-@@ -2009,7 +2009,7 @@ PKG_ENABLE_MODULES_VLC([VNC], [vnc], [li
5
+@@ -2318,7 +2318,7 @@ PKG_ENABLE_MODULES_VLC([VNC], [vnc], [li
6
7
dnl RDP/Remote Desktop access module
8
dnl
9
-PKG_ENABLE_MODULES_VLC([FREERDP], [rdp], [freerdp >= 1.0.1], (RDP/Remote Desktop client support) )
10
-+PKG_ENABLE_MODULES_VLC([FREERDP], [rdp], [freerdp2 >= 1.0.1], (RDP/Remote Desktop client support) )
11
++PKG_ENABLE_MODULES_VLC([FREERDP], [rdp], [freerdp2], (RDP/Remote Desktop client support) )
12
13
dnl
14
dnl AVFoundation
15
--- a/modules/access/rdp.c
16
+++ b/modules/access/rdp.c
17
-@@ -144,6 +144,7 @@ static void desktopResizeHandler( rdpCon
18
+@@ -142,6 +142,7 @@ static void desktopResizeHandler( rdpCon
19
vlcrdp_context_t * p_vlccontext = (vlcrdp_context_t *) p_context;
20
demux_sys_t *p_sys = p_vlccontext->p_demux->p_sys;
21
rdpGdi *p_gdi = p_context->gdi;
22
23
24
if ( p_sys->es )
25
{
26
-@@ -153,6 +154,26 @@ static void desktopResizeHandler( rdpCon
27
+@@ -151,6 +152,26 @@ static void desktopResizeHandler( rdpCon
28
29
/* Now init and fill es format */
30
vlc_fourcc_t i_chroma;
31
32
switch( p_gdi->bytesPerPixel )
33
{
34
default:
35
-@@ -166,6 +187,7 @@ static void desktopResizeHandler( rdpCon
36
+@@ -164,6 +185,7 @@ static void desktopResizeHandler( rdpCon
37
i_chroma = VLC_CODEC_RGB32;
38
break;
39
}
40
41
es_format_t fmt;
42
es_format_Init( &fmt, VIDEO_ES, i_chroma );
43
44
-@@ -176,7 +198,7 @@ static void desktopResizeHandler( rdpCon
45
+@@ -174,7 +196,7 @@ static void desktopResizeHandler( rdpCon
46
fmt.video.i_height = p_gdi->height;
47
fmt.video.i_frame_rate_base = 1000;
48
fmt.video.i_frame_rate = 1000 * p_sys->f_fps;
49
50
51
if ( p_sys->p_block )
52
p_sys->p_block = block_Realloc( p_sys->p_block, 0, p_sys->i_framebuffersize );
53
-@@ -252,6 +274,12 @@ static bool postConnectHandler( freerdp
54
+@@ -250,6 +272,12 @@ static bool postConnectHandler( freerdp
55
p_instance->update->BeginPaint = beginPaintHandler;
56
p_instance->update->EndPaint = endPaintHandler;
57
58
59
gdi_init( p_instance,
60
CLRBUF_16BPP |
61
#if defined(FREERDP_VERSION_MAJOR) && defined(FREERDP_VERSION_MINOR) && \
62
-@@ -259,6 +287,7 @@ static bool postConnectHandler( freerdp
63
+@@ -257,6 +285,7 @@ static bool postConnectHandler( freerdp
64
CLRBUF_24BPP |
65
#endif
66
CLRBUF_32BPP, NULL );
67
vlc-beta.patch
Added
34
1
2
+control/cli/cli.c: In function 'Run':
3
+control/cli/cli.c:541:1: error: no return statement in function returning non-void [-Werror=return-type]
4
+
5
+diff --git a/modules/control/cli/cli.c b/modules/control/cli/cli.c
6
+index 2fa1e7b90d..5de888d3af 100644
7
+--- a/modules/control/cli/cli.c
8
++++ b/modules/control/cli/cli.c
9
+@@ -503,9 +503,8 @@ static void cli_client_delete(struct cli_client *cl)
10
+ free(cl);
11
+ }
12
+
13
+-static void *Run(void *data)
14
++static void _Run(intf_thread_t *intf)
15
+ {
16
+- intf_thread_t *intf = data;
17
+ intf_sys_t *sys = intf->p_sys;
18
+
19
+ assert(sys->pi_socket_listen != NULL);
20
+@@ -540,6 +539,13 @@ static void *Run(void *data)
21
+ }
22
+ }
23
+
24
++static void *Run(void *data)
25
++{
26
++ intf_thread_t *intf = data;
27
++ _Run(intf);
28
++ return NULL;
29
++}
30
++
31
+ #else
32
+ static void msg_vprint(intf_thread_t *p_intf, const char *psz_fmt, va_list args)
33
+ {
34
vlc.dvdread6.patch
Deleted
15
1
2
-diff --git a/configure.ac b/configure.ac
3
-index 4be9420a14..91fae4f71e 100644
4
---- a/configure.ac
5
-+++ b/configure.ac
6
-@@ -1898,7 +1898,7 @@ AS_IF([test "$SYS" = "linux" -a "${enable_linsys}" != "no"], [
7
- dnl
8
- dnl dvdread module: check for libdvdread
9
- dnl
10
--PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread > 6.0.0], [dvdread input module], [auto])
11
-+PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread >= 6.0.0], [dvdread input module], [auto])
12
-
13
- dnl
14
- dnl libdvdnav plugin
15
vlc.libmodplug.patch
Deleted
13
1
2
---- a/configure.ac
3
-+++ b/configure.ac
4
-@@ -2324,7 +2324,7 @@ AC_ARG_ENABLE([mod],
5
- AS_HELP_STRING([--disable-mod],
6
- [do not use libmodplug (default auto)]))
7
- if test "${enable_mod}" != "no" ; then
8
-- PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.9.0], [
9
-+ PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug], [
10
- VLC_ADD_PLUGIN([mod])
11
- VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
12
- VLC_ADD_CFLAGS([mod],[$LIBMODPLUG_CFLAGS]) #modules/demux/mod.c needs CFLAGS_mod, not CXXFLAGS_mod
13
vlc-beta-20201009.4d79988692.tar.xz
Deleted
vlc-beta-20210110.7c10ffdd52.tar.xz
Added
Refresh
Refresh
Login required, please
login
or
signup
in order to comment
Request History
olh created request over 4 years ago
- Update to 20210110.7c10ffdd52
olh accepted request over 4 years ago