android: camera_stream: Define explicit move constructor and destructors
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@ideasonboard.com>
This commit is contained in:
committed by
Umang Jain
parent
5f4f444aed
commit
274607478c
@@ -56,6 +56,10 @@ CameraStream::CameraStream(CameraDevice *const cameraDevice,
|
||||
{
|
||||
}
|
||||
|
||||
CameraStream::CameraStream(CameraStream &&other) = default;
|
||||
|
||||
CameraStream::~CameraStream() = default;
|
||||
|
||||
const StreamConfiguration &CameraStream::configuration() const
|
||||
{
|
||||
return config_->at(index_);
|
||||
|
||||
Reference in New Issue
Block a user