- Jan 07, 2023
-
-
There's no way one can exist without the other. And we need SSIZE_MAX in many parts of the code.
-
ptrdiff_t is available in C11
-
It's closer to the definition and use of ssize_t (size_t that can hold -1) than a basic int.
-
Running meson without the setup command is deprecated and ambiguous.
-
For defines, enums and types, but we still have to declare our own function prototypes since we use fonctin via dlsym.
-
-
-
- Jan 06, 2023
-
-
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
That's how it's done in other places.
-
Steve Lhomme authored
-
Steve Lhomme authored
They are defined in sys/socket.h on POSIX systems.
-
Steve Lhomme authored
The existence of search.h is not relevant for that. search.h may exist but does not provide tfind, as on Windows. If tfind.c is included for compilation, then the code needs to be built.
-
Steve Lhomme authored
We only need to define them if they are used in an API but they are not. The names are very generic and may collide with some defines, so avoid potential compilation issues. Only the VISIT enum is needed by twalk().
-
Steve Lhomme authored
So that we don't have to include search.h each time vlc_fixups.h is used. The Win32 prototype of lfind() expects an unsigned* for 'nelp', not a size_t*.
-
Steve Lhomme authored
-
Steve Lhomme authored
This is the minimum version used to build VLC.
-
Steve Lhomme authored
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
setPreferredOutputNumberOfChannels can fail, don't configure more channels than accepted. The OS will drop the extra channels instead of downmixing it. When I first tested it, the apple TV was configured to always accept surround even with a stereo output (Change Format = Off) but this is not necessarily the case.
-
-
Fixes #27690
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
-
Steve Lhomme authored
without KDE patches for now
-
- Jan 05, 2023
-
-
Implements the following signals for the org.mpris.MediaPlayer2.TrackList interface: - TrackAdded: a track was inserted to the list - TrackRemoved: a track was removed from the list
-
The track index is sometimes known when serialising a track's metadata. This moves the index query outside the metadata serialisation function when necessary.
-
Extract switch body for track append and track remove events. This simplifies adding independent logic to both cases.
-
macosx: Use weak property on representedMediaItem of VLCLibrarySongTableCellView, preventing crash when switching songs in other views Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
-