diff options
Diffstat (limited to 'tizen-audio-routing.c')
-rw-r--r-- | tizen-audio-routing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tizen-audio-routing.c b/tizen-audio-routing.c index d5ad19c..960e55c 100644 --- a/tizen-audio-routing.c +++ b/tizen-audio-routing.c @@ -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 +} |