diff options
author | Wu-cheng Li <wuchengli@google.com> | 2010-09-21 08:57:15 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-09-21 08:57:15 -0700 |
commit | 2ad1ebcaabb632c8fe714f0c3fd88bdfa14697bd (patch) | |
tree | 5cb0918085e3bf00d1b3671f8fe0f7fb4f7e9e06 /include/camera/CameraParameters.h | |
parent | e65735aff0f09a1c19b79c6d2b98ef39123da1d4 (diff) | |
parent | d45cb72ac0d7d57829ffc9223decb89a5fc42ce2 (diff) | |
download | frameworks_base-2ad1ebcaabb632c8fe714f0c3fd88bdfa14697bd.zip frameworks_base-2ad1ebcaabb632c8fe714f0c3fd88bdfa14697bd.tar.gz frameworks_base-2ad1ebcaabb632c8fe714f0c3fd88bdfa14697bd.tar.bz2 |
am d45cb72a: Rename FOCUS_MODE_CONTINUOUS to FOCUS_MODE_CONTINUOUS_VIDEO.
Merge commit 'd45cb72ac0d7d57829ffc9223decb89a5fc42ce2' into gingerbread-plus-aosp
* commit 'd45cb72ac0d7d57829ffc9223decb89a5fc42ce2':
Rename FOCUS_MODE_CONTINUOUS to FOCUS_MODE_CONTINUOUS_VIDEO.
Diffstat (limited to 'include/camera/CameraParameters.h')
-rw-r--r-- | include/camera/CameraParameters.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/camera/CameraParameters.h b/include/camera/CameraParameters.h index 7c5371a..53039a0 100644 --- a/include/camera/CameraParameters.h +++ b/include/camera/CameraParameters.h @@ -380,12 +380,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; |