Bump to allow full WXGA resolution

git-svn-id: https://zxing.googlecode.com/svn/trunk@2707 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen@gmail.com 2013-05-03 15:41:07 +00:00
parent 90ba467f47
commit a6f8559478

View file

@ -45,7 +45,7 @@ final class CameraConfigurationManager {
// below will still select the default (presumably 320x240) size for these. This prevents
// accidental selection of very low resolution on some devices.
private static final int MIN_PREVIEW_PIXELS = 470 * 320; // normal screen
private static final int MAX_PREVIEW_PIXELS = 1280 * 720;
private static final int MAX_PREVIEW_PIXELS = 1280 * 800;
private final Context context;
private Point screenResolution;