Skip to content

Commit

Permalink
Add config to show HD icon on EVS codec.
Browse files Browse the repository at this point in the history
Add config to show HD icon when audio codec is EVS_WB, EVS_SWB
and EVS_FB.
Default value is false.

Change-Id: I6c6b9fc413ba1298522d8c661b50f458a71a2aa7
CRs-fixed: 986961
  • Loading branch information
Dheeraj Shetty authored and MarcLandis committed Jul 4, 2016
1 parent be70a96 commit 34e39d0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions telephony/java/android/telephony/CarrierConfigManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,13 @@ public CarrierConfigManager() {
*/
public static final String KEY_HIDE_IMS_APN_BOOL = "hide_ims_apn_bool";

/**
* Determine whether HD icon should displayed when audio codec is EVS.
* @hide
*/
public static final String KEY_IMS_SUPPORT_EVS_HD_ICON_BOOL =
"carrier_ims_support_evs_hd_icon_bool";

/**
* Determine whether preferred network type can be shown.
* @hide
Expand Down Expand Up @@ -576,6 +583,7 @@ public CarrierConfigManager() {
sDefaults.putBoolean(KEY_SUPPORT_CONFERENCE_CALL_BOOL, true);
sDefaults.putBoolean(KEY_EDITABLE_ENHANCED_4G_LTE_BOOL, true);
sDefaults.putBoolean(KEY_HIDE_IMS_APN_BOOL, false);
sDefaults.putBoolean(KEY_IMS_SUPPORT_EVS_HD_ICON_BOOL, false);
sDefaults.putBoolean(KEY_HIDE_PREFERRED_NETWORK_TYPE_BOOL, false);
sDefaults.putBoolean(KEY_EDITABLE_WFC_MODE_BOOL, true);
sDefaults.putInt(KEY_CDMA_DTMF_TONE_DELAY_INT, 100);
Expand Down

0 comments on commit 34e39d0

Please sign in to comment.