[libcamera-devel] [PATCH v2 4/4] ipa: raspberrypi: Fix default frame durations calculation

Jacopo Mondi jacopo.mondi at ideasonboard.com
Mon Mar 27 15:44:18 CEST 2023


Hi Naush

On Mon, Mar 27, 2023 at 10:34:39AM +0100, Naushir Patuck via libcamera-devel wrote:
> Fix a bug in the default frame durations calculation where the min/max
> values are swapped round. This is a rarely travelled code path, so has
> not actually caused a reported failure.
>
> Signed-off-by: Naushir Patuck <naush at raspberrypi.com>

Reviewed-by: Jacopo Mondi <jacopo.mondi at ideasonboard.com>

Thanks
  j

> ---
>  src/ipa/raspberrypi/raspberrypi.cpp | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp
> index c10e57e07ab0..66a020d022cd 100644
> --- a/src/ipa/raspberrypi/raspberrypi.cpp
> +++ b/src/ipa/raspberrypi/raspberrypi.cpp
> @@ -1486,8 +1486,8 @@ void IPARPi::applyFrameDurations(Duration minFrameDuration, Duration maxFrameDur
>  	 * This will only be applied once AGC recalculations occur.
>  	 * The values may be clamped based on the sensor mode capabilities as well.
>  	 */
> -	minFrameDuration_ = minFrameDuration ? minFrameDuration : defaultMaxFrameDuration;
> -	maxFrameDuration_ = maxFrameDuration ? maxFrameDuration : defaultMinFrameDuration;
> +	minFrameDuration_ = minFrameDuration ? minFrameDuration : defaultMinFrameDuration;
> +	maxFrameDuration_ = maxFrameDuration ? maxFrameDuration : defaultMaxFrameDuration;
>  	minFrameDuration_ = std::clamp(minFrameDuration_,
>  				       mode_.minFrameDuration, mode_.maxFrameDuration);
>  	maxFrameDuration_ = std::clamp(maxFrameDuration_,
> --
> 2.34.1
>


More information about the libcamera-devel mailing list