- Feb 25, 2022
-
-
(and fix unused warning)
-
-
It contains DXVA definitions for AV1 and some other cleanup.
-
Hugo Beauzée-Luyssen authored
rules allow finer customizations, and only/except is to be considered deprecated according to gitlab docs
-
Hugo Beauzée-Luyssen authored
Use a default and let the non-docker jobs specify their own tags as they already did
-
-
I included adaptation here of a few existing cases using a different solution to the helper defines suggested in review. Example warning: ``` ../../modules/gui/qt/dialogs/preferences/simple_preferences.cpp: In constructor 'SPrefsCatList::SPrefsCatList(qt_intf_t*, QWidget*)': WARNING : ../../modules/gui/qt/dialogs/preferences/simple_preferences.cpp:254: 40: 'void QSignalMapper::mapped(int)' is deprecated: Use QSignalMapper::mappedInt(int) instead [-Wdeprecated-declarations] 254 | connect( mapper, QOverload<int>::of(&QSignalMapper::mapped), this, &SPrefsCatList::switchPanel ); | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/x86_64-linux-gnu/qt5/QtCore/QSignalMapper:1, from ../../modules/gui/qt/dialogs/preferences/simple_preferences.cpp:45: /usr/include/x86_64-linux-gnu/qt5/QtCore/qsignalmapper.h:71:10: note: declared here 71 | void mapped(int); | ^~~~~~ ```
-
``` ../../modules/gui/qt/dialogs/preferences/simple_preferences.cpp: In constructor 'SPrefsPanel::SPrefsPanel(qt_intf_t*, QWidget*, int)': WARNING : ../../modules/gui/qt/dialogs/preferences/simple_preferences.cpp:811: 52: 'void QButtonGroup::buttonClicked(int)' is deprecated: Use QButtonGroup::idClicked(int) instead [-Wdeprecated-declarations] 811 | connect( radioGroup, QOverload<int>::of(&QButtonGroup::buttonClicked), | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QButtonGroup:1, from ../../modules/gui/qt/dialogs/preferences/simple_preferences.cpp:44: /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qbuttongroup.h:90:10: note: declared here 90 | void buttonClicked(int); | ^~~~~~~~~~~~~ ```
-
This replaces almost all use of `SIGNAL()` and `SLOT()` with Qt5-style strongly-typed connections. The `CONNECT()`, and `DCONNECT()` helpers built around them have been removed. Cases involving the `BUTTON_*` macros will be tackled in a separate commit to improve clarity. A few cases remain using `SIGNAL()` and `SLOT()` for now due to complications that should be dealt with separately.
-
- Feb 24, 2022
-
-
Rémi Denis-Courmont authored
Fixes #26643
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
It contains ComPtr, it should not be allocated with calloc()! Also fixes a structure leak for each region quad.
-
It has its own internal Win32 threads support. No need to rebuild this (heavy) contrib when pthread changes. No need to use winpthread from mingw either in the native protoc build when it can use the Win32 threading API. And thus the codebase is the same in both case.
-
The values are not dynamic, so we can know the value during the filter open.
-
In libplacebo v4.192, specifying the tone mapping state object is no longer optional. Failure to do this forces an internal fallback to a fixed function hable shader.
-
- Feb 23, 2022
-
-
Rémi Denis-Courmont authored
The OpenMAX Development Layer seemingly never really happened, so this module was never ever taken into use.
-
Rémi Denis-Courmont authored
Only x86 still uses the flaky procfs parsing.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
This was added over a decade ago, but
... -
Rémi Denis-Courmont authored
This is necessary for Linux-specific getauxval() and associated flags. In this case, VLC needs AT_HWCAP (and probably AT_HWCAP2 going forward) to detect CPU features on most architectures.
-
vlc_modcap_cmp() expects pointers to vlc_modcap structures, not to character string pointers. Fixes #26642.
-
Search keys and tree entries are non-const.
-
-
-
-
This rewrites vlc_once() as a trivial wrapper for vlc_once_begin() and vlc_once_complete().
-
This supports one-time initialisation without callback, which is somewhat more flexible and provides better type safety.
-
-
At this point, high-definition RGBA is 64-bit format. Since the support code is essentially already there in macro form, take it into use.
-
-
Planes may have different sample size (if NV12 or NV21 chroma), but the transform is always the same, so per-plane callbacks are no longer necessary.
-
-
Rotations and anti-transposition are defined as the composition of horizontal flip or transposition with one or two "free" vertical flips (i.e. negated stride). The 3 functions, for 8-, 16- and 32-bit samples were essentially identical. This takes them out of the transforms macro and merge the function. With this size-specific functions and function pointers remain only for horizontal flip and transposition. This reduces the code size, and more importantly simplifies writing SIMD-optimised transforms.
-
This saves the order of magnitude of the sample byte size for each plane. This will be used in later changes.
-
No functional changes.
-