From f836a438078bba3bc27ca81339a6a22a395ffdac Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Tue, 5 Dec 2017 11:06:07 +0100 Subject: Test 4A inside service mediaplayer Signed-off-by: Ronan Le Martret --- binding/afm-mediaplayer-binding.c | 27 +++++++++++++++++++++++++++ conf.d/wgt/config.xml.in | 2 ++ 2 files changed, 29 insertions(+) diff --git a/binding/afm-mediaplayer-binding.c b/binding/afm-mediaplayer-binding.c index 2e3bef2..5fd5dbe 100644 --- a/binding/afm-mediaplayer-binding.c +++ b/binding/afm-mediaplayer-binding.c @@ -660,6 +660,33 @@ static void *gstreamer_loop_thread(void *ptr) data.fake_sink = gst_element_factory_make("fakesink", NULL); data.alsa_sink = gst_element_factory_make("alsasink", NULL); + json_object *jsonData = json_object_new_object(); + json_object_object_add(jsonData, "audio_role", json_object_new_string("Multimedia")); + json_object_object_add(jsonData, "endpoint_type", json_object_new_string("sink")); + ret = afb_service_call_sync("ahl-4a", "stream_open", jsonData, &response); + + if (!ret) { + json_object *valJson = NULL; + json_object *val = NULL; + gboolean ret; + ret = json_object_object_get_ex(response, "response", &valJson); + if (ret) { + ret = json_object_object_get_ex(valJson, "device_uri", &val); + if (ret) { + char* jres_pcm = json_object_get_string(val); + gchar ** res_pcm= g_strsplit (jres_pcm,":",-1); + if (res_pcm) { + g_object_set(data.alsa_sink, "device", res_pcm[1], NULL); + g_free(res_pcm); + } + } + ret = json_object_object_get_ex(valJson, "stream_id", &val); + if (ret) { + int stream_id = json_object_get_int(val); + } + } + } + g_object_set(data.playbin, "audio-sink", data.fake_sink, NULL); gst_element_set_state(data.playbin, GST_STATE_PAUSED); diff --git a/conf.d/wgt/config.xml.in b/conf.d/wgt/config.xml.in index 00711b6..a6ab311 100644 --- a/conf.d/wgt/config.xml.in +++ b/conf.d/wgt/config.xml.in @@ -10,6 +10,7 @@ + @@ -18,6 +19,7 @@ + -- cgit 1.2.3-korg