summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChung-yih Wang <cywang@google.com>2011-10-06 17:33:29 +0800
committerChung-yih Wang <cywang@google.com>2011-10-06 17:47:51 +0800
commita6237b99ec53f93209f5af3594c98af5abb8a951 (patch)
tree32ecfa47739158ed8bd23f45827c7c14fbefd59a
parent739a5ff8a554729a6637cb042889b9c17be6b9b2 (diff)
downloadLegacyCamera-a6237b99ec53f93209f5af3594c98af5abb8a951.zip
LegacyCamera-a6237b99ec53f93209f5af3594c98af5abb8a951.tar.gz
LegacyCamera-a6237b99ec53f93209f5af3594c98af5abb8a951.tar.bz2
Use hardcoded value for QUALITY_TIME_LAPSE_QVGA.
bug:5377739 Change-Id: I42026cb9ed06329482fc0bc6717cb8ea7e7f1fa0
-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};
/**