<div dir="ltr"><div dir="ltr">Thanks Jacopo,</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Sep 9, 2024 at 3:33 PM Jacopo Mondi <<a href="mailto:jacopo.mondi@ideasonboard.com">jacopo.mondi@ideasonboard.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi<br>
<br>
On Mon, Sep 09, 2024 at 05:34:19AM GMT, Harvey Yang wrote:<br>
> From: Han-Lin Chen <<a href="mailto:hanlinchen@chromium.org" target="_blank">hanlinchen@chromium.org</a>><br>
><br>
> To solve issues when platforms not following V4L2 spec and frame<br>
> buffers not going through V4L2VideoDevice, setting default values<br>
> to FrameMetadata's member variables.<br>
<br>
I still think this patch works around a faulty implementation, however<br>
initializing class members to sane defaults certainly doesn't hurt.<br>
<br>
><br>
> Signed-off-by: Han-Lin Chen <<a href="mailto:hanlinchen@chromium.org" target="_blank">hanlinchen@chromium.org</a>><br>
> Co-developed-by: Harvey Yang <<a href="mailto:chenghaoyang@chromium.org" target="_blank">chenghaoyang@chromium.org</a>><br>
> ---<br>
>  include/libcamera/framebuffer.h | 6 +++---<br>
>  1 file changed, 3 insertions(+), 3 deletions(-)<br>
><br>
> diff --git a/include/libcamera/framebuffer.h b/include/libcamera/framebuffer.h<br>
> index ff839243..8dae747c 100644<br>
> --- a/include/libcamera/framebuffer.h<br>
> +++ b/include/libcamera/framebuffer.h<br>
> @@ -32,9 +32,9 @@ struct FrameMetadata {<br>
>               unsigned int bytesused;<br>
>       };<br>
><br>
> -     Status status;<br>
> -     unsigned int sequence;<br>
> -     uint64_t timestamp;<br>
> +     Status status = FrameSuccess;<br>
<br>
I wonder if this shouldn't be the other way around, make it Fail by<br>
default to make sure the component that handles the buffers correctly<br>
set their status.<br></blockquote><div><br></div><div>Yes, that makes more sense actually. Setting it to FrameError by default</div><div>instead in the next version.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
> +     unsigned int sequence = 0;<br>
> +     uint64_t timestamp = 0;<br>
<br>
These ones are indeed sane<br>
<br>
><br>
>       Span<Plane> planes() { return planes_; }<br>
>       Span<const Plane> planes() const { return planes_; }<br>
> --<br>
> 2.46.0.469.g59c65b2a67-goog<br>
><br>
</blockquote></div></div>