Projects
Extra
vlc-beta
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 212
View file
_service:obs_scm:vlc-beta-20251211.cfaeefa7a.obscpio/modules/access/http/message.c -> _service:obs_scm:vlc-beta-20251212.18059c509.obscpio/modules/access/http/message.c
Changed
@@ -442,7 +442,7 @@ if (m->status >= 0) { - assert(m->status < 1000); + if (m->status >= 1000) vlc_assert_unreachable(); snprintf(status, ARRAY_SIZE(status), "%hd", m->status); headersi0 = ":status"; headersi1 = status;
View file
_service:obs_scm:vlc-beta-20251211.cfaeefa7a.obscpio/modules/audio_filter/param_eq.c -> _service:obs_scm:vlc-beta-20251212.18059c509.obscpio/modules/audio_filter/param_eq.c
Changed
@@ -147,7 +147,7 @@ i_samplerate, p_sys->coeffs+2*5); CalcShelfEQCoeffs(p_sys->f_lowf, 1, p_sys->f_lowgain, 0, i_samplerate, p_sys->coeffs+3*5); - CalcShelfEQCoeffs(p_sys->f_highf, 1, p_sys->f_highgain, 0, + CalcShelfEQCoeffs(p_sys->f_highf, 1, p_sys->f_highgain, 1, i_samplerate, p_sys->coeffs+4*5); p_sys->p_state = (float*)calloc( p_filter->fmt_in.audio.i_channels*5*4, sizeof(float) );
View file
_service:obs_scm:vlc-beta-20251211.cfaeefa7a.obscpio/modules/demux/Makefile.am -> _service:obs_scm:vlc-beta-20251212.18059c509.obscpio/modules/demux/Makefile.am
Changed
@@ -540,13 +540,11 @@ libytdl_plugin_la_SOURCES = demux/ytdl.c libytdl_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -DEXEEXT=\"$(EXEEXT)\" libytdl_plugin_la_LIBADD = libvlc_json.la -if !HAVE_WIN32 if !HAVE_ANDROID if !HAVE_EMSCRIPTEN demux_LTLIBRARIES += libytdl_plugin.la endif endif -endif libnoseek_plugin_la_SOURCES = demux/filter/noseek.c demux_LTLIBRARIES += libnoseek_plugin.la
View file
_service:obs_scm:vlc-beta-20251211.cfaeefa7a.obscpio/modules/demux/ytdl.c -> _service:obs_scm:vlc-beta-20251212.18059c509.obscpio/modules/demux/ytdl.c
Changed
@@ -29,6 +29,9 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> /* STDERR_FILENO */ +#ifdef _WIN32 +# include <processthreadsapi.h> +#endif #include "json/json.h" #include <vlc_common.h> @@ -89,6 +92,34 @@ return fds0; } +#ifdef _WIN32 +static int vlc_kill(pid_t pid, int signum) +{ + HANDLE h = OpenProcess(PROCESS_TERMINATE, FALSE, pid); + BOOL res; + + if (h == NULL) { + errno = ESRCH; + return -1; + } + + if (signum > 0) + res = TerminateProcess(h, signum); + else + res = TRUE; + + CloseHandle(h); + + if (!res) { + errno = EINVAL; + return -1; + } + + return 0; +} +#define kill(p, s) vlc_kill(p, s) +#endif + struct ytdl_playlist { struct json_object json; stream_t *source;
View file
_service:obs_scm:vlc-beta.obsinfo
Changed
@@ -1,4 +1,4 @@ name: vlc-beta -version: 20251211.cfaeefa7a -mtime: 1765433055 -commit: cfaeefa7adbe50acccb7e21411263fc4aea382bb +version: 20251212.18059c509 +mtime: 1765551652 +commit: 18059c509cd0856b31463c322c084f1ccd695ab7
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.