diff options
author | Wei-Ta Chen <weita@google.com> | 2010-12-06 15:44:18 -0800 |
---|---|---|
committer | Wei-Ta Chen <weita@google.com> | 2010-12-07 16:10:16 -0800 |
commit | 0e007d7ab9ae4f1be506f4976182609d80d75a5c (patch) | |
tree | 9400d1dfdafe2d7e6ea50a2fb922a97089d06e28 /graphics | |
parent | debfb7fc01b01b2f7a4e165bfc81ee699f6f518a (diff) | |
download | frameworks_base-0e007d7ab9ae4f1be506f4976182609d80d75a5c.zip frameworks_base-0e007d7ab9ae4f1be506f4976182609d80d75a5c.tar.gz frameworks_base-0e007d7ab9ae4f1be506f4976182609d80d75a5c.tar.bz2 |
Unhide inPreferQualityOverSpeed in BitmapFactory.Options.
The new field allows a developer to use a more accurate by
slightly slower IDCT method in JPEG decode. This in turns improves the
quality of the reconstructed image.
The field by default is not set and thus does not affect existing
applications.
Bug: 3238925
Related changes: https://android-git.corp.google.com/g/#change,83291 and
https://android-git.corp.google.com/g/#change,83294
Change-Id: I969f5c413f9b2179454aeb90e18ae8222ee583b4
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/java/android/graphics/BitmapFactory.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/graphics/java/android/graphics/BitmapFactory.java b/graphics/java/android/graphics/BitmapFactory.java index 8450c3a..66f8f70 100644 --- a/graphics/java/android/graphics/BitmapFactory.java +++ b/graphics/java/android/graphics/BitmapFactory.java @@ -210,7 +210,6 @@ public class BitmapFactory { * expense of the decoding speed. Currently the field only affects JPEG * decode, in the case of which a more accurate, but slightly slower, * IDCT method will be used instead. - * @hide */ public boolean inPreferQualityOverSpeed; |