Lines Matching refs:sBitmapOptionsCache
862 private static final BitmapFactory.Options sBitmapOptionsCache = new BitmapFactory.Options(); field in MusicUtils
872 sBitmapOptionsCache.inPreferredConfig = Bitmap.Config.RGB_565;
873 sBitmapOptionsCache.inDither = false;
943 sBitmapOptionsCache.inJustDecodeBounds = true; in getArtworkQuick()
945 fd.getFileDescriptor(), null, sBitmapOptionsCache); in getArtworkQuick() local
946 int nextWidth = sBitmapOptionsCache.outWidth >> 1; in getArtworkQuick()
947 int nextHeight = sBitmapOptionsCache.outHeight >> 1; in getArtworkQuick()
954 sBitmapOptionsCache.inSampleSize = sampleSize; in getArtworkQuick()
955 sBitmapOptionsCache.inJustDecodeBounds = false; in getArtworkQuick()
957 fd.getFileDescriptor(), null, sBitmapOptionsCache); in getArtworkQuick()
961 if (sBitmapOptionsCache.outWidth != w || sBitmapOptionsCache.outHeight != h) { in getArtworkQuick()