hal: Update prefixes for audio system properties
Vendor created android system properties are required to have
vendor/qti prefix. Update vendor specific audio system
properties used in HAL.
CRs-Fixed: 2034869
Change-Id: Ibdb1d12fedee1ce12073e8b90fdec814318f3acf
diff --git a/post_proc/bass_boost.c b/post_proc/bass_boost.c
index fcb02a5..a4e2292 100644
--- a/post_proc/bass_boost.c
+++ b/post_proc/bass_boost.c
@@ -504,7 +504,7 @@
ALOGV("%s: device: %d", __func__, device);
pbe_ctxt->device = device;
- if (property_get("audio.safx.pbe.enabled", propValue, NULL)) {
+ if (property_get("vendor.audio.safx.pbe.enabled", propValue, NULL)) {
pbe_enabled_by_prop = atoi(propValue) ||
!strncmp("true", propValue, 4);
}
@@ -697,7 +697,7 @@
ALOGE("%s error resolving acdb func symbols", __func__);
return -EFAULT;
}
- if (property_get("audio.safx.pbe.app.type", propValueStr, "0")) {
+ if (property_get("vendor.audio.safx.pbe.app.type", propValueStr, "0")) {
propValue = atoll(propValueStr);
if (propValue != 0) {
pbe_app_type = propValue;