summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2012-09-04 11:44:57 +0800
committerOwen Lin <owenlin@google.com>2012-09-04 11:44:57 +0800
commitd01a96e278ea96ee6ee43b37e60c4d37a8959e95 (patch)
tree26d18c40d31e434a68d1d031b529727087f5c055 /src
parentdc433a066188e52593aaf7f0fae96191f44a5e26 (diff)
downloadandroid_packages_apps_Snap-d01a96e278ea96ee6ee43b37e60c4d37a8959e95.tar.gz
android_packages_apps_Snap-d01a96e278ea96ee6ee43b37e60c4d37a8959e95.tar.bz2
android_packages_apps_Snap-d01a96e278ea96ee6ee43b37e60c4d37a8959e95.zip
Set inMutable to true if we may reuse the bitmap.
bug: 7092330 Change-Id: I0def7e2e9ce57d09ba7f5e001b33cc605a6af44c
Diffstat (limited to 'src')
-rw-r--r--src/com/android/gallery3d/data/DecodeUtils.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/data/DecodeUtils.java b/src/com/android/gallery3d/data/DecodeUtils.java
index 773af74bb..4d3c99653 100644
--- a/src/com/android/gallery3d/data/DecodeUtils.java
+++ b/src/com/android/gallery3d/data/DecodeUtils.java
@@ -25,6 +25,7 @@ import android.graphics.BitmapRegionDecoder;
import android.os.Build;
import android.util.FloatMath;
+import com.android.gallery3d.common.ApiHelper;
import com.android.gallery3d.common.BitmapUtils;
import com.android.gallery3d.common.Utils;
import com.android.gallery3d.ui.Log;
@@ -51,9 +52,15 @@ public class DecodeUtils {
}
}
+ @TargetApi(ApiHelper.VERSION_CODES.HONEYCOMB)
+ public static void setOptionsMutable(Options options) {
+ if (ApiHelper.HAS_OPTIONS_IN_MUTABLE) options.inMutable = true;
+ }
+
public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) {
if (options == null) options = new Options();
jc.setCancelListener(new DecodeCanceller(options));
+ setOptionsMutable(options);
return ensureGLCompatibleBitmap(
BitmapFactory.decodeFileDescriptor(fd, null, options));
}
@@ -75,6 +82,7 @@ public class DecodeUtils {
int length, Options options) {
if (options == null) options = new Options();
jc.setCancelListener(new DecodeCanceller(options));
+ setOptionsMutable(options);
return ensureGLCompatibleBitmap(
BitmapFactory.decodeByteArray(bytes, offset, length, options));
}
@@ -135,6 +143,7 @@ public class DecodeUtils {
}
options.inJustDecodeBounds = false;
+ setOptionsMutable(options);
Bitmap result = BitmapFactory.decodeFileDescriptor(fd, null, options);
if (result == null) return null;
@@ -170,6 +179,8 @@ public class DecodeUtils {
options.inSampleSize = BitmapUtils.computeSampleSizeLarger(
options.outWidth, options.outHeight, targetSize);
options.inJustDecodeBounds = false;
+ setOptionsMutable(options);
+
return ensureGLCompatibleBitmap(
BitmapFactory.decodeByteArray(data, 0, data.length, options));
}