mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-23 02:10:44 +01:00
Fix poor calling audio on certain devices.
This commit is contained in:
committed by
Greyson Parrelli
parent
c41795e7f0
commit
3e001ddf1b
@@ -82,7 +82,6 @@ public final class FeatureFlags {
|
||||
private static final String HARDWARE_AEC_BLOCKLIST_MODELS = "android.calling.hardwareAecBlockList";
|
||||
private static final String SOFTWARE_AEC_BLOCKLIST_MODELS = "android.calling.softwareAecBlockList";
|
||||
private static final String USE_HARDWARE_AEC_IF_OLD = "android.calling.useHardwareAecIfOlderThanApi29";
|
||||
private static final String USE_AEC3 = "android.calling.useAec3";
|
||||
private static final String PAYMENTS_COUNTRY_BLOCKLIST = "global.payments.disabledRegions";
|
||||
public static final String PHONE_NUMBER_PRIVACY = "android.pnp";
|
||||
public static final String BLOCK_SSE = "android.blockSessionSwitchoverEvents";
|
||||
@@ -154,7 +153,6 @@ public final class FeatureFlags {
|
||||
HARDWARE_AEC_BLOCKLIST_MODELS,
|
||||
SOFTWARE_AEC_BLOCKLIST_MODELS,
|
||||
USE_HARDWARE_AEC_IF_OLD,
|
||||
USE_AEC3,
|
||||
PAYMENTS_COUNTRY_BLOCKLIST,
|
||||
STORIES_AUTO_DOWNLOAD_MAXIMUM,
|
||||
TELECOM_MANUFACTURER_ALLOWLIST,
|
||||
@@ -240,7 +238,6 @@ public final class FeatureFlags {
|
||||
HARDWARE_AEC_BLOCKLIST_MODELS,
|
||||
SOFTWARE_AEC_BLOCKLIST_MODELS,
|
||||
USE_HARDWARE_AEC_IF_OLD,
|
||||
USE_AEC3,
|
||||
PAYMENTS_COUNTRY_BLOCKLIST,
|
||||
TELECOM_MANUFACTURER_ALLOWLIST,
|
||||
TELECOM_MODEL_BLOCKLIST,
|
||||
@@ -517,11 +514,6 @@ public final class FeatureFlags {
|
||||
return getBoolean(USE_HARDWARE_AEC_IF_OLD, false);
|
||||
}
|
||||
|
||||
/** Whether or not {@link org.signal.ringrtc.CallManager.AudioProcessingMethod#ForceSoftwareAec3} can be used */
|
||||
public static boolean useAec3() {
|
||||
return getBoolean(USE_AEC3, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Prefetch count for stories from a given user.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user