summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChung-yih Wang <cywang@google.com>2011-10-06 05:48:53 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-10-06 05:48:53 -0700
commit66c52372aee1f7997ce4a0a852d63bd63c148c6f (patch)
treeba271a5433c11694078b81191975e1baa5734891
parent02462c6bebe4af262936096540f08c6de56e04b7 (diff)
parenta6237b99ec53f93209f5af3594c98af5abb8a951 (diff)
downloadLegacyCamera-66c52372aee1f7997ce4a0a852d63bd63c148c6f.zip
LegacyCamera-66c52372aee1f7997ce4a0a852d63bd63c148c6f.tar.gz
LegacyCamera-66c52372aee1f7997ce4a0a852d63bd63c148c6f.tar.bz2
Merge "Use hardcoded value for QUALITY_TIME_LAPSE_QVGA."
-rw-r--r--src/com/android/camera/VideoCamera.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/camera/VideoCamera.java b/src/com/android/camera/VideoCamera.java
index 6abf400..8deaaa3 100644
--- a/src/com/android/camera/VideoCamera.java
+++ b/src/com/android/camera/VideoCamera.java
@@ -110,7 +110,7 @@ public class VideoCamera extends ActivityBase
CamcorderProfile.QUALITY_TIME_LAPSE_720P,
CamcorderProfile.QUALITY_TIME_LAPSE_480P,
CamcorderProfile.QUALITY_TIME_LAPSE_CIF,
- CamcorderProfile.QUALITY_TIME_LAPSE_QVGA,
+ 1007, /* TODO: replace it with QUALITY_TIME_LAPSE_QVGA if public. */
CamcorderProfile.QUALITY_TIME_LAPSE_QCIF};
private static final int[] VIDEO_QUALITY = {
@@ -118,7 +118,7 @@ public class VideoCamera extends ActivityBase
CamcorderProfile.QUALITY_720P,
CamcorderProfile.QUALITY_480P,
CamcorderProfile.QUALITY_CIF,
- CamcorderProfile.QUALITY_QVGA,
+ 7, /* TODO: replace it with CamcorderProfile.QUALITY_QVGA */
CamcorderProfile.QUALITY_QCIF};
/**