diff options
author | 2009-09-28 16:14:58 -0700 | |
---|---|---|
committer | 2009-10-06 13:25:10 -0700 | |
commit | 36f68b8f24df906c969581b0b8e1a47f95dc03cb (patch) | |
tree | b1c8987ccd5b30c5527fc9abcfe275f163d8d8c5 /libs/ui/Camera.cpp | |
parent | 5bba632d877c2878384ff21566c8eb6a1a22f37b (diff) |
Add zoom functions and sendCommand.
b2060030
Diffstat (limited to 'libs/ui/Camera.cpp')
-rw-r--r-- | libs/ui/Camera.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/ui/Camera.cpp b/libs/ui/Camera.cpp index 0c6d3408ab08..09a36f18a1b7 100644 --- a/libs/ui/Camera.cpp +++ b/libs/ui/Camera.cpp @@ -278,6 +278,15 @@ String8 Camera::getParameters() const return params; } +// send command to camera driver +status_t Camera::sendCommand(int32_t cmd, int32_t arg1, int32_t arg2) +{ + LOGD("sendCommand"); + sp <ICamera> c = mCamera; + if (c == 0) return NO_INIT; + return c->sendCommand(cmd, arg1, arg2); +} + void Camera::setListener(const sp<CameraListener>& listener) { Mutex::Autolock _l(mLock); |