Skip to content

Commit

Permalink
New audio updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Kra1o5 authored and Daz Jones committed Jun 30, 2013
1 parent f16e0ee commit aacb3db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions audio/AudioHardware.cpp
Expand Up @@ -1574,13 +1574,13 @@ status_t AudioHardware::setVoiceVolume(float v)
ALOGW("setVoiceVolume(%f) over 1.0, assuming 1.0\n", v);
v = 1.0;
}
// Added 0.2 to current volume, as in voice call Mute cannot be set as minimum volume(0.00)
// setting Rx volume level as 1 for minimum and 6 as max level.
v = 0.2 + v;
// Added 0.1 to current volume, as in voice call Mute cannot be set as minimum volume(0.00)
// setting Rx volume level as 2 for minimum and 7 as max level.
v = 0.1 + v;

int vol = lrint(v * 3.0);
ALOGD("setVoiceVolume(%f)\n", v);
ALOGI("Setting in-call volume to %d (available range is 1 to 6)\n", vol);
ALOGI("Setting in-call volume to %d (available range is 2 to 7)\n", vol);

if ((mCurSndDevice != -1) && ((mCurSndDevice == SND_DEVICE_TTY_HEADSET) || (mCurSndDevice == SND_DEVICE_TTY_VCO)))
{
Expand Down
2 changes: 1 addition & 1 deletion overlay/frameworks/base/core/res/res/values/config.xml
Expand Up @@ -208,9 +208,9 @@
<!-- Set additional audio parameters for incall audio
Usage: parameter=onstring=offstring
Examples: <item>realcall=on=off</item>
<item>dualmic_enabled=true=false</item>
<item>mic_boost=yes=no</item> -->
<string-array name="config_telephony_set_audioparameters" translatable="false">
<item>dualmic_enabled=true=false</item>
</string-array>

<!-- Hardware 'face' keys present on the device, stored as a bit field.
Expand Down

0 comments on commit aacb3db

Please sign in to comment.