diff options
author | Umang Jain <umang.jain@ideasonboard.com> | 2021-10-19 17:17:54 +0530 |
---|---|---|
committer | Umang Jain <umang.jain@ideasonboard.com> | 2021-10-19 19:15:27 +0530 |
commit | 1976179623b832052c37e577b2f375f569d28ab0 (patch) | |
tree | e996d4b2378be8ad9865d75db26cb2f3ae468dc2 /src/android/camera_device.cpp | |
parent | 1abdcf803d9cfc8df15361fbbd627654f1eb82c9 (diff) |
android: camera_stream: Plumb process() with Camera3RequestDescriptor
Data (or broader context) required for post processing of a camera request
is saved via Camera3RequestDescriptor. Instead of passing individual
arguments to CameraStream::process(), pass the Camera3RequestDescriptor
pointer to it. All the arguments necessary to run the post-processor can
be accessed from the descriptor.
Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Hirokazu Honda <hiroh@chromium.org>
Diffstat (limited to 'src/android/camera_device.cpp')
-rw-r--r-- | src/android/camera_device.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/android/camera_device.cpp b/src/android/camera_device.cpp index 38132cbd..a8c66a79 100644 --- a/src/android/camera_device.cpp +++ b/src/android/camera_device.cpp @@ -1153,9 +1153,8 @@ void CameraDevice::requestComplete(Request *request) continue; } - int ret = cameraStream->process(*src, buffer, - descriptor->settings_, - descriptor->resultMetadata_.get()); + int ret = cameraStream->process(*src, buffer, descriptor); + /* * Return the FrameBuffer to the CameraStream now that we're * done processing it. |