summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2012-10-02 15:21:31 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-10-03 11:40:46 -0700
commita1e5dccf73c0b734204b0094241e4a6a0752a67e (patch)
tree94f5f98a460f6aa156447c64d2f16e289c74e793 /services
parent8dcdb9553defafa1166c64b496e1ee390e4eadfa (diff)
downloadframeworks_av-a1e5dccf73c0b734204b0094241e4a6a0752a67e.zip
frameworks_av-a1e5dccf73c0b734204b0094241e4a6a0752a67e.tar.gz
frameworks_av-a1e5dccf73c0b734204b0094241e4a6a0752a67e.tar.bz2
Camera2: Fix trying to release HAL stream twice
When we fail to disconnect the native window, StreamAdapter::release would fail and remain in the old (ALLOCATED) state, thus it thinks that we haven't released the HAL stream yet. With this change, ignore DEAD_OBJECT native window disconnect failures, so the state transitions to RELEASED and we don't double release HAL streams. Bug: 7258314 Change-Id: I524893e4b4d6463d7b0a7ce32fb6f658afba8e11
Diffstat (limited to 'services')
-rw-r--r--services/camera/libcameraservice/Camera2Device.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/services/camera/libcameraservice/Camera2Device.cpp b/services/camera/libcameraservice/Camera2Device.cpp
index 6da9bef..25b7a58 100644
--- a/services/camera/libcameraservice/Camera2Device.cpp
+++ b/services/camera/libcameraservice/Camera2Device.cpp
@@ -1115,9 +1115,17 @@ status_t Camera2Device::StreamAdapter::release() {
if (mState >= CONNECTED) {
res = native_window_api_disconnect(mConsumerInterface.get(),
NATIVE_WINDOW_API_CAMERA);
- if (res != OK) {
- ALOGE("%s: Unable to disconnect stream %d from native window",
- __FUNCTION__, mId);
+
+ /* this is not an error. if client calling process dies,
+ the window will also die and all calls to it will return
+ DEAD_OBJECT, thus it's already "disconnected" */
+ if (res == DEAD_OBJECT) {
+ ALOGW("%s: While disconnecting stream %d from native window, the"
+ " native window died from under us", __FUNCTION__, mId);
+ }
+ else if (res != OK) {
+ ALOGE("%s: Unable to disconnect stream %d from native window (error %d %s)",
+ __FUNCTION__, mId, res, strerror(-res));
return res;
}
}