Loading services/camera/libcameraservice/camera2/ZslProcessor.cpp +4 −3 Original line number Diff line number Diff line Loading @@ -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 " Loading @@ -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) { Loading Loading
services/camera/libcameraservice/camera2/ZslProcessor.cpp +4 −3 Original line number Diff line number Diff line Loading @@ -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 " Loading @@ -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) { Loading