diff options
author | Jeongho Mok <jho.mok@samsung.com> | 2016-12-05 13:31:34 +0900 |
---|---|---|
committer | Jeongho Mok <jho.mok@samsung.com> | 2016-12-05 21:04:06 -0800 |
commit | fc9cb79b6c43b8d703c6b9aeb2f975ea5cd44e29 (patch) | |
tree | a20a0082a4d2f64f3dcd3f39ea48fb62aaf6bfd3 | |
parent | bb813d9f5505f541b4cb0873b62b076e2cfcf425 (diff) | |
download | audio-hal-max98090-fc9cb79b6c43b8d703c6b9aeb2f975ea5cd44e29.tar.gz audio-hal-max98090-fc9cb79b6c43b8d703c6b9aeb2f975ea5cd44e29.tar.bz2 audio-hal-max98090-fc9cb79b6c43b8d703c6b9aeb2f975ea5cd44e29.zip |
Change bt to bt-scotizen_4.0.m1_releasetizen_4.0.IoT.p1_releasesubmit/tizen_unified/20170308.100403submit/tizen_4.0/20170828.110001submit/tizen_4.0/20170811.094300submit/tizen/20161207.075356accepted/tizen/unified/20170309.031111accepted/tizen/tv/20161208.012020accepted/tizen/ivi/20161208.012218accepted/tizen/common/20161207.184528accepted/tizen/4.0/unified/20170828.224238accepted/tizen/4.0/unified/20170816.010614accepted/tizen_tvaccepted/tizen_iviaccepted/tizen_common
[Version] 0.2.24
[Profile] Common
[Issue Type] Code Enhancement
Change-Id: I8ccd86c8428fc199608528e6f95c4e1f201fac9e
(cherry picked from commit 4b85571d3e818263564d3cc543579fd6093a1e12)
-rw-r--r-- | packaging/audio-hal-max98090.spec | 2 | ||||
-rw-r--r-- | tizen-audio-routing.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packaging/audio-hal-max98090.spec b/packaging/audio-hal-max98090.spec index 1c537ff..ae6f284 100644 --- a/packaging/audio-hal-max98090.spec +++ b/packaging/audio-hal-max98090.spec @@ -1,6 +1,6 @@ Name: audio-hal-max98090 Summary: TIZEN Audio HAL for MAX98090 -Version: 0.2.23 +Version: 0.2.24 Release: 0 Group: System/Libraries License: Apache-2.0 diff --git a/tizen-audio-routing.c b/tizen-audio-routing.c index f4994ce..32cd5c2 100644 --- a/tizen-audio-routing.c +++ b/tizen-audio-routing.c @@ -61,7 +61,7 @@ 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, "aux", MAX_NAME_LEN)) { device = AUDIO_DEVICE_OUT_AUX; @@ -71,7 +71,7 @@ static uint32_t __convert_device_string_to_enum(const char* device_str, uint32_t device = AUDIO_DEVICE_IN_MAIN_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; |