summaryrefslogtreecommitdiff
path: root/hal
diff options
context:
space:
mode:
authorAndrew Chant <achant@google.com>2019-08-08 23:20:02 +0000
committerAndrew Chant <achant@google.com>2019-08-08 23:20:02 +0000
commit25054b7a665f02f441169353514116fa9d772953 (patch)
treeedaeb61d341aa6a381f26b36880aa1a8180caa0c /hal
parent83fde0ec25e15f4aa94deae1e53738c2fe039775 (diff)
downloadaudio-25054b7a665f02f441169353514116fa9d772953.tar.gz
Revert "Read both vendor.audio_hal.* and audio_hal.* sysprops"
This reverts commit 83fde0ec25e15f4aa94deae1e53738c2fe039775. Reason for revert: No vol adjust on calls No audio in duo vid calls. Bug: 139108926 Change-Id: I21a6f81d1880251fd5bf9269363fbfda59674fd3
Diffstat (limited to 'hal')
-rw-r--r--hal/audio_extn/utils.c4
-rw-r--r--hal/audio_hw.c9
2 files changed, 4 insertions, 9 deletions
diff --git a/hal/audio_extn/utils.c b/hal/audio_extn/utils.c
index 0a8e18f..3a1877b 100644
--- a/hal/audio_extn/utils.c
+++ b/hal/audio_extn/utils.c
@@ -541,9 +541,7 @@ int audio_extn_utils_get_snd_card_num()
struct acdb_platform_data *my_data = calloc(1, sizeof(struct acdb_platform_data));
bool card_verifed[MAX_SND_CARD] = {0};
- const int retry_limit = property_get_int32(
- "vendor.audio.snd_card.open.retries",
- property_get_int32("audio.snd_card.open.retries", RETRY_NUMBER));
+ const int retry_limit = property_get_int32("audio.snd_card.open.retries", RETRY_NUMBER);
for (;;) {
if (snd_card_num >= MAX_SND_CARD) {
diff --git a/hal/audio_hw.c b/hal/audio_hw.c
index 58d8f85..1fd913a 100644
--- a/hal/audio_hw.c
+++ b/hal/audio_hw.c
@@ -6568,8 +6568,7 @@ static int adev_open(const hw_module_t *module, const char *name,
char value[PROPERTY_VALUE_MAX];
int trial;
- if ((property_get("vendor.audio_hal.period_size", value, NULL) > 0) ||
- (property_get("audio_hal.period_size", value, NULL) > 0)) {
+ if (property_get("audio_hal.period_size", value, NULL) > 0) {
trial = atoi(value);
if (period_size_is_plausible_for_low_latency(trial)) {
pcm_config_low_latency.period_size = trial;
@@ -6578,8 +6577,7 @@ static int adev_open(const hw_module_t *module, const char *name,
configured_low_latency_capture_period_size = trial;
}
}
- if ((property_get("vendor.audio_hal.in_period_size", value, NULL) > 0) ||
- (property_get("audio_hal.in_period_size", value, NULL) > 0)) {
+ if (property_get("audio_hal.in_period_size", value, NULL) > 0) {
trial = atoi(value);
if (period_size_is_plausible_for_low_latency(trial)) {
configured_low_latency_capture_period_size = trial;
@@ -6594,8 +6592,7 @@ static int adev_open(const hw_module_t *module, const char *name,
// audio_extn_utils_send_default_app_type_cfg(adev->platform, adev->mixer);
audio_device_ref_count++;
- if ((property_get("vendor.audio_hal.period_multiplier", value, NULL) > 0) ||
- (property_get("audio_hal.period_multiplier", value, NULL) > 0)) {
+ if (property_get("audio_hal.period_multiplier", value, NULL) > 0) {
af_period_multiplier = atoi(value);
if (af_period_multiplier < 0) {
af_period_multiplier = 2;