Skip to content

Commit f05e6d6

Browse files
committed
Add a buffer of 64 for exclusive value ranges
1 parent 32b2f0e commit f05e6d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/main/java/org/thoughtcrime/securesms/mms/PushMediaConstraints.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ public enum MediaConfig {
128128

129129
LEVEL_1(false, 1, (25 * MB), IMAGE_DIMEN(4032), 100, TranscodingPreset.LEVEL_1),
130130
LEVEL_2(false, 2, (int) (50 * MB), IMAGE_DIMEN(8192), 100, TranscodingPreset.LEVEL_2),
131-
LEVEL_3(false, 3, (int) (75 * MB), IMAGE_DIMEN(16320), 100, TranscodingPreset.LEVEL_3),
132-
LEVEL_3_H265(false, 4, (int) (75 * MB), IMAGE_DIMEN(16320), 100, TranscodingPreset.LEVEL_3_H265);
131+
LEVEL_3(false, 3, (int) (75 * MB), IMAGE_DIMEN(16384), 100, TranscodingPreset.LEVEL_3),
132+
LEVEL_3_H265(false, 4, (int) (75 * MB), IMAGE_DIMEN(16384), 100, TranscodingPreset.LEVEL_3_H265);
133133

134134
private final boolean isLowMemory;
135135
private final int level;

0 commit comments

Comments
 (0)