forked from mirror/monocles_chat
add Samsung S4 to hardware aec blacklist (Daniel Gultsch)
This commit is contained in:
parent
2753f14ec3
commit
3c8ade1a8b
1 changed files with 4 additions and 0 deletions
|
@ -66,6 +66,7 @@ public class WebRTCWrapper {
|
|||
private final ExecutorService executorService = Executors.newSingleThreadExecutor();
|
||||
|
||||
//we should probably keep this in sync with: https://github.com/signalapp/Signal-Android/blob/master/app/src/main/java/org/thoughtcrime/securesms/ApplicationContext.java#L296
|
||||
|
||||
private static final Set<String> HARDWARE_AEC_BLACKLIST = new ImmutableSet.Builder<String>()
|
||||
.add("Pixel")
|
||||
.add("Pixel XL")
|
||||
|
@ -79,6 +80,9 @@ public class WebRTCWrapper {
|
|||
.add("Redmi Note 5")
|
||||
.add("FP2") // Fairphone FP2
|
||||
.add("MI 5")
|
||||
.add("GT-I9515") // Samsung Galaxy S4 Value Edition (jfvelte)
|
||||
.add("GT-I9515L") // Samsung Galaxy S4 Value Edition (jfvelte)
|
||||
.add("GT-I9505") // Samsung Galaxy S4 (jfltexx)
|
||||
.build();
|
||||
|
||||
private static final int CAPTURING_RESOLUTION = 1920;
|
||||
|
|
Loading…
Add table
Reference in a new issue