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

/packages/apps/Music/src/com/android/music/
H A DMusicUtils.java852 private static final BitmapFactory.Options sBitmapOptionsCache = new BitmapFactory.Options(); field in class:MusicUtils
862 sBitmapOptionsCache.inPreferredConfig = Bitmap.Config.RGB_565;
863 sBitmapOptionsCache.inDither = false;
932 // and pass that to sBitmapOptionsCache.inSampleSize, which will
934 sBitmapOptionsCache.inJustDecodeBounds = true;
936 fd.getFileDescriptor(), null, sBitmapOptionsCache);
937 int nextWidth = sBitmapOptionsCache.outWidth >> 1;
938 int nextHeight = sBitmapOptionsCache.outHeight >> 1;
945 sBitmapOptionsCache.inSampleSize = sampleSize;
946 sBitmapOptionsCache
[all...]

Completed in 30 milliseconds