- Dec 28, 2022
- Dec 26, 2022
-
-
François Cartegnie authored
(cherry picked from commit a0d6edda)
-
François Cartegnie authored
(cherry picked from commit d80b8049)
-
François Cartegnie authored
(cherry picked from commit 1a82010c)
-
François Cartegnie authored
(cherry picked from commit 4e419fa5)
-
François Cartegnie authored
(cherry picked from commit 7c3130c9)
-
François Cartegnie authored
(cherry picked from commit 1c6749b8)
-
François Cartegnie authored
(cherry picked from commit 8b310b2f)
-
François Cartegnie authored
valid jpeg data offset being greater than 0xff (cherry picked from commit a0e6c175)
-
- Dec 25, 2022
- Dec 23, 2022
-
-
François Cartegnie authored
(cherry picked from commit 99a193f6)
-
François Cartegnie authored
(cherry picked from commit 5be2d518)
-
François Cartegnie authored
(cherry picked from commit 0d2b0a46)
-
François Cartegnie authored
(cherry picked from commit 52ce937c)
-
François Cartegnie authored
(cherry picked from commit 136fd860)
-
- Dec 22, 2022
- Dec 17, 2022
- Dec 06, 2022
-
-
(cherry picked from commit 38523115)
-
- Dec 03, 2022
-
-
-
Typos found and reworked from codespell. (cherry picked from commit 6b7a57f9) (edited) edited: * some files don't exist in 3.0 * some 3.0 code around changes is different (vlc_tick_t) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Dec 02, 2022
-
-
François Cartegnie authored
also skips some memcpy refs #27454 #27477 (cherry picked from commit c14b5aa6)
-
Steve Lhomme authored
(cherry picked from commit ded62a06) (edited) edited: * some of the 3.0 code was different
-
Steve Lhomme authored
(cherry picked from commit 1f179973) (edited) edited: * some of the 3.0 code was different
-
Steve Lhomme authored
Keep a copy of vlc_tick_tfor backward compatibility. (cherry picked from commit ff56c92a) (edited) edited: * some of the 3.0 code is different
-
- Nov 30, 2022
-
-
This unbreaks packages using autoreconf. (cherry picked from commit 7beb0605) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Nov 27, 2022
-
-
Adding nil to an NSArray would make it raise an NSInvalidArgumentException which in turn leads to an abort in dispatch_once: https://github.com/apple-oss-distributions/libdispatch/blob/55c3a68e9ec47f1c1d5bb9909404ce5f0351edef/src/object.m#L557 Fix #27487 (cherry picked from commit 41ec80a1) Signed-off-by:
Marvin Scholz <epirat07@gmail.com>
-
When VLC was launched from a file, the handling for playlist change events was not sufficient as in case of starting with a file, we could miss the event and never report CanPlay. When playing a file from a service discovery, like our Lua web parser scripts, this logic was flawed too, as the playlist would always be "empty" even though we are clearly currently paused on an input. To fix that, check if CanPlay disagrees with reality when we get an input change and emit CanPlay. There is no check added in the item append/delete sections, so currently once an item from an SD is played, even when the user has switched back to the main playlist, the status would still be CanPlay until and item is added or removed in the "main" playlist. However this exactly matches how the Qt interface behaves, so I've left this behavior as-is for consistency with the interface. Fix #21419 Fix #22785
-
The can-seek and can-pause variables could end up not being set, as the callback events are not reliably fired in case the variables changed before the callbacks are attached. Additionally we need to report the playback status properly whenever a new item starts playing. Fix #24699
-
- Nov 26, 2022
-
-
CFNetwork library is automatically added by recent SDKs. By replacing this framework with CoreServices.framework, we retain support for Mac OSX 10.7.
-
CFNetwork library is automatically added by recent SDKs. By replacing this framework with CoreServices.framework, we retain support for Mac OS X 10.7.
-
- Nov 19, 2022
-
-
Fixes #27529 (cherry picked from commit a0b3c438) Signed-off-by:
Steve Lhomme <robux4@ycbcr.xyz>
-
- Nov 17, 2022
-
-
Signed-off-by:
Thomas Guillem <thomas@gllm.fr> (cherry picked from commit c53aefcc) Signed-off-by:
Marvin Scholz <epirat07@gmail.com>
-
- Nov 15, 2022
-
-
(cherry picked from commit 7eb922bc) Signed-off-by:
Marvin Scholz <epirat07@gmail.com>
-
With autoconf 2.70, the following warnings are emitted: configure.ac:56: warning: AC_PROG_LEX without either yywrap or noyywrap is obsolete ./lib/autoconf/programs.m4:716: _AC_PROG_LEX is expanded from... ./lib/autoconf/programs.m4:709: AC_PROG_LEX is expanded from... configure.ac:56: the top level The documentation[1] of autoconf now states: > Prior to Autoconf 2.70, AC_PROG_LEX did not take any arguments, and > its behavior was different from either of the above possibilities: it > would search for a library that defines yywrap, and would set LEXLIB > to that library if it finds one. However, if a library that defines > this function could not be found, LEXLIB would be left empty and LEX > would not be reset. This behavior was due to a bug, but several > packages came to depend on it, so AC_PROG_LEX still does this if > neither the yywrap nor the noyywrap option is given. > > Usage of AC_PROG_LEX without choosing one of the yywrap or noyywrap > options is deprecated. It is usually better to use noyywrap and define > the yywrap function yourself, as this almost always renders the LEXLIB > unnecessary. The behaviour of the argument on autoconf < 2.70 is to ignore the argument, so there are no issues with adding the option. [1] https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.70/html_node/Particular-Programs.html#Particular-Programs (cherry picked from commit 824b3d45) Signed-off-by:
Marvin Scholz <epirat07@gmail.com>
-
- Nov 08, 2022
-
-
That way, we will always use MapInputLayout() on tvOS/iOS. (cherry picked from commit ebc27c6e) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
(cherry picked from commit cac29a17) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
Simpler, tested on tvOS 14 and 16. On tvOS, the device can adapt to the VLC input format, in contrary to macOS. Fixes 7.1 surround. (cherry picked from commit 3d92b1c3) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
There is one more complete just after. (cherry picked from commit 704d6fcf) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
(cherry picked from commit 28e4d7fe) Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-