| Message ID | 20260810103846.1075936-25-barnabas.pocze@ideasonboard.com |
|---|---|
| State | Superseded |
| Headers | show |
| Series |
|
| Related | show |
Quoting Barnabás Pőcze (2026-08-10 12:38:20) > Currently the default value for `FrameDurationLimits` is meaningless > because the full range is used by default. So advertise the full range. > > Signed-off-by: Barnabás Pőcze <barnabas.pocze@ideasonboard.com> > Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com> Best regards, Stefan > --- > src/ipa/libipa/agc.cpp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/ipa/libipa/agc.cpp b/src/ipa/libipa/agc.cpp > index fbda9038e2..6f10f8982f 100644 > --- a/src/ipa/libipa/agc.cpp > +++ b/src/ipa/libipa/agc.cpp > @@ -372,7 +372,7 @@ int AgcAlgorithm::configure(agc::Session &session, agc::ActiveState &state, > config.ctrlMap[&controls::FrameDurationLimits] = ControlInfo{ > frameDurations[0], > frameDurations[1], > - Span<const int64_t, 2>{ { frameDurations[2], frameDurations[2] } }, > + Span<const int64_t, 2>{ { frameDurations[0], frameDurations[1] } }, > }; > > if (session.autoAllowed) { > -- > 2.55.0 >
diff --git a/src/ipa/libipa/agc.cpp b/src/ipa/libipa/agc.cpp index fbda9038e2..6f10f8982f 100644 --- a/src/ipa/libipa/agc.cpp +++ b/src/ipa/libipa/agc.cpp @@ -372,7 +372,7 @@ int AgcAlgorithm::configure(agc::Session &session, agc::ActiveState &state, config.ctrlMap[&controls::FrameDurationLimits] = ControlInfo{ frameDurations[0], frameDurations[1], - Span<const int64_t, 2>{ { frameDurations[2], frameDurations[2] } }, + Span<const int64_t, 2>{ { frameDurations[0], frameDurations[1] } }, }; if (session.autoAllowed) {