diff options
Diffstat (limited to 'libs/camera/Camera.cpp')
-rw-r--r-- | libs/camera/Camera.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/camera/Camera.cpp b/libs/camera/Camera.cpp index 907f119..e288312 100644 --- a/libs/camera/Camera.cpp +++ b/libs/camera/Camera.cpp @@ -301,12 +301,12 @@ status_t Camera::cancelAutoFocus() } // take a picture -status_t Camera::takePicture() +status_t Camera::takePicture(int msgType) { - LOGV("takePicture"); + LOGV("takePicture: 0x%x", msgType); sp <ICamera> c = mCamera; if (c == 0) return NO_INIT; - return c->takePicture(); + return c->takePicture(msgType); } // set preview/capture parameters - key/value pairs |