Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DThumbnailUtils.java256 int roundedSize; in computeSampleSize() local
258 roundedSize = 1; in computeSampleSize()
259 while (roundedSize < initialSize) { in computeSampleSize()
260 roundedSize <<= 1; in computeSampleSize()
263 roundedSize = (initialSize + 7) / 8 * 8; in computeSampleSize()
266 return roundedSize; in computeSampleSize()