diff options
author | Emil Jahshan <emil.jahshan@intel.com> | 2018-12-11 15:15:17 +0200 |
---|---|---|
committer | Yin-Chia Yeh <yinchiayeh@google.com> | 2019-03-14 14:06:17 -0700 |
commit | eed0040e216d58bdaaa2daaa40eab29b0eabeaa8 (patch) | |
tree | 7eae2161d93339504b12dd82b1202272ccf099e7 /camera/device/3.5/default/ExternalCameraDevice.cpp | |
parent | 70de321e05b3904d61e2f40dcf92074762ebefa5 (diff) |
Y16 format enablement for external provider
added Y16 (depth) support for the external provider.
refactored initOutputCharsKeys to support both depth and color metadata according to the connected camera.
the VTS changes will be pushed to pie-vts-dev
Test: tested on intel depth camera D415 manually in addition to the VTS tests.
Change-Id: I358686e7c4330bb180dec4a9cce3bc1cf5475260
Signed-off-by: Emil Jahshan <emil.jahshan@intel.com>
Diffstat (limited to 'camera/device/3.5/default/ExternalCameraDevice.cpp')
-rw-r--r-- | camera/device/3.5/default/ExternalCameraDevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camera/device/3.5/default/ExternalCameraDevice.cpp b/camera/device/3.5/default/ExternalCameraDevice.cpp index 6a0b51e09f..d0de1a40b1 100644 --- a/camera/device/3.5/default/ExternalCameraDevice.cpp +++ b/camera/device/3.5/default/ExternalCameraDevice.cpp @@ -103,7 +103,7 @@ Return<void> ExternalCameraDevice::isStreamCombinationSupported( } V3_2::StreamConfiguration streamConfig = {streamsV3_2, streams.operationMode}; auto status = ExternalCameraDeviceSession::isStreamCombinationSupported(streamConfig, - mSupportedFormats); + mSupportedFormats, mCfg); _hidl_cb(Status::OK, Status::OK == status); return Void(); } |