summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorChien-Yu Chen <cychen@google.com>2015-04-15 23:26:04 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-15 23:26:05 +0000
commit09f02e55ec4227a29662e7f6ab07fe7d09d9eba0 (patch)
tree04badaa41ad21dd4a45df377ba1248333136c178 /services
parent554a277d4e42a3d3df3d90ba0e7dfa2d31690e32 (diff)
parent90746f4203989fceb0f2131163435644040218d3 (diff)
downloadframeworks_av-09f02e55ec4227a29662e7f6ab07fe7d09d9eba0.zip
frameworks_av-09f02e55ec4227a29662e7f6ab07fe7d09d9eba0.tar.gz
frameworks_av-09f02e55ec4227a29662e7f6ab07fe7d09d9eba0.tar.bz2
Merge "Camera3: allow reconfiguring the input stream"
Diffstat (limited to 'services')
-rw-r--r--services/camera/libcameraservice/device3/Camera3Stream.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/services/camera/libcameraservice/device3/Camera3Stream.cpp b/services/camera/libcameraservice/device3/Camera3Stream.cpp
index 3821da1..4c40bb6 100644
--- a/services/camera/libcameraservice/device3/Camera3Stream.cpp
+++ b/services/camera/libcameraservice/device3/Camera3Stream.cpp
@@ -109,11 +109,7 @@ camera3_stream* Camera3Stream::startConfiguration() {
// oldUsage/oldMaxBuffers
return this;
case STATE_CONFIGURED:
- if (stream_type == CAMERA3_STREAM_INPUT) {
- ALOGE("%s: Cannot configure an input stream twice",
- __FUNCTION__);
- return NULL;
- } else if (hasOutstandingBuffersLocked()) {
+ if (hasOutstandingBuffersLocked()) {
ALOGE("%s: Cannot configure stream; has outstanding buffers",
__FUNCTION__);
return NULL;