summaryrefslogtreecommitdiffstats
path: root/include/camera
diff options
context:
space:
mode:
authorWu-cheng Li <wuchengli@google.com>2010-09-21 10:44:38 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-21 10:44:38 -0700
commit9219e0b4eb346b5e0a1a21e77fe22b8c2232ec4b (patch)
treeb64534d8a3a5113af0c1a6544b2949fbc4786916 /include/camera
parent32eaa26f6152913b015f855a930cd8f12bd21d4d (diff)
parent470644a573b24bc13e0e357a01902322dee0a716 (diff)
downloadframeworks_av-9219e0b4eb346b5e0a1a21e77fe22b8c2232ec4b.zip
frameworks_av-9219e0b4eb346b5e0a1a21e77fe22b8c2232ec4b.tar.gz
frameworks_av-9219e0b4eb346b5e0a1a21e77fe22b8c2232ec4b.tar.bz2
am 2ad1ebca: am d45cb72a: Rename FOCUS_MODE_CONTINUOUS to FOCUS_MODE_CONTINUOUS_VIDEO.
Merge commit '2ad1ebcaabb632c8fe714f0c3fd88bdfa14697bd' * commit '2ad1ebcaabb632c8fe714f0c3fd88bdfa14697bd': Rename FOCUS_MODE_CONTINUOUS to FOCUS_MODE_CONTINUOUS_VIDEO.
Diffstat (limited to 'include/camera')
-rw-r--r--include/camera/CameraParameters.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/camera/CameraParameters.h b/include/camera/CameraParameters.h
index 72d5756..705b101 100644
--- a/include/camera/CameraParameters.h
+++ b/include/camera/CameraParameters.h
@@ -383,12 +383,14 @@ public:
// continuously. Applications should not call
// CameraHardwareInterface.autoFocus in this mode.
static const char FOCUS_MODE_EDOF[];
- // Continuous auto focus mode. The camera continuously tries to focus. This
- // is ideal for shooting video or shooting photo of moving object. Auto
- // focus starts when the parameter is set. Applications should not call
- // CameraHardwareInterface.autoFocus in this mode. To stop continuous
- // focus, applications should change the focus mode to other modes.
- static const char FOCUS_MODE_CONTINUOUS[];
+ // Continuous auto focus mode intended for video recording. The camera
+ // continuously tries to focus. This is ideal for shooting video.
+ // Applications still can call CameraHardwareInterface.takePicture in this
+ // mode but the subject may not be in focus. Auto focus starts when the
+ // parameter is set. Applications should not call
+ // CameraHardwareInterface.autoFocus in this mode. To stop continuous focus,
+ // applications should change the focus mode to other modes.
+ static const char FOCUS_MODE_CONTINUOUS_VIDEO[];
private:
DefaultKeyedVector<String8,String8> mMap;