2015-01-02 15:43:28 -08:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
2015-06-04 14:19:10 -07:00
|
|
|
import android.content.Context;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
|
2015-01-02 15:43:28 -08:00
|
|
|
public class PushMediaConstraints extends MediaConstraints {
|
2015-06-04 14:19:10 -07:00
|
|
|
private static final int MAX_IMAGE_DIMEN_LOWMEM = 768;
|
|
|
|
private static final int MAX_IMAGE_DIMEN = 1280;
|
|
|
|
private static final int KB = 1024;
|
|
|
|
private static final int MB = 1024 * KB;
|
2015-01-02 15:43:28 -08:00
|
|
|
|
|
|
|
@Override
|
2015-06-04 14:19:10 -07:00
|
|
|
public int getImageMaxWidth(Context context) {
|
|
|
|
return Util.isLowMemory(context) ? MAX_IMAGE_DIMEN_LOWMEM : MAX_IMAGE_DIMEN;
|
2015-01-02 15:43:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-06-04 14:19:10 -07:00
|
|
|
public int getImageMaxHeight(Context context) {
|
|
|
|
return getImageMaxWidth(context);
|
2015-01-02 15:43:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getImageMaxSize() {
|
2015-05-30 19:22:24 -07:00
|
|
|
return 420 * KB;
|
2015-01-02 15:43:28 -08:00
|
|
|
}
|
|
|
|
|
2015-07-15 13:42:59 -07:00
|
|
|
@Override
|
|
|
|
public int getGifMaxSize() {
|
2015-09-04 17:33:22 -07:00
|
|
|
return 5 * MB;
|
2015-07-15 13:42:59 -07:00
|
|
|
}
|
|
|
|
|
2015-01-02 15:43:28 -08:00
|
|
|
@Override
|
|
|
|
public int getVideoMaxSize() {
|
2015-09-04 17:33:22 -07:00
|
|
|
return 100 * MB;
|
2015-01-02 15:43:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getAudioMaxSize() {
|
2015-09-04 17:33:22 -07:00
|
|
|
return 100 * MB;
|
2015-01-02 15:43:28 -08:00
|
|
|
}
|
|
|
|
}
|