diff options
| -rw-r--r-- | src/com/android/camera/VideoCamera.java | 4 |
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}; /** |
