Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ public final class CameraManager {

private static final String TAG = CameraManager.class.getSimpleName();

private static final int MIN_FRAME_WIDTH = 220;
private static final int MIN_FRAME_HEIGHT = 220;
private static final int MAX_FRAME_WIDTH = 880;
private static final int MAX_FRAME_HEIGHT = 680;
private static final int MIN_FRAME_WIDTH = 320;
private static final int MIN_FRAME_HEIGHT = 320;
private static final int MAX_FRAME_WIDTH = 400;
private static final int MAX_FRAME_HEIGHT = 400;

private final Context context;
private final CameraConfigurationManager configManager;
Expand Down