- Dec 07, 2023
-
-
(cherry picked from commit 7bd5bab3) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
Steve Lhomme authored
The whole Breakpad API on Windows uses wstring. (cherry picked from commit 1040e9a7) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
Steve Lhomme authored
It's copied internally by breakpad. (cherry picked from commit 3e3292a5) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
Steve Lhomme authored
(cherry picked from commit 520c9e92) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
Steve Lhomme authored
(cherry picked from commit 787eba6f) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
If breakpad is not used, the crash_handling variable is not used too, but as it's used otherwise this should be silenced. (cherry picked from commit 81c60915) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org> (cherry picked from commit a7611f68) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Dec 05, 2023
-
-
Font alpha is 8-bits, not 32-bits. (cherry picked from commit 6f14081a) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
(cherry picked from commit d42e05d6) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
(cherry picked from commit ab00e6c5) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
Signed-off-by:
Thomas Guillem <thomas@gllm.fr> (cherry picked from commit 77b86f44) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
Thomas Guillem authored
Fixes #28441
-
- Nov 24, 2023
-
-
When outlayout->mNumberChannelDescriptions is bigger than AOUT_CHAN_MAX. Fixes #28424 (cherry picked from commit 5225251c) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
No major changes, bugfixes only.
-
- Nov 08, 2023
-
-
Steve Lhomme authored
MSVC doesn't have ssize_t but it has SSIZE_T which should be similar. clang-cl doesn't have any ssize_t in its header and defines _MSC_VER so it should work as well. Co-authored-by:
Martin Finkel <martin@videolabs.io>
-
- Nov 02, 2023
-
-
Steve Lhomme authored
Fixes #28413
-
- Oct 30, 2023
-
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Steve Lhomme authored
Newer Windows issue this warning if we send metadata with each picture: DXGI WARNING: IDXGISwapChain4::SetHDRMetaData: Redundant invocation on unchanged metadata could result in presentation performance inefficiency. [ MISCELLANEOUS WARNING #295: ] Similar code as done in 26954081 for VLC 4.0.
-
- Oct 27, 2023
-
-
Steve Lhomme authored
On 3.0 the pool video format doesn't have to match the decoder actual padding. The quad handling to place the picture will take care of this with the actual texture size. We still need to fix the semiplanar dimensions although it's unlikely the quad will use anything else than an RGB output. Fixes green line seen in fullscreen.
-
Follow-up to ed22580d, which did this on Linux.
-
- Oct 26, 2023
-
-
Thomas Guillem authored
(cherry picked from commit f7f346e6) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
- Oct 21, 2023
-
-
If InitVideoDecCommon() fails, it's already cleaning the decoder, release the context and freeing p_sys. We must not do anything and just return the error. (cherry picked from commit fecebe15)
-
It looks like windows doesn't consider which window is active the same way X11 does fix: #28399
-
LIBCn is a fork of kLIBC, and it has socklen_t in sys/socket.h. (cherry picked from commit 4baa00c9)
-
- Oct 19, 2023
-
-
Steve Lhomme authored
(cherry picked from commit d18fd89b) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Oct 18, 2023
-
-
This fixes #28377 -- the issue when double-clicking on MOUSE_BUTTON_CENTER (mouse wheel) would result in plugins receiving mouse events only for the first click, as VLC was filtering out all non-left-mouse-button double-clicks. The non-left-mouse-button double-click events, instead of being entirely filtered out, are now being passed as regular mouse button presses without any indication that they are double-clicks. While it would be more proper to pass them as double-clicks with the corresponding mouse button being pressed, that might break some 3rd party plugins that rely on (vlc_mouse_t.b_double_click == true) to mean that the left mouse button was double-clicked, without checking if the left mouse button was actually pressed. Still, even with b_double_click not being set on non-left-mouse-button double-clicks, passing such double-clicks as regular press+release events does fix the issue of VLC "eating up" the second click of a MOUSE_BUTTON_CENTER, so this is a good change.
-
- Oct 14, 2023
-
-
It's used in Direct3D11CreateFormatResources(). We can update it every time Direct3D11Open() is called.
-
There might be holes in the index list but we need to check each of them to find our driver.
-
- Oct 10, 2023
-
-
> 1.3.0 is a medium release reducing memory footprint, increasing again > the speed on x86 and ARM and extending the API functions. https://code.videolan.org/videolan/dav1d/-/tags/1.3.0 (cherry picked from commit cf283cb7) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Sep 30, 2023
-
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
CVE-2023-5217 https://crbug.com/1486441 (CVE-2023-5217) (cherry picked from commit ab520205) Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
- Sep 27, 2023
-
-
Steve Lhomme authored
We should not use whatever is in the PATH. Especially as the current directory is set the a temporary directory during uninstallation. (cherry picked from commit d13608f8) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Sep 07, 2023
-
-
Signed-off-by:
Felix Paul Kühne <felix@feepk.net>
-
This will allow to fix a leak by only checking the return code instead of fetching the media (and forgetting to release it...) Signed-off-by:
Felix Paul Kühne <felix@feepk.net>
-
Signed-off-by:
Felix Paul Kühne <felix@feepk.net>
-
-
- Sep 05, 2023
-
-