summaryrefslogtreecommitdiffstats
path: root/gallerycommon
diff options
context:
space:
mode:
authorWu-cheng Li <wuchengli@google.com>2012-09-25 17:45:03 +0800
committerWu-cheng Li <wuchengli@google.com>2012-09-25 18:00:09 +0800
commitc722a7cd2861538f70f2dc988cbcc4ea9362ae98 (patch)
treecde53a8f1f16f1ddeff9ec2d207038ea4c200fce /gallerycommon
parent0a0cc9bb0072c01a9b35c3d0275f9bcacfc7d988 (diff)
downloadandroid_packages_apps_Snap-c722a7cd2861538f70f2dc988cbcc4ea9362ae98.tar.gz
android_packages_apps_Snap-c722a7cd2861538f70f2dc988cbcc4ea9362ae98.tar.bz2
android_packages_apps_Snap-c722a7cd2861538f70f2dc988cbcc4ea9362ae98.zip
Add API check for "context" input port of effects recording.
bug:7106963 Change-Id: Ia065903dd120bf20862c6adfd8a699277a27ac50
Diffstat (limited to 'gallerycommon')
-rw-r--r--gallerycommon/src/com/android/gallery3d/common/ApiHelper.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
index 06fb9d902..cfdde1598 100644
--- a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
+++ b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
@@ -133,6 +133,10 @@ public class ApiHelper {
public static final boolean HAS_EFFECTS_RECORDING =
Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN;
+ // "Background" filter does not have "context" input port in jelly bean.
+ public static final boolean HAS_EFFECTS_RECORDING_CONTEXT_INPUT =
+ Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN_MR1;
+
public static final boolean HAS_GET_SUPPORTED_VIDEO_SIZE =
Build.VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB;