Home
last modified time | relevance | path

Searched refs:MAX_PIXEL_COUNT (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
DDecodeUtils.java123 final int MAX_PIXEL_COUNT = 640000; // 400 x 1600 in decodeThumbnail() local
124 if ((w / options.inSampleSize) * (h / options.inSampleSize) > MAX_PIXEL_COUNT) { in decodeThumbnail()
126 FloatMath.sqrt((float) MAX_PIXEL_COUNT / (w * h))); in decodeThumbnail()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DCropImage.java85 private static final int MAX_PIXEL_COUNT = 5 * 1000000; // 5M pixels field in CropImage
566 if (outputX * outputY > MAX_PIXEL_COUNT) { in getCroppedImage()
567 float scale = FloatMath.sqrt((float) MAX_PIXEL_COUNT / outputX / outputY); in getCroppedImage()