[libcamera-devel] [PATCH 2/2] libcamera: v4l2_videodevice: Clear cache_ in ~V4L2BufferCache()

Jacopo Mondi jacopo at jmondi.org
Fri Jul 9 18:04:10 CEST 2021


Hi Umang, Kieran,

On Fri, Jul 09, 2021 at 03:20:40PM +0100, Kieran Bingham wrote:
> Hi Umang,
>
> On 09/07/2021 12:47, Umang Jain wrote:
> > This shall help release any taken reference, just in case.
> >
> > Signed-off-by: Umang Jain <umang.jain at ideasonboard.com>
> > ---
> >  src/libcamera/v4l2_videodevice.cpp | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/src/libcamera/v4l2_videodevice.cpp b/src/libcamera/v4l2_videodevice.cpp
> > index da2af6a1..1e33571c 100644
> > --- a/src/libcamera/v4l2_videodevice.cpp
> > +++ b/src/libcamera/v4l2_videodevice.cpp
> > @@ -190,6 +190,8 @@ V4L2BufferCache::~V4L2BufferCache()
> >  {
> >  	if (missCounter_ > cache_.size())
> >  		LOG(V4L2, Debug) << "Cache misses: " << missCounter_;
> > +
> > +	cache_.clear();
>
> This isn't needed as far as I'm aware.
>
> cache_ is a vector<Entry> so upon destructor, the destructors of all the
> elements contained with in it are called, before the memory is freed:
>
>   https://en.cppreference.com/w/cpp/container/vector/~vector

That's my understanding as well!

Thanks
  j

>
> --
> Kieran
>
> >  }
> >
> >  /**
> >


More information about the libcamera-devel mailing list