[vlc-commits] [Git][videolan/vlc][3.0.x] dbus: fix unpause from KDE MPRIS
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Mon Nov 24 17:50:36 UTC 2025
Jean-Baptiste Kempf pushed to branch 3.0.x at VideoLAN / VLC
Commits:
77471842 by Joe Breuer at 2025-11-24T18:05:18+01:00
dbus: fix unpause from KDE MPRIS
(cherry picked from commit c5513cf900aaf59b048c3404fd3662f9a301259f)
Signed-off-by: Marvin Scholz <epirat07 at gmail.com>
- - - - -
1 changed file:
- modules/control/dbus/dbus.c
Changes:
=====================================
modules/control/dbus/dbus.c
=====================================
@@ -659,6 +659,10 @@ static void ProcessEvents( intf_thread_t *p_intf,
break;
case SIGNAL_STATE:
vlc_dictionary_insert( &player_properties, "PlaybackStatus", NULL );
+ if ( p_intf->p_sys->b_can_play )
+ {
+ vlc_dictionary_insert( &player_properties, "CanPlay", NULL );
+ }
break;
case SIGNAL_RATE:
vlc_dictionary_insert( &player_properties, "Rate", NULL );
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/77471842b52e6b0ef3e60c30f0fbeb76393693a6
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/77471842b52e6b0ef3e60c30f0fbeb76393693a6
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list