From af7e9909732d2049f54840718420a1b9b8fbcb25 Mon Sep 17 00:00:00 2001 From: Adithya R Date: Wed, 17 Feb 2021 19:13:37 +0100 Subject: [PATCH] sm6250-common: Disable COMPRESS_VOIP in boardconfig To make VOIP work properly the following has to be set: AUDIO_FEATURE_ENABLED_COMPRESS_VOIP := false in BoardConfig.mk vendor.audio.feature.compr_voip.enable=true in vendor.prop I have no idea why this is but setting either one of them differently results in the mic not working as it should. Signed-off-by: Adithya R --- BoardConfigCommon.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index a952f5f..96dd7f5 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -27,6 +27,7 @@ TARGET_2ND_CPU_VARIANT := generic TARGET_2ND_CPU_VARIANT_RUNTIME := cortex-a76 # Audio +AUDIO_FEATURE_ENABLED_COMPRESS_VOIP := false AUDIO_FEATURE_ENABLED_EXTN_FORMATS := true AUDIO_FEATURE_ENABLED_HDMI_SPK := true AUDIO_FEATURE_ENABLED_PROXY_DEVICE := true