ipa: raspberrypi: Switch AgcAlgorithm API to use utils::Duration
Switch the AgcAlgorithm API functions to use utils::Duration for all time based variables. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
caa753179c
commit
2db8a767ca
4 changed files with 17 additions and 15 deletions
|
@ -6,6 +6,7 @@
|
|||
*/
|
||||
#pragma once
|
||||
|
||||
#include "libcamera/internal/utils.h"
|
||||
#include "algorithm.hpp"
|
||||
|
||||
namespace RPiController {
|
||||
|
@ -17,9 +18,9 @@ public:
|
|||
// An AGC algorithm must provide the following:
|
||||
virtual unsigned int GetConvergenceFrames() const = 0;
|
||||
virtual void SetEv(double ev) = 0;
|
||||
virtual void SetFlickerPeriod(double flicker_period) = 0;
|
||||
virtual void SetFixedShutter(double fixed_shutter) = 0; // microseconds
|
||||
virtual void SetMaxShutter(double max_shutter) = 0; // microseconds
|
||||
virtual void SetFlickerPeriod(libcamera::utils::Duration flicker_period) = 0;
|
||||
virtual void SetFixedShutter(libcamera::utils::Duration fixed_shutter) = 0;
|
||||
virtual void SetMaxShutter(libcamera::utils::Duration max_shutter) = 0;
|
||||
virtual void SetFixedAnalogueGain(double fixed_analogue_gain) = 0;
|
||||
virtual void SetMeteringMode(std::string const &metering_mode_name) = 0;
|
||||
virtual void SetExposureMode(std::string const &exposure_mode_name) = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue