diff options
author | Shriram Ganesh <sganesh@codeaurora.org> | 2015-03-12 14:26:01 +0530 |
---|---|---|
committer | Linux Build Service Account <lnxbuild@localhost> | 2015-10-06 03:26:18 -0600 |
commit | 8c0bc4c99c9416ea734d01cc3ffbb09eb3540937 (patch) | |
tree | 769346caaf7e75dd894424253da7c20d59237ffe | |
parent | 4f3fd69a2c277ca65295cfe0a102ee7f43f7e578 (diff) | |
download | frameworks_base-8c0bc4c99c9416ea734d01cc3ffbb09eb3540937.zip frameworks_base-8c0bc4c99c9416ea734d01cc3ffbb09eb3540937.tar.gz frameworks_base-8c0bc4c99c9416ea734d01cc3ffbb09eb3540937.tar.bz2 |
IMS: Initialize audio quality with NONE instead of AMR_WB.
Initial value of audio quality needs to be set to NONE to avoid
wrong quality value during MO call setup.
Bug: 22122298
Change-Id: I06173abe38c9be1e9499c8c0958f985c45709f1c
-rw-r--r-- | telephony/java/com/android/ims/ImsStreamMediaProfile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telephony/java/com/android/ims/ImsStreamMediaProfile.java b/telephony/java/com/android/ims/ImsStreamMediaProfile.java index 359b270..5a99212 100644 --- a/telephony/java/com/android/ims/ImsStreamMediaProfile.java +++ b/telephony/java/com/android/ims/ImsStreamMediaProfile.java @@ -76,7 +76,7 @@ public class ImsStreamMediaProfile implements Parcelable { } public ImsStreamMediaProfile() { - mAudioQuality = AUDIO_QUALITY_AMR_WB; + mAudioQuality = AUDIO_QUALITY_NONE; mAudioDirection = DIRECTION_SEND_RECEIVE; mVideoQuality = VIDEO_QUALITY_NONE; mVideoDirection = DIRECTION_INVALID; |