Home
last modified time | relevance | path

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

/packages/apps/Gallery2/src/com/android/gallery3d/data/
DDecodeUtils.java134 final int MAX_PIXEL_COUNT = 640000; // 400 x 1600 in decodeThumbnail() local
135 if ((w / options.inSampleSize) * (h / options.inSampleSize) > MAX_PIXEL_COUNT) { in decodeThumbnail()
137 (float) Math.sqrt((double) MAX_PIXEL_COUNT / (w * h))); in decodeThumbnail()