Message ID | 20201021143635.22846-13-jacopo@jmondi.org |
---|---|
State | Accepted |
Headers | show |
Series |
|
Related | show |
Hi Jacopo, Thank you for the patch. On Wed, Oct 21, 2020 at 04:36:33PM +0200, Jacopo Mondi wrote: > Register the ANDROID_NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES > static metadata property inspecting the values retuned by the pipeline > handler. > > Reserve in the static metadata pack enough space to support all the 5 > available noise reduction modes Android defines. > > Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> > Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> > --- > src/android/camera_device.cpp | 17 +++++++++++++---- > 1 file changed, 13 insertions(+), 4 deletions(-) > > diff --git a/src/android/camera_device.cpp b/src/android/camera_device.cpp > index 8166b09bb69a..a4d9e6ddc519 100644 > --- a/src/android/camera_device.cpp > +++ b/src/android/camera_device.cpp > @@ -553,7 +553,7 @@ std::tuple<uint32_t, uint32_t> CameraDevice::calculateStaticMetadataSize() > * Currently: 51 entries, 687 bytes of static metadata > */ > uint32_t numEntries = 51; > - uint32_t byteSize = 687; > + uint32_t byteSize = 691; > > /* > * Calculate space occupation in bytes for dynamically built metadata > @@ -830,9 +830,18 @@ const camera_metadata_t *CameraDevice::getStaticMetadata() > &minFocusDistance, 1); > > /* Noise reduction modes. */ > - uint8_t noiseReductionModes = ANDROID_NOISE_REDUCTION_MODE_OFF; > - staticMetadata_->addEntry(ANDROID_NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES, > - &noiseReductionModes, 1); > + { > + std::vector<uint8_t> data(5); > + const auto &infoMap = controlsInfo.find(&controls::draft::NoiseReductionMode); > + if (infoMap != controlsInfo.end()) { > + for (const auto &value : infoMap->second.values()) > + data.push_back(value.get<int32_t>()); > + } else { > + data.push_back(ANDROID_NOISE_REDUCTION_MODE_OFF); > + } This is good enough for now, but the code isn't pretty, which makes me wonder if our API shouldn't be improved. I'm not sure how though, as we have to convert each entry to uint8_t, so I don't see how we could avoid a loop. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > + staticMetadata_->addEntry(ANDROID_NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES, > + data.data(), data.size()); > + } > > /* Scaler static metadata. */ > float maxDigitalZoom = 1;
diff --git a/src/android/camera_device.cpp b/src/android/camera_device.cpp index 8166b09bb69a..a4d9e6ddc519 100644 --- a/src/android/camera_device.cpp +++ b/src/android/camera_device.cpp @@ -553,7 +553,7 @@ std::tuple<uint32_t, uint32_t> CameraDevice::calculateStaticMetadataSize() * Currently: 51 entries, 687 bytes of static metadata */ uint32_t numEntries = 51; - uint32_t byteSize = 687; + uint32_t byteSize = 691; /* * Calculate space occupation in bytes for dynamically built metadata @@ -830,9 +830,18 @@ const camera_metadata_t *CameraDevice::getStaticMetadata() &minFocusDistance, 1); /* Noise reduction modes. */ - uint8_t noiseReductionModes = ANDROID_NOISE_REDUCTION_MODE_OFF; - staticMetadata_->addEntry(ANDROID_NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES, - &noiseReductionModes, 1); + { + std::vector<uint8_t> data(5); + const auto &infoMap = controlsInfo.find(&controls::draft::NoiseReductionMode); + if (infoMap != controlsInfo.end()) { + for (const auto &value : infoMap->second.values()) + data.push_back(value.get<int32_t>()); + } else { + data.push_back(ANDROID_NOISE_REDUCTION_MODE_OFF); + } + staticMetadata_->addEntry(ANDROID_NOISE_REDUCTION_AVAILABLE_NOISE_REDUCTION_MODES, + data.data(), data.size()); + } /* Scaler static metadata. */ float maxDigitalZoom = 1;