- Jan 17, 2023
-
-
Felix Paul Kühne authored
-
-
-
Add selectedExclusive property on tracks to select a track while disabling the other tracks of the same kind.
-
Felix Paul Kühne authored
-
- Jan 16, 2023
-
-
- Jan 08, 2023
-
-
Hank Anderson authored
-
Hank Anderson authored
-
- Jan 06, 2023
-
-
Maxime Chapelet authored
Seemed the project wasn't updated to support VLCKit dynamic linking and loading. This patch embeds the framework and fixes the rpath
-
- Dec 20, 2022
-
-
Felix Paul Kühne authored
-
- Dec 18, 2022
-
-
Hank Anderson authored
-
- Dec 17, 2022
-
-
- Dec 15, 2022
-
-
- Dec 14, 2022
-
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
The class and the associated protocol was previously not exposed on macOS as part of the umbrella header while the header itself was shipped, so the API was hidden from swift relying on the module map. Additionally, this reorders the header content to make it easier to compare with the iOS counterpart. Forward-port of a7d97dd7
-
Felix Paul Kühne authored
-
Alexandre Janniaux authored
[NSString stringWithUTF8String] is allocated strings from the current autorelease pool, but none are being defined here and from the call stack. Since we wrap the strings in another object not allocated in the autorelease pool, we can just locally setup the autoreleasepool while creating the object. Fix memory leaks when logs are going on.
-
- Dec 10, 2022
-
-
Maxime Chapelet authored
Closes #643
-
- Nov 03, 2022
-
-
Felix Paul Kühne authored
-
- Oct 19, 2022
-
-
- Oct 16, 2022
-
-
Hank Anderson authored
-
- Oct 07, 2022
-
-
Hank Anderson authored
-
Hank Anderson authored
-
- Sep 24, 2022
-
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
This fixes #630.
-
Felix Paul Kühne authored
This also adds annotations for previous stable releases
-
- Sep 13, 2022
-
-
Felix Paul Kühne authored
Initialising the list with a NULL array is useless but legal.
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
This excludes libvlc's C interface from the module map fixing warnings in swift projects that its headers were not part of the umbrella header, which is the expected behavior. The C interface can still be used by using its own designated umbrella header with a #import <VLCKit/vlc/vlc.h> statement. This fixes #561.
-
Felix Paul Kühne authored
Over the last years, headers for picture and dialog were added as well as version.
-
Felix Paul Kühne authored
This is needed for single arch compilations of the framework where we don't know which flavor is build and which (always identical) version header to use for distríbution.
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
-
-
-
-
those changes provide an alternate/better way to handle video filter's state with a new object this new object is available as a single instance accessor in the media player class and it encapsulate : - all filter parameters' value, default value and allowed values range - an accessor to enable/disable the filter - an accessor to apply parameters from another filter - an accessor to reset the parameters if needed former filter accessors are using this new object and are still functional, but they should be avoided and are now marked as deprecated
-