[vlc-commits] single instance: append tracks as specified in MPRIS 2.2
Mirsal Ennaime
git at videolan.org
Sat May 12 21:34:00 CEST 2012
vlc | branch: master | Mirsal Ennaime <mirsal at videolan.org> | Sat May 12 20:54:33 2012 +0200| [0376739feee15fa4636e30e7c85f1be97f2d74f9] | committer: Mirsal Ennaime
single instance: append tracks as specified in MPRIS 2.2
Use /org/mpris/MediaPlayer2/TrackList/Append instead of / as the
AfterTrack argument to org.mpris.MediaPlayer2.AddTrack for appending
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0376739feee15fa4636e30e7c85f1be97f2d74f9
---
src/libvlc.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index 6383a4c..2c9a49c 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -340,6 +340,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* FIXME: could be replaced by using Unix sockets */
#ifdef HAVE_DBUS
+#define MPRIS_APPEND "/org/mpris/MediaPlayer2/TrackList/Append"
#define MPRIS_BUS_NAME "org.mpris.MediaPlayer2.vlc"
#define MPRIS_OBJECT_PATH "/org/mpris/MediaPlayer2"
#define MPRIS_TRACKLIST_INTERFACE "org.mpris.MediaPlayer2.TrackList"
@@ -402,7 +403,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* We need to resolve relative paths in this instance */
char *psz_mrl = make_URI( ppsz_argv[i_input], NULL );
- const char *psz_after_track = "/";
+ const char *psz_after_track = MPRIS_APPEND;
if( psz_mrl == NULL )
continue;
@@ -485,11 +486,13 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* we unreference the connection when we've finished with it */
if( p_conn ) dbus_connection_unref( p_conn );
}
+
+#undef MPRIS_APPEND
#undef MPRIS_BUS_NAME
#undef MPRIS_OBJECT_PATH
#undef MPRIS_TRACKLIST_INTERFACE
-#endif
+#endif // HAVE_DBUS
/*
* Message queue options
More information about the vlc-commits
mailing list