Searched refs:sBitmapOptionsCache (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Music/src/com/android/music/
H A DMusicUtils.java862 private static final BitmapFactory.Options sBitmapOptionsCache = new BitmapFactory.Options(); field in class:MusicUtils
872 sBitmapOptionsCache.inPreferredConfig = Bitmap.Config.RGB_565;
873 sBitmapOptionsCache.inDither = false;
941 // and pass that to sBitmapOptionsCache.inSampleSize, which will
943 sBitmapOptionsCache.inJustDecodeBounds = true;
945 fd.getFileDescriptor(), null, sBitmapOptionsCache);
946 int nextWidth = sBitmapOptionsCache.outWidth >> 1;
947 int nextHeight = sBitmapOptionsCache.outHeight >> 1;
954 sBitmapOptionsCache.inSampleSize = sampleSize;
955 sBitmapOptionsCache
[all...]

Completed in 30 milliseconds