Change bt to bt-sco 26/102526/1 accepted/tizen_mobile accepted/tizen/mobile/20161208.011946 accepted/tizen/unified/20170309.084551 submit/tizen/20161207.075356 submit/tizen_unified/20170308.100403 submit/tizen_unified/20170309.100423
authorJeongho Mok <jho.mok@samsung.com>
Fri, 2 Dec 2016 13:29:37 +0000 (22:29 +0900)
committerJeongho Mok <jho.mok@samsung.com>
Tue, 6 Dec 2016 05:05:13 +0000 (21:05 -0800)
[Version] 0.1.19
[Profile] Mobile
[Issue Type] Enhancement

Change-Id: Ia06fb622bf25e79c8c11b5de3d7d9beb15de2ce1
(cherry picked from commit b77ccc747e508002934b770a16a737695230743a)

packaging/audio-hal-sc7727.spec
tizen-audio-routing.c

index d593160..4d49877 100644 (file)
@@ -1,6 +1,6 @@
 Name:       audio-hal-sc7727
 Summary:    TIZEN Audio HAL for SC7727
-Version:    0.1.18
+Version:    0.1.19
 Release:    0
 Group:      System/Libraries
 License:    Apache-2.0
index d5ad19c..960e55c 100644 (file)
@@ -65,14 +65,14 @@ static uint32_t __convert_device_string_to_enum(const char* device_str, uint32_t
         device = AUDIO_DEVICE_OUT_RECEIVER;
     } else if ((!strncmp(device_str, "audio-jack", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_OUT)) {
         device = AUDIO_DEVICE_OUT_JACK;
-    } else if ((!strncmp(device_str, "bt", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_OUT)) {
+    } else if ((!strncmp(device_str, "bt-sco", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_OUT)) {
         device = AUDIO_DEVICE_OUT_BT_SCO;
     } else if ((!strncmp(device_str, "builtin-mic", MAX_NAME_LEN))) {
         device = AUDIO_DEVICE_IN_MAIN_MIC;
     /* To Do : SUB_MIC */
     } else if ((!strncmp(device_str, "audio-jack", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_IN)) {
         device = AUDIO_DEVICE_IN_JACK;
-    } else if ((!strncmp(device_str, "bt", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_IN)) {
+    } else if ((!strncmp(device_str, "bt-sco", MAX_NAME_LEN)) && (direction == AUDIO_DIRECTION_IN)) {
         device = AUDIO_DEVICE_IN_BT_SCO;
     } else {
         device = AUDIO_DEVICE_NONE;
@@ -500,4 +500,4 @@ audio_return_t audio_update_route_option(void *audio_handle, audio_route_option_
     AUDIO_LOG_INFO("role:%s, name:%s, value:%d", option->role, option->name, option->value);
 
     return audio_ret;
-}
\ No newline at end of file
+}