summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-11-01 07:37:00 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-11-01 07:37:00 -0700
commit365dab37335c5c0a0ab97ad7ebb28e63046913b7 (patch)
tree42cf37c78c9da5ce70936a206caf8a1af336b159 /src
parentabf79a3e25e6c631275e9f81424c0aa25ec9191b (diff)
parent7be69bb2c491505a61771effee9cbfaedb8f5344 (diff)
downloadLegacyCamera-365dab37335c5c0a0ab97ad7ebb28e63046913b7.zip
LegacyCamera-365dab37335c5c0a0ab97ad7ebb28e63046913b7.tar.gz
LegacyCamera-365dab37335c5c0a0ab97ad7ebb28e63046913b7.tar.bz2
Merge "Replace hardcoded value with public API constant" into ics-mr1
Diffstat (limited to 'src')
-rwxr-xr-xsrc/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 78978f5..2cc07a5 100755
--- a/src/com/android/camera/VideoCamera.java
+++ b/src/com/android/camera/VideoCamera.java
@@ -116,7 +116,7 @@ public class VideoCamera extends ActivityBase
CamcorderProfile.QUALITY_TIME_LAPSE_720P,
CamcorderProfile.QUALITY_TIME_LAPSE_480P,
CamcorderProfile.QUALITY_TIME_LAPSE_CIF,
- 1007, /* TODO: replace it with QUALITY_TIME_LAPSE_QVGA if public. */
+ CamcorderProfile.QUALITY_TIME_LAPSE_QVGA,
CamcorderProfile.QUALITY_TIME_LAPSE_QCIF};
private static final int[] VIDEO_QUALITY = {
@@ -124,7 +124,7 @@ public class VideoCamera extends ActivityBase
CamcorderProfile.QUALITY_720P,
CamcorderProfile.QUALITY_480P,
CamcorderProfile.QUALITY_CIF,
- 7, /* TODO: replace it with CamcorderProfile.QUALITY_QVGA */
+ CamcorderProfile.QUALITY_QVGA,
CamcorderProfile.QUALITY_QCIF};
/**