summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-02-23 10:38:21 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-02-23 10:38:21 -0800
commitafc671fc5ed81941c972d5318555b84a63eb2619 (patch)
tree9413c42864c2ebaf65dd90c5b45af6f95525f3c8 /media
parentbba9529d796654b0ac7a966261daf53706dfabc9 (diff)
parente00cab707dcaf6f05adb5ccb9c80fdf25c483427 (diff)
downloadframeworks_base-afc671fc5ed81941c972d5318555b84a63eb2619.zip
frameworks_base-afc671fc5ed81941c972d5318555b84a63eb2619.tar.gz
frameworks_base-afc671fc5ed81941c972d5318555b84a63eb2619.tar.bz2
Merge "Application-managed callback buffer support for raw image"
Diffstat (limited to 'media')
-rw-r--r--media/libstagefright/CameraSourceTimeLapse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/CameraSourceTimeLapse.cpp b/media/libstagefright/CameraSourceTimeLapse.cpp
index e6fe618..3689557 100644
--- a/media/libstagefright/CameraSourceTimeLapse.cpp
+++ b/media/libstagefright/CameraSourceTimeLapse.cpp
@@ -277,7 +277,7 @@ void CameraSourceTimeLapse::threadTimeLapseEntry() {
// this thread as read() will make a copy of this last frame and keep
// returning it in the quick stop mode.
Mutex::Autolock autoLock(mQuickStopLock);
- CHECK_EQ(OK, mCamera->takePicture());
+ CHECK_EQ(OK, mCamera->takePicture(CAMERA_MSG_RAW_IMAGE));
if (mQuickStop) {
LOGV("threadTimeLapseEntry: Exiting due to mQuickStop = true");
return;