Change bt to bt-sco 66/101966/1 accepted/tizen/3.0/mobile/20161207.011611 submit/tizen_3.0/20161206.052949
authorJeongho Mok <jho.mok@samsung.com>
Fri, 2 Dec 2016 13:29:37 +0000 (22:29 +0900)
committerJeongho Mok <jho.mok@samsung.com>
Fri, 2 Dec 2016 13:34:45 +0000 (22:34 +0900)
[Version] 0.1.19
[Profile] Mobile
[Issue Type] Enhancement

Change-Id: Ia06fb622bf25e79c8c11b5de3d7d9beb15de2ce1

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
+}