Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-19 | android: camera_metadata: Rename get() to getMetadata() | Umang Jain | |
Rename CameraMetadata::get() to CameraMetadata::getMetadata() to avoid confusion with std::unique_ptr::get() when CameraMetadata is used with a std::unique_ptr. No functional changes intended in this patch. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> | |||
2021-10-19 | android: camera_stream: Define explicit move constructor and destructors | Laurent Pinchart | |
There's no need for the move constructor and the destructor to be inline. Define them explicitly, with default implementations. This allows usage of the CameraStream class without a complete definition of the PostProcessor class. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Umang Jain <umang.jain@i# SPDX-License-Identifier: CC0-1.0 libcamera_sources += files([ 'camera_sensor.cpp', 'camera_sensor_properties.cpp', ]) |