commit | d1d6467d3bcbc1305eeba0176a2edf04925c368e | [log] [tgz] |
---|---|---|
author | Zhijun He <zhijunhe@google.com> | Fri Sep 06 15:00:01 2013 -0700 |
committer | Zhijun He <zhijunhe@google.com> | Sun Sep 08 09:58:11 2013 -0700 |
tree | b79d4ac9bc0293a29ce391f3fb611d7ea8f30eb3 | |
parent | 84b7fb0c88ddd05ed7c148c82fe1691040a9404d [diff] [blame] |
Camera: Correct stream id types Bug: 10604704 Change-Id: I223ac5d200eb6439c08955fb7ad586592099fbae
diff --git a/services/camera/libcameraservice/api2/CameraDeviceClient.cpp b/services/camera/libcameraservice/api2/CameraDeviceClient.cpp index f147c06..055ea12 100644 --- a/services/camera/libcameraservice/api2/CameraDeviceClient.cpp +++ b/services/camera/libcameraservice/api2/CameraDeviceClient.cpp
@@ -137,7 +137,7 @@ * Write in the output stream IDs which we calculate from * the capture request's list of surface targets */ - Vector<uint8_t> outputStreamIds; + Vector<int32_t> outputStreamIds; outputStreamIds.setCapacity(request->mSurfaceList.size()); for (size_t i = 0; i < request->mSurfaceList.size(); ++i) { sp<Surface> surface = request->mSurfaceList[i];