- Feb 25, 2025
-
-
Alexandre Janniaux authored
vlc_module_name should not be exposed in static cfg for now, since it's not partially linked into each plugin and thus conflicts with the libvlc/vlccore's definition.
-
Steve Lhomme authored
Just as with autotools it may not test the actual compat version of a function, but the one provided by the toolchain. That allows validating the tests with the real thing.
-
Steve Lhomme authored
-
- Feb 24, 2025
-
-
Steve Lhomme authored
The regions can only use "absolute" coordinates since there is no updater.
-
Steve Lhomme authored
There will be no region in the SPU and it will never be updated. We don't need a SPU at all.
-
- Feb 23, 2025
-
-
The test was added in autoconf buildsystem in the following commit: 967e3744.
-
fix #29034
-
It's only needed to render the subpicture. The updater should have priority, as is done in the "last minute" rendering.
-
-Bsymbolic flag is needed when compiling the module with static ffmpeg build.
-
-
aarch64-unknown-linux-android is not the correct triplet for compiling rust for android, and "-unknown" should be dropped. The same applies to other targets except armv7, which ends with androideabi instead of android.
-
-
-
-
-
useful for changes following this commit
-
Have a common class in all menu wrappers that implement some basic functionality - visibility and memory management implement tableView_popup function for Network context menu
-
- Feb 22, 2025
-
-
On the C side, the category is read as an int type: ```c /* src/modules/entry.c */ case VLC_CONFIG_CREATE: { int type = va_arg (ap, int); ``` On the Rust side, it is then incorrect to inject an i64: ```rust vlc_set( opaque, ::std::ptr::null_mut(), ::vlcrs_core::plugin::ModuleProperties::CONFIG_CREATE as _, // incorrect ::vlcrs_core::plugin::ConfigModule::SUBCATEGORY as i64, &mut config as *mut *mut ::vlcrs_core::plugin::vlc_param, ) ``` It fixes such ABI error, and in particular a crash on android armv7.
-
Steve Lhomme authored
Most of the time the loop exits on the first round.
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Sometimes the primary detail string on a media library media item and the duration string, so don't add the duration string onto the smaller text field if this is the case Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
macosx: Universally adopt 10px bottom padding for internal contents of media library item supplementary detail view 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>
-
Signed-off-by:
Claudio Cambra <developer@claudiocambra.com>
-
Steve Lhomme authored
Using static modules is not supported yet, as it's not supported yet in meson for the whole project.
-
-
Currently nvdec breaks the meson build due to: ../modules/hw/nvdec/meson.build:4:16: ERROR: Unknown function "enabler".
-
Currently, if decoder is missing, pre-existing mousecallback is ignored irrespective of its existence. Which may cause irresponsiveness of certain interactive videos. Make sure to use the default MouseEvent callback if demuxer disables the mouse event, before handling the callback.
-
- Feb 21, 2025
-
-
We are intercepting and inhibiting the close event for several reasons: - Idle inhibit case (not inhibiting close used to crash at least Wayland). - Video window using resources of the interface window case (Wayland, DComp). Furthermore for the latter case we postpone destroying the window (hence closing) even more, to the point destroying the window does not cause harm with regard to the video window (fdb0a981 for DComp, 6923be9b for Wayland). Because of this, the time between user clicks on the close button and the window effectively closes is too much for responsiveness. I propose to hide the window until destroying (and closing) to make close more responsive. This should be fine because hiding should not release the resources, as the default value of `QQuickWindow::setPersistentGraphics()` is true and we are not overriding it and we do not expect to override it as well. I have also checked if this would cause saving the window state as hidden before closing. However, `QVLCTools::saveWindowPosition()` does not save\ it so it should be fine.
-
-
pkg-config --cflags cairo returns the path to the folder containing cairo.h.
-
-
sys/shm.h is notoriously broken on android <= 26, cf android documentation. Remove it until we have the android API level targeted in the buildsystem. Bionic says: /** * @file sys/shm.h * @brief System V shared memory. Not useful on Android because it's disallowed by SELinux. */ and defines the functions with the following guard: #if __BIONIC_AVAILABILITY_GUARD(26)
-
-
Steve Lhomme authored
Unlike the <vlc/libvlc.h>. So we don't need to include the root of the core, including in tests.
-