[libcamera-devel] [PATCH v2 2/4] ipa: rkisp1: Transfer queueRequest() call to each algorithm

Kieran Bingham kieran.bingham at ideasonboard.com
Thu Jul 21 14:53:57 CEST 2022


Quoting Florian Sylvestre via libcamera-devel (2022-07-20 16:42:19)
> Implement rkisp1 queueRequest() function to update each algorithm with user
> controls.
> 
> Signed-off-by: Florian Sylvestre <fsylvestre at baylibre.com>
> Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>

I've also picked this into my development branch, but adjusted it for
passing the FrameContext.

But I don't mind rebasing on top of this if it goes in first.


Reviewed-by: Kieran Bingham <kieran.bingham at ideasonboard.com>

> ---
>  src/ipa/rkisp1/rkisp1.cpp | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
> index a32bb9d1..34034526 100644
> --- a/src/ipa/rkisp1/rkisp1.cpp
> +++ b/src/ipa/rkisp1/rkisp1.cpp
> @@ -269,10 +269,10 @@ void IPARkISP1::unmapBuffers(const std::vector<unsigned int> &ids)
>         }
>  }
>  
> -void IPARkISP1::queueRequest([[maybe_unused]] const uint32_t frame,
> -                            [[maybe_unused]] const ControlList &controls)
> +void IPARkISP1::queueRequest(const uint32_t frame, const ControlList &controls)
>  {
> -       /* \todo Start processing for 'frame' based on 'controls'. */
> +       for (auto const &algo : algorithms())
> +               algo->queueRequest(context_, frame, controls);
>  }
>  
>  void IPARkISP1::fillParamsBuffer(const uint32_t frame, const uint32_t bufferId)
> -- 
> 2.34.1
>


More information about the libcamera-devel mailing list