From: aravind.gara Date: Wed, 30 Nov 2016 01:53:08 +0000 (+0900) Subject: sound-manager API changed X-Git-Tag: accepted/tizen/common/20161202.233158^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0d1635211ce24587389193d333d8c0a71fbf84d;p=platform%2Fcore%2Fconnectivity%2Fbt-syspopup.git sound-manager API changed Change-Id: I9dae573558e7b6830445628098e5553ed79154c9 Signed-off-by: aravind.gara --- diff --git a/src/bt-syspopup-m.c b/src/bt-syspopup-m.c index 4d909f2..714f06c 100644 --- a/src/bt-syspopup-m.c +++ b/src/bt-syspopup-m.c @@ -221,7 +221,7 @@ static void __bluetooth_player_free_job_cb(void *data) ret = sound_manager_get_focus_state(stream_info, &state_for_playback, NULL); if (state_for_playback == SOUND_STREAM_FOCUS_STATE_ACQUIRED) { - ret = sound_manager_release_focus(stream_info, SOUND_STREAM_FOCUS_FOR_PLAYBACK, NULL); + ret = sound_manager_release_focus(stream_info, SOUND_STREAM_FOCUS_FOR_PLAYBACK, SOUND_BEHAVIOR_NONE, NULL); if (ret != SOUND_MANAGER_ERROR_NONE) BT_ERR("sound_manager_release_focus() get failed : %d", ret); } @@ -267,7 +267,9 @@ __bluetooth_player_completed_cb(void *user_data) } static void -__bluetooth_sound_stream_focus_state_changed_cb(sound_stream_info_h stream_info, sound_stream_focus_change_reason_e reason_for_change, const char *additional_info, void *user_data) +__bluetooth_sound_stream_focus_state_changed_cb(sound_stream_info_h stream_info, sound_stream_focus_mask_e focus_mask, + sound_stream_focus_state_e focus_state, sound_stream_focus_change_reason_e reason, + int sound_behavior, const char *extra_info, void *user_data) { retm_if(user_data == NULL, "invalid parameter"); struct bt_popup_appdata *ad = user_data; @@ -355,7 +357,7 @@ static int __bluetooth_notify_event(struct bt_popup_appdata *ad) return sndRet; } - sndRet = sound_manager_acquire_focus(*stream_info, SOUND_STREAM_FOCUS_FOR_PLAYBACK, NULL); + sndRet = sound_manager_acquire_focus(*stream_info, SOUND_STREAM_FOCUS_FOR_PLAYBACK, SOUND_BEHAVIOR_NONE, NULL); if (sndRet != SOUND_MANAGER_ERROR_NONE) { BT_ERR("sound_manager_acquire_focus() get failed : %d", ret); return sndRet;