Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/src/com/android/providers/media/util/
DSpecialFormatDetector.java106 final BitmapFactory.Options bitmapOptions = new BitmapFactory.Options(); in detectGifOrAnimatedWebp() local
109 bitmapOptions.inSampleSize = 1; in detectGifOrAnimatedWebp()
110 bitmapOptions.inJustDecodeBounds = true; in detectGifOrAnimatedWebp()
111 BitmapFactory.decodeFile(file.getAbsolutePath(), bitmapOptions); in detectGifOrAnimatedWebp() local
113 if ("image/gif".equalsIgnoreCase(bitmapOptions.outMimeType)) { in detectGifOrAnimatedWebp()
116 if ("image/webp".equalsIgnoreCase(bitmapOptions.outMimeType) && isAnimatedWebp(file)) { in detectGifOrAnimatedWebp()
/packages/providers/MediaProvider/src/com/android/providers/media/scan/
DModernMediaScanner.java1241 final BitmapFactory.Options bitmapOptions = new BitmapFactory.Options(); in withBitmapResolutionValues() local
1242 bitmapOptions.inSampleSize = 1; in withBitmapResolutionValues()
1243 bitmapOptions.inJustDecodeBounds = true; in withBitmapResolutionValues()
1244 bitmapOptions.outWidth = 0; in withBitmapResolutionValues()
1245 bitmapOptions.outHeight = 0; in withBitmapResolutionValues()
1246 BitmapFactory.decodeFile(file.getAbsolutePath(), bitmapOptions); in withBitmapResolutionValues() local
1248 final Optional<?> width = parseOptionalOrZero(bitmapOptions.outWidth); in withBitmapResolutionValues()
1249 final Optional<?> height = parseOptionalOrZero(bitmapOptions.outHeight); in withBitmapResolutionValues()