OSDN Git Service

Added jpeg streaming classes.
authorRuben Brunk <rubenbrunk@google.com>
Sat, 29 Jun 2013 03:02:54 +0000 (20:02 -0700)
committerRuben Brunk <rubenbrunk@google.com>
Thu, 11 Jul 2013 20:41:29 +0000 (13:41 -0700)
- Provides streaming operations for decompressing/compressing
  JPEG files.
- Allows pixel operations to be performed on large JPEG images
  without holding the entire bitmap in memory.

Change-Id: I597ddf282b59d2ba6d6bca4722208121e3728f94

proguard.flags

index 8cb0486..844c163 100644 (file)
@@ -84,3 +84,8 @@
   *** toArray(...);
 }
 -keep class com.android.gallery3d.util.ProfileData { *; }
+
+# - Required for running jpeg stream tests on userdebug
+-keep class com.android.gallery3d.jpegstream.JPEGOutputStream { *; }
+-keep class com.android.gallery3d.jpegstream.JPEGInputStream { *; }
+-keep class com.android.gallery3d.jpegstream.StreamUtils { *; }