diff options
author | Teng-Hui Zhu <ztenghui@google.com> | 2012-09-23 15:02:56 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-09-24 13:36:40 -0700 |
commit | 561df21b1651cf6b266f241bb1a3945c05c229bf (patch) | |
tree | f065cb295546c885604e180b12549e9a8c8a895c /gallerycommon/src/com | |
parent | a0222b73be4f34f4ddc263cdacaf108a4d4f56db (diff) | |
download | android_packages_apps_Snap-561df21b1651cf6b266f241bb1a3945c05c229bf.tar.gz android_packages_apps_Snap-561df21b1651cf6b266f241bb1a3945c05c229bf.tar.bz2 android_packages_apps_Snap-561df21b1651cf6b266f241bb1a3945c05c229bf.zip |
The trimming solution with the mp4parser library.
bug:7093055
Change-Id: I598a81d80c9c5107696f3af7761207e3ec88f3ff
Diffstat (limited to 'gallerycommon/src/com')
-rw-r--r-- | gallerycommon/src/com/android/gallery3d/common/ApiHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java index fe5e795d7..802f4ec18 100644 --- a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java +++ b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java @@ -161,7 +161,7 @@ public class ApiHelper { Build.VERSION.SDK_INT >= VERSION_CODES.ICE_CREAM_SANDWICH; public static final boolean HAS_MEDIA_MUXER = - Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN_MR1; + Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN; public static int getIntFieldIfExists(Class<?> klass, String fieldName, Class<?> obj, int defaultVal) { |