From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This enable MediaPlayer1 when GDBUS_EXPERIMENTAL=1 --- profiles/audio/player.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/profiles/audio/player.c b/profiles/audio/player.c index 005d0d1..60c7a8a 100644 --- a/profiles/audio/player.c +++ b/profiles/audio/player.c @@ -298,9 +298,9 @@ struct media_player *media_player_controller_create(const char *path) g_free, g_free); mp->progress = g_timer_new(); -#if 0 - if (!g_dbus_register_interface(btd_get_dbus_connection(), + if (!g_dbus_register_interface_with_flags(btd_get_dbus_connection(), mp->path, MEDIA_PLAYER_INTERFACE, + G_DBUS_INTERFACE_FLAG_EXPERIMENTAL, media_player_methods, media_player_signals, media_player_properties, mp, NULL)) { @@ -308,7 +308,7 @@ struct media_player *media_player_controller_create(const char *path) media_player_destroy(mp); return NULL; } -#endif + DBG("%s", mp->path); return mp; @@ -410,7 +410,6 @@ void media_player_set_status(struct media_player *mp, const char *status) static gboolean process_metadata_changed(void *user_data) { -#if 0 struct media_player *mp = user_data; DBusMessage *signal; DBusMessageIter iter, dict; @@ -439,7 +438,7 @@ static gboolean process_metadata_changed(void *user_data) dbus_message_iter_close_container(&iter, &dict); g_dbus_send_message(btd_get_dbus_connection(), signal); -#endif + return FALSE; } -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html