- Jul 31, 2021
- Jul 30, 2021
-
-
fixes cut off edges in maximized window when using CSD
-
-
fixes one of the accessibility issues reported in #25896.
-
in the qt codebase properties are often used but they are not overridden by a derived class. according to the Qt docs, the presence of final attribute can be used for performance optimizations.
-
-
-
-
-
-
-
-
-
replaces drag support from MusicTracksDisplay. This way it can be reused in places where MusicTrackListDisplay is used like in expand delegates
-
-
-
-
-
- Jul 29, 2021
-
-
Tristan Matthews authored
- Bug fixes [1]: * exports.cmake: use APPLE and WIN32 and use def for mingw-w64 https://aomedia-review.googlesource.com/c/aom/+/139882 * Issue 2993: Incorrect spatial_id when decoding base layer of multi-layer stream * Issue 3080: Chroma Resampling by Encoder on Y4M Inputs Files Tagged as C420mpeg2 * Issue 3081: Use of uninitialized value $version_extra in concatenation (.) or string at aom/build/cmake/version.pl line 88. [1] https://aomedia.googlesource.com/aom/+/refs/tags/v3.1.2/CHANGELOG
-
Thomas Guillem authored
-
Thomas Guillem authored
ES_OUT_SET_PCR can now be called anytime (even from the open cb) and from any threads. The behavior was changed in 800482fb. This fixes assert with asynchronous accesses like pulse that could configure the clock without being started by the input (via ES_OUT_PRIV_SET_MODE) Fixes #25947
-
Thomas Guillem authored
To avoid confusion with pgrm->active_clock_source.
-
And print the track str_id. It can be very useful for users that want to play with "type-track-id" options.
-
duration computations were made with precision loss, which add up and leads to unprecise seeking if the stream is really long (like a day or two) ref : https://mailman.videolan.org/pipermail/vlc-devel/2019-September/127759.html
-
fixes #25940.
-
- Jul 28, 2021
-
-
Hugo Beauzée-Luyssen authored
We already provide an absolute path, which cmake might try to interpret and convert to an equivalent value. This works, except when we try to replace the prefix we provided by @@CONTRIB_PREFIX@@ in change_prefix.sh, which leads to .pc files being present but unusable
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
This will abide by the configured prefix, and install the .pc as any other file instead of copying it manually
-
../../modules/demux/adaptive/logic/BufferingLogic.cpp: In member function ‘uint64_t adaptive::logic::DefaultBufferingLogic::getLiveStartSegmentNumber(adaptive::playlist::BaseRepresentation*) const’: ../../modules/demux/adaptive/logic/BufferingLogic.cpp:363:30: warning: ‘this’ pointer is null [-Wnonnull] 363 | if(!timeline->isValid()) | ~~~~~~~~~~~~~~~~~^~ Typo from 573752cf
-
- Jul 27, 2021
-
-
François Cartegnie authored
For some reason AAC is not part of the probing sequence, it then can't activate without shortcut/forced naming.
-
- Jul 25, 2021
-
-
- Jul 24, 2021
-
-
The function is not locking the display_lock, so it should not unlock it. It's a leftover of the previous code moves, where the error path has not been checked correctly. Regression from 2ba73428 Co-authored-by:
François Cartegnie <fcvlcdev@free.fr>
-
It was not obvious that sys->render or sys->static_filter were chronos. This will also allow to add more chronos properly.
-
this: - enables SSE2 (when available at runtime), which was added 13 years ago ([1]) but we never enabled use of it until now. - removes use of the MMX/MMXEXT availability testing functions, helping pave the way towards our goal of purging all MMX/MMXEXT code. - makes the code cleaner and reduces maintenance burden. - allows us to pick up use of new SIMD variant additions, if any more are ever added (unlikely) without having to explicitly add code to enable it. as pointed out in review, the `mpeg2_init()` call makes a call to `mpeg2_accel()` with `MPEG2_ACCEL_DETECT` itself, so there is no need to make such a call ourselves, thus the `mpeg2_init()` call alone is sufficient. the entire code block can thus be safely removed. [1]: libmpeg2@c80d1dc2
-
- Jul 23, 2021
-
-