summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorZhijun He <zhijunhe@google.com>2014-10-14 23:35:52 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-14 23:35:52 +0000
commiteb018cefe7a3d2c061b53a77aab2d327cad8e9f4 (patch)
tree9b41171a907ae32f5b73ef962d0c32bc74a588df /services
parentc77956d597cadeb572845b55ce315460b2542cc1 (diff)
parent9d2189ffcf1142b2948ce3065c32521ed7d966c4 (diff)
downloadframeworks_av-eb018cefe7a3d2c061b53a77aab2d327cad8e9f4.zip
frameworks_av-eb018cefe7a3d2c061b53a77aab2d327cad8e9f4.tar.gz
frameworks_av-eb018cefe7a3d2c061b53a77aab2d327cad8e9f4.tar.bz2
am 9d2189ff: Merge "Camera2Client: avoid two consecutive sets of configure_streams calls" into lmp-dev
* commit '9d2189ffcf1142b2948ce3065c32521ed7d966c4': Camera2Client: avoid two consecutive sets of configure_streams calls
Diffstat (limited to 'services')
-rw-r--r--services/camera/libcameraservice/api1/Camera2Client.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/services/camera/libcameraservice/api1/Camera2Client.cpp b/services/camera/libcameraservice/api1/Camera2Client.cpp
index 3610362..2a6aa7b 100644
--- a/services/camera/libcameraservice/api1/Camera2Client.cpp
+++ b/services/camera/libcameraservice/api1/Camera2Client.cpp
@@ -995,6 +995,10 @@ status_t Camera2Client::startRecordingL(Parameters &params, bool restart) {
case Parameters::STOPPED:
res = startPreviewL(params, false);
if (res != OK) return res;
+ // Make sure first preview request is submitted to the HAL device to avoid
+ // two consecutive set of configure_streams being called into the HAL.
+ // TODO: Refactor this to avoid initial preview configuration.
+ syncWithDevice();
break;
case Parameters::PREVIEW:
// Ready to go