[libcamera-devel] [PATCH 1/6] libcamera: v4l2_device: Add MediaEntity contructor

Niklas Söderlund niklas.soderlund at ragnatech.se
Tue Jan 22 12:28:32 CET 2019


Hi Jacopo,

Thanks for your work.

On 2019-01-21 18:27:00 +0100, Jacopo Mondi wrote:
> Construct a V4L2Device from a MediaEntity device node path. While at
> there mark constructor as explicit to avoid copy-construction.
> 
> Signed-off-by: Jacopo Mondi <jacopo at jmondi.org>

Reviewed-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>

> ---
>  src/libcamera/include/v4l2_device.h |  4 +++-
>  src/libcamera/v4l2_device.cpp       | 12 ++++++++++++
>  2 files changed, 15 insertions(+), 1 deletion(-)
> 
> diff --git a/src/libcamera/include/v4l2_device.h b/src/libcamera/include/v4l2_device.h
> index 474c05b..c6f3d9a 100644
> --- a/src/libcamera/include/v4l2_device.h
> +++ b/src/libcamera/include/v4l2_device.h
> @@ -32,10 +32,12 @@ struct V4L2Capability final : v4l2_capability {
>  	bool hasStreaming() const { return capabilities & V4L2_CAP_STREAMING; }
>  };
>  
> +class MediaEntity;
>  class V4L2Device
>  {
>  public:
> -	V4L2Device(const std::string &devnode);
> +	explicit V4L2Device(const std::string &devnode);
> +	explicit V4L2Device(const MediaEntity &entity);
>  	V4L2Device(const V4L2Device &) = delete;
>  	~V4L2Device();
>  
> diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp
> index 54b53de..59a1ad9 100644
> --- a/src/libcamera/v4l2_device.cpp
> +++ b/src/libcamera/v4l2_device.cpp
> @@ -12,6 +12,7 @@
>  #include <unistd.h>
>  
>  #include "log.h"
> +#include "media_object.h"
>  #include "v4l2_device.h"
>  
>  /**
> @@ -92,6 +93,17 @@ V4L2Device::V4L2Device(const std::string &devnode)
>  {
>  }
>  
> +/**
> + * \brief Construct a V4L2Device from a MediaEntity
> + * \param entity The MediaEntity to build the device from
> + *
> + * Construct a V4L2Device from a MediaEntity's device node path.
> + */
> +V4L2Device::V4L2Device(const MediaEntity &entity)
> +	: V4L2Device(entity.devnode())
> +{
> +}
> +
>  V4L2Device::~V4L2Device()
>  {
>  	close();
> -- 
> 2.20.1
> 
> _______________________________________________
> libcamera-devel mailing list
> libcamera-devel at lists.libcamera.org
> https://lists.libcamera.org/listinfo/libcamera-devel

-- 
Regards,
Niklas Söderlund


More information about the libcamera-devel mailing list