- Oct 19, 2021
-
-
-
-
-
-
-
This adds support for the spatial audio API introduced in iOS 15.
-
- Oct 18, 2021
-
-
-
-
-
To multiply two 2x3 matrices, the right matrix must be expanded to 3x3, by adding a row [0 0 1], so that the dimensions match (2x3 x 3x3 = 2x3). The matrix multiplication was erroneous: it behaved as if the matrix was expanded by an implicit row [1 1 1] instead. The error has been introduced by 31c20009.
-
- Oct 17, 2021
-
-
Rémi Denis-Courmont authored
According to the specification, EGL displays are not reference-counted by default. As such, `eglTerminate()` will terminate a display even if there are other users for it in the same process. This becomes a fatal problem if platform display is shared by multiple components, and the EGL display parameters are identical or deemed compatible by the EGL driver. Typically, this will occur with the window provider and the display. To fix this, the Khronos group defined an EGL extension to negotiate reference counting explicitly. * On Android, this patch makes no differences as the EGL enables reference counting by default, regardless of the baseline specifications. * On X11, this patch makes no differences because the module will create its own private Xlib `Display` as the platform display, such that the EGL display is not shareable. * This patch matters on Wayland where the `wl_display` pointer must be shared between the window provider and display. Without this patch, Either the window provider or the display cannot use EGL. * On Windows, the situation ought to be similar to Wayland, though this is much less of an issue, as EGL is not typically used. This patch does **not** require reference counting if not available as this would needlessly break on Android and X11, as well as with the non-embedded XDG-shell window provider on Wayland.
-
- Oct 16, 2021
-
-
Since 6b7a6d86 the shaders are stored in a ComPtr. Copying the value also adds a reference automatically.
-
The OpenGL states must not be set on Open, but on each Draw call if necessary (they may impact other filters). In practice, it is not necessary to set them at all: - GL_CULL_FACE is useless for the renderer; - the other states are assumed to be the default values in all other filters. Suggested-by:
Niklas Haas <git@haasn.dev>
-
For historical reasons, the TLS cleanup was serialised on a critical section. Now that there is a read/write lock, there are no reasons to serialise exit. The thread exit process only reads the list head and elements, does not modify the list per se; only vlc_threadvar_create() and vlc_threadvar_delete() add and remove elements respectively. This allows threads to exit in parallel.
-
The VLC API "wastes" time preserving the thread's system error code. There are no ways to consume those errors in the thread exit code, so there is really no point in going out of our way here.
-
Old-style TLS keys only need to be in the list if they have a per-thread destructor. If they don't, then don't put them in that list, so iterating the list is faster.
-
Old-style TLS keys only need to be in the list if they have a per-thread destructor. If they don't, then don't put them in that list, so iterating the list is faster.
-
If there is no crop, the right and bottom position are the width and the height, respectively. Fix regression introduced by 13282687.
-
- Oct 15, 2021
-
-
-
-
If not we are leaking a TlsAlloc ID and it make indicate other leaks in more threads.
-
If not we are leaking a TlsAlloc ID and it make indicate other leaks in more threads.
-
Steve Lhomme authored
The API is available since Vista and is also available in winstore app. We don't have to support 2 different versions anymore in 4.0.
-
Steve Lhomme authored
The "ifdef" doesn't seem to be taken in account. It's as if the define was always set. Now that the define is properly used we need to pass it to moc.
-
- Oct 14, 2021
-
-
Rémi Denis-Courmont authored
If http-proxy exists, it is already checked by the common core code.
-
-
-
fix #25571
-
Running the (3.0) code with --no-qt-error-dialogs asserts.
-
Pierre Lamot authored
-
Pierre Lamot authored
-
Pierre Lamot authored
-
Pierre Lamot authored
-
Steve Lhomme authored
So we tell the thread was canceled. NULL is usually the value returned by threads terminating normally.
-
Steve Lhomme authored
-
Steve Lhomme authored
So we tell the thread was canceled. NULL is usually the value returned by threads terminating normally. The proper value to return on a canceled thread is VLC_THREAD_CANCELED.
-
Steve Lhomme authored
So we tell the thread was canceled. NULL is usually the value returned by threads terminating normally. The proper value to return on a canceled thread is VLC_THREAD_CANCELED.
-
Steve Lhomme authored
This reduces _DLL_InitTerm() to the bare minimum.
-
Steve Lhomme authored
This is already used in many places in the core so it has to be supported.
-
Steve Lhomme authored
This is supported even in MSVC with __declspec(thread).
-