[PATCH 3/3] libcamera: pipeline: simple: Use MediaLink string helper
Laurent Pinchart
laurent.pinchart at ideasonboard.com
Thu Aug 15 23:18:58 CEST 2024
On Thu, Aug 15, 2024 at 10:09:25PM +0100, Kieran Bingham wrote:
> Replace the open-coded implementation of a link representation
> with the operator<< overload string representation to simplify
> the code and unify appearance of reporting MediaLinks.
>
> Signed-off-by: Kieran Bingham <kieran.bingham at ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
> ---
> src/libcamera/pipeline/simple/simple.cpp | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp
> index 1e7ec7d97255..2d205e9925ef 100644
> --- a/src/libcamera/pipeline/simple/simple.cpp
> +++ b/src/libcamera/pipeline/simple/simple.cpp
> @@ -774,11 +774,8 @@ int SimpleCameraData::setupFormats(V4L2SubdeviceFormat *format,
> }
>
> LOG(SimplePipeline, Debug)
> - << "Link '" << source->entity()->name()
> - << "':" << source->index()
> - << " -> '" << sink->entity()->name()
> - << "':" << sink->index()
> - << " configured with format " << *format;
> + << "Link " << *link << ": configured with format "
> + << *format;
> }
>
> return 0;
--
Regards,
Laurent Pinchart
More information about the libcamera-devel
mailing list