- Sep 08, 2022
-
-
provide sd-bus support for linux and BSD
-
The newer images include gperf which is necessary to compile basu.
-
-
-
compositor is multithreaded, renderer is single threaded
-
afterRendering is emitted before the frame is presented, on afterRendering signal we update the x11 compositor but the frame is not presented yet, so the compositor paints the old frame instead of new one fixes #27188
-
signal is called after frame is presented
-
Steve Lhomme authored
No need to go through all the chars when we can test the the maximum size we want to reach before deciding it's too much with strnlen().
-
Steve Lhomme authored
The mode can never be NULL. If it was, autodetect is set to false so we never reach this code. We can optimize the strlen() calls with a single strnlen() call that will only test up to 5 chars to check we don't have 3 or 4 chars.
-
Steve Lhomme authored
No need to go through all the chars when we can just check a minimum size with strnlen().
-
Steve Lhomme authored
-
- Sep 07, 2022
-
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
Steve Lhomme authored
poll(), vlc_poll() and vlc_poll_i11e() set errno, not net_errno
-
Steve Lhomme authored
-
Steve Lhomme authored
It has proper winpthreads linking.
-
Steve Lhomme authored
Their threading implementation doesn't pass the WACK. This would be a problem if we build with MSVC, but we don't.
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
Steve Lhomme authored
We provide the proper C++ runtime in our pkg-config files. If it comes from the system it should either be a dynamic library (likely) or a static library that should do it as well. Otherwise it's the problem of the system maintainers.
-
Steve Lhomme authored
Submitted upstream https://github.com/acoustid/chromaprint/pull/119
-
- Sep 06, 2022
-
-
The proper cmake-based export of the C++ runtime in pkg-config is present in the library since version 1.3.2.
-
-
Steve Lhomme authored
The stdcall is missing.
-
And since we need to patch the pkg-config, add libm from there as well.
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
Felix Paul Kühne authored
This adds all languages supported by the OSO backend and fixes #27291.
-
It is currently unspecified what happens if the process does not exit cleanly, so clarify that. Since this can actually happen, the documentation ought to state what the result is to some extent.
-
- Sep 05, 2022
-
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
Steve Lhomme authored
In some cases the tarballs are corrupted. If the extraction of the tarball fails the build will fail (or may use part of an old extraction). The `-` was introduced in 5d2ed11e.
-
- Sep 04, 2022
-
-
This fixes a misleading 'fatal error' message that appears when make is invoked for contribs. Since cppcheck only used stdout of $(CC) to begin with, suppressing stderr in this manner should not change its overall behavior.
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
-
-
Signed-off-by:
Claudio Cambra <claudio.cambra@gmail.com>
-
- Sep 03, 2022
-
-
Given vlc was launched on macOS with `-Iqt` arg, a segmentation fault appeared. When Qt interface initialised, it unexpectedly called `-[VLCLibraryWindowController restoreWindowWithIdentifier:state:completionHandler:]` with the wrong identifier. This was mainly due to the macOS window restoration mechanism.
-
Rémi Denis-Courmont authored
If the string has at least 5 characters, it is too long. We don't exactly care how many characters it actually has.
-
Rémi Denis-Courmont authored
-
- Sep 02, 2022
-
-
Rémi Denis-Courmont authored
See a5b9278c.
-