From c96f7e504cd465de0cb74fa80311b4f023612e9c Mon Sep 17 00:00:00 2001 From: Ben Sartor Date: Fri, 6 Dec 2013 05:06:50 +0100 Subject: [PATCH] enable microphone gain hack on galaxy s4 mini, too --- java/impl/org/linphone/core/LinphoneCoreImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/impl/org/linphone/core/LinphoneCoreImpl.java b/java/impl/org/linphone/core/LinphoneCoreImpl.java index f9a61ac..ef90bb1 100644 --- a/java/impl/org/linphone/core/LinphoneCoreImpl.java +++ b/java/impl/org/linphone/core/LinphoneCoreImpl.java @@ -354,8 +354,8 @@ class LinphoneCoreImpl implements LinphoneCore { } private void applyAudioHacks() { - if (Hacks.needGalaxySAudioHack()) { - /* The microphone gain is way too high on the Galaxy S so correct it here. */ + if (Hacks.needMicrophoneHack()) { + /* The microphone gain is way too high on the Galaxy S and on the Galaxy S4 mini so correct it here. */ setMicrophoneGain(-9.0f); } } -- 1.7.10.4