summaryrefslogtreecommitdiff
path: root/src/android/camera_device.h
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2020-09-02 12:11:46 +0200
committerJacopo Mondi <jacopo@jmondi.org>2020-09-18 11:31:56 +0200
commitfacadb188efa32e0846fb59b73d8d669b7686e29 (patch)
treec52e6bc84795c37aec130442d153c1879f2683e3 /src/android/camera_device.h
parentc82f944399fd4ad81a440e3f852ee0fff876ba37 (diff)
android: camera_device: Set Encoder at construction
Make the CameraStream encoder a private unique pointer and require its initialization at construction time. This ties the encoder lifetime to the CameraStream it has been created with, allowing to remove the CameraStream destructor. This change dis-allow creating a CameraStream and set the Encoder later, which shall not happen now that we create CameraStream once we have all the required information in place. No functional changes intended but this change aims to make the code more robust enforcing a stricter CameraStream interface. Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/android/camera_device.h')
-rw-r--r--src/android/camera_device.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/android/camera_device.h b/src/android/camera_device.h
index 376d001e..49a2e7f3 100644
--- a/src/android/camera_device.h
+++ b/src/android/camera_device.h
@@ -29,16 +29,15 @@ class CameraMetadata;
struct CameraStream {
public:
- CameraStream(libcamera::PixelFormat, libcamera::Size, unsigned int i);
- ~CameraStream();
+ CameraStream(libcamera::PixelFormat, libcamera::Size, unsigned int i,
+ Encoder *e = nullptr);
unsigned int index() const { return index_; }
+ Encoder *encoder() const { return encoder_.get(); }
libcamera::PixelFormat format;
libcamera::Size size;
- Encoder *jpeg;
-
private:
/*
* The index of the libcamera StreamConfiguration as added during
@@ -46,6 +45,7 @@ private:
* one or more streams to the Android framework.
*/
unsigned int index_;
+ std::unique_ptr<Encoder> encoder_;
};
class CameraDevice : protected libcamera::Loggable