Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DThumbnailUtils.java260 int roundedSize; in computeSampleSize() local
262 roundedSize = 1; in computeSampleSize()
263 while (roundedSize < initialSize) { in computeSampleSize()
264 roundedSize <<= 1; in computeSampleSize()
267 roundedSize = (initialSize + 7) / 8 * 8; in computeSampleSize()
270 return roundedSize; in computeSampleSize()