[libcamera-devel] [PATCH 7/7] android: Add CONTROL_MODE_OFF in template and static metadata

paul.elder at ideasonboard.com paul.elder at ideasonboard.com
Tue Dec 21 00:14:00 CET 2021


Hi Kieran,

On Thu, Nov 25, 2021 at 11:16:42AM +0000, Kieran Bingham wrote:
> Quoting Paul Elder (2021-11-23 10:40:42)
> > Add CONTROL_MODE_OFF to the available control modes in static metadata,
> > if both AE off and AWB off are available. Also set CONTROL_MODE_OFF in
> > the manual template.
> > 
> 
> Seems reasonable.
> 
> > Signed-off-by: Paul Elder <paul.elder at ideasonboard.com>
> > ---
> >  src/android/camera_capabilities.cpp | 18 +++++++++++++++++-
> >  1 file changed, 17 insertions(+), 1 deletion(-)
> > 
> > diff --git a/src/android/camera_capabilities.cpp b/src/android/camera_capabilities.cpp
> > index f7397d27..5d90047b 100644
> > --- a/src/android/camera_capabilities.cpp
> > +++ b/src/android/camera_capabilities.cpp
> > @@ -999,7 +999,17 @@ int CameraCapabilities::initializeStaticMetadata()
> >         staticMetadata_->addEntry(ANDROID_CONTROL_AWB_LOCK_AVAILABLE,
> >                                   awbLockAvailable);
> >  
> > -       char availableControlModes = ANDROID_CONTROL_MODE_AUTO;
> > +       /*
> > +        * \todo Get this from some combination of the available AE and AWB
> > +        * modes
> 
> Does that mean there are other expected combinations to handle? But I
> guess that's reliant upon the AE/AWB series.

"some combination" I mean like what we have here is that we assume that
auto is always supported, and off is the optional one, and we only
report CONTROL_MODE off if both are off-able. What do we do if they only
support off? Or if only only supports auto and one only supports off?
That's what the todo covers.

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


Thanks,

Paul

> 
> 
> > +        */
> > +       std::vector<uint8_t> availableControlModes = { ANDROID_CONTROL_MODE_AUTO };
> > +       if (staticMetadata_->entryContains<uint8_t>(ANDROID_CONTROL_AE_AVAILABLE_MODES,
> > +                                                   ANDROID_CONTROL_AE_MODE_OFF) &&
> > +           staticMetadata_->entryContains<uint8_t>(ANDROID_CONTROL_AWB_AVAILABLE_MODES,
> > +                                                   ANDROID_CONTROL_AWB_MODE_OFF)) {
> > +               availableControlModes.push_back(ANDROID_CONTROL_MODE_OFF);
> > +       }
> >         staticMetadata_->addEntry(ANDROID_CONTROL_AVAILABLE_MODES,
> >                                   availableControlModes);
> >  
> > @@ -1467,6 +1477,12 @@ std::unique_ptr<CameraMetadata> CameraCapabilities::requestTemplateManual() cons
> >         if (!manualTemplate)
> >                 return nullptr;
> >  
> > +       if (staticMetadata_->entryContains<uint8_t>(ANDROID_CONTROL_AVAILABLE_MODES,
> > +                                                   ANDROID_CONTROL_MODE_OFF)) {
> > +               uint8_t mode = ANDROID_CONTROL_MODE_OFF;
> > +               manualTemplate->appendEntry(ANDROID_CONTROL_MODE, mode);
> > +       }
> > +
> >         return manualTemplate;
> >  }
> >  
> > -- 
> > 2.27.0
> >


More information about the libcamera-devel mailing list