From 6e4db898bac9499a8abe7e6b6fbf729b78f6bd68 Mon Sep 17 00:00:00 2001 From: Eino-Ville Talvala Date: Tue, 11 Sep 2012 17:23:48 -0700 Subject: Camera2: Use full pixel array for ZSL stream For efficiency, use full pixel array size for the ZSL output/input streams, instead of the final picture size. Bug: 7139362 Change-Id: I98ad4f5a1ca283efe87ae60bf0cf39573e22d2f3 --- services/camera/libcameraservice/camera2/ZslProcessor.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'services') diff --git a/services/camera/libcameraservice/camera2/ZslProcessor.cpp b/services/camera/libcameraservice/camera2/ZslProcessor.cpp index ea1c2b9..0771872 100644 --- a/services/camera/libcameraservice/camera2/ZslProcessor.cpp +++ b/services/camera/libcameraservice/camera2/ZslProcessor.cpp @@ -132,8 +132,8 @@ status_t ZslProcessor::updateStream(const Parameters ¶ms) { client->getCameraId(), strerror(-res), res); return res; } - if (currentWidth != (uint32_t)params.pictureWidth || - currentHeight != (uint32_t)params.pictureHeight) { + if (currentWidth != (uint32_t)params.fastInfo.arrayWidth || + currentHeight != (uint32_t)params.fastInfo.arrayHeight) { res = device->deleteReprocessStream(mZslReprocessStreamId); if (res != OK) { ALOGE("%s: Camera %d: Unable to delete old reprocess stream " @@ -154,8 +154,9 @@ status_t ZslProcessor::updateStream(const Parameters ¶ms) { if (mZslStreamId == NO_STREAM) { // Create stream for HAL production + // TODO: Sort out better way to select resolution for ZSL res = device->createStream(mZslWindow, - params.pictureWidth, params.pictureHeight, + params.fastInfo.arrayWidth, params.fastInfo.arrayHeight, HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED, 0, &mZslStreamId); if (res != OK) { -- cgit v1.1