|
@@ -40,6 +40,7 @@ import com.nextcloud.talk.jobs.AccountRemovalJob;
|
|
|
import com.nextcloud.talk.jobs.PushRegistrationJob;
|
|
|
import com.nextcloud.talk.jobs.creator.MagicJobCreator;
|
|
|
import com.nextcloud.talk.utils.database.user.UserModule;
|
|
|
+import com.nextcloud.talk.webrtc.MagicWebRtcLists;
|
|
|
import com.squareup.leakcanary.LeakCanary;
|
|
|
import com.squareup.leakcanary.RefWatcher;
|
|
|
|
|
@@ -51,8 +52,6 @@ import java.lang.reflect.Constructor;
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
import java.lang.reflect.Method;
|
|
|
import java.security.GeneralSecurityException;
|
|
|
-import java.util.HashSet;
|
|
|
-import java.util.Set;
|
|
|
|
|
|
import javax.inject.Singleton;
|
|
|
|
|
@@ -109,52 +108,24 @@ public class NextcloudTalkApplication extends MultiDexApplication {
|
|
|
addDelegate.invoke(drawableManager, "vector", vdcInflateDelegate);
|
|
|
} catch (ClassNotFoundException | NoSuchMethodException | InstantiationException |
|
|
|
InvocationTargetException | IllegalAccessException e) {
|
|
|
- Log.d(TAG, "Failed to use reflection to enable proper vector scaling");
|
|
|
+ Log.e(TAG, "Failed to use reflection to enable proper vector scaling");
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /*
|
|
|
- AEC blacklist and SL_ES_WHITELIST are borrowed from Signal
|
|
|
- https://github.com/WhisperSystems/Signal-Android/blob/551470123d006b76a68d705d131bb12513a5e683/src/org/thoughtcrime/securesms/ApplicationContext.java
|
|
|
- */
|
|
|
private void initializeWebRtc() {
|
|
|
try {
|
|
|
- Set<String> HARDWARE_AEC_BLACKLIST = new HashSet<String>() {{
|
|
|
- add("D6503"); // Sony Xperia Z2 D6503
|
|
|
- add("ONE A2005"); // OnePlus 2
|
|
|
- add("MotoG3"); // Moto G (3rd Generation)
|
|
|
- add("Nexus 6P"); // Nexus 6p
|
|
|
- add("Pixel"); // Pixel
|
|
|
- add("Pixel XL"); // Pixel XL
|
|
|
- add("MI 4LTE"); // Xiami Mi4
|
|
|
- add("Redmi Note 3"); // Redmi Note 3
|
|
|
- add("Redmi Note 4"); // Redmi Note 4
|
|
|
- add("SM-G900F"); // Samsung Galaxy S5
|
|
|
- add("g3_kt_kr"); // LG G3
|
|
|
- add("SM-G930F"); // Samsung Galaxy S7
|
|
|
- add("Xperia SP"); // Sony Xperia SP
|
|
|
- add("Nexus 6"); // Nexus 6
|
|
|
- add("ONE E1003"); // OnePlus X
|
|
|
- add("One"); // OnePlus One
|
|
|
- add("Moto G5");
|
|
|
- }};
|
|
|
-
|
|
|
- Set<String> OPEN_SL_ES_WHITELIST = new HashSet<String>() {{
|
|
|
- add("Pixel");
|
|
|
- add("Pixel XL");
|
|
|
- }};
|
|
|
-
|
|
|
- if (HARDWARE_AEC_BLACKLIST.contains(Build.MODEL)) {
|
|
|
+ if (MagicWebRtcLists.HARDWARE_AEC_BLACKLIST.contains(Build.MODEL)) {
|
|
|
WebRtcAudioUtils.setWebRtcBasedAcousticEchoCanceler(true);
|
|
|
}
|
|
|
|
|
|
- if (!OPEN_SL_ES_WHITELIST.contains(Build.MODEL)) {
|
|
|
+ if (!MagicWebRtcLists.OPEN_SL_ES_WHITELIST.contains(Build.MODEL)) {
|
|
|
WebRtcAudioManager.setBlacklistDeviceForOpenSLESUsage(true);
|
|
|
}
|
|
|
|
|
|
PeerConnectionFactory.initialize(PeerConnectionFactory.InitializationOptions.builder(this)
|
|
|
- .setEnableVideoHwAcceleration(true)
|
|
|
+ .setEnableVideoHwAcceleration(!MagicWebRtcLists.HARDWARE_ACCELERATION_VENDOR_BLACKLIST.contains(Build
|
|
|
+ .MANUFACTURER.toLowerCase()))
|
|
|
.createInitializationOptions());
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
|
Log.w(TAG, e);
|