[libcamera-devel] [PATCH v2 11/17] android: Filter preview streams on FPS

Jacopo Mondi jacopo at jmondi.org
Wed Oct 6 10:23:00 CEST 2021


Hi Laurent,

On Wed, Oct 06, 2021 at 04:45:25AM +0300, Laurent Pinchart wrote:
> Hi Jacopo,
>
> Thank you for the patch.
>
> On Tue, Sep 07, 2021 at 09:41:01PM +0200, Jacopo Mondi wrote:
> > Register as preview streams only streams capable of producing at least
> > 30 FPS.
> >
> > This requirement comes from inspecting the existing HAL implementation
> > on Intel IPU3 platform.
> >
> > Signed-off-by: Jacopo Mondi <jacopo at jmondi.org>
> > Reviewed-by: Paul Elder <paul.elder at ideasonboard.com>
> > Reviewed-by: Umang Jain <umang.jain at ideasonboard.com>
> > ---
> >  src/android/camera_capabilities.cpp | 20 ++++++++++++++++++++
> >  1 file changed, 20 insertions(+)
> >
> > diff --git a/src/android/camera_capabilities.cpp b/src/android/camera_capabilities.cpp
> > index c6791b9d6238..e5cfe67f9b73 100644
> > --- a/src/android/camera_capabilities.cpp
> > +++ b/src/android/camera_capabilities.cpp
> > @@ -1259,6 +1259,21 @@ int CameraCapabilities::initializeStaticMetadata()
> >  	std::vector<uint32_t> availableStreamConfigurations;
> >  	availableStreamConfigurations.reserve(streamConfigurations_.size() * 4);
> >  	for (const auto &entry : streamConfigurations_) {
> > +		/*
> > +		 * Filter out YUV streams not capable of running at 30 FPS.
> > +		 *
> > +		 * This requirement comes from inspecting the Intel IPU3
> > +		 * HAL implementation but no reference has been found in the
> > +		 * metadata documentation.
>
> Does the requirement also come from CTS ? If so, could you please point
> to the corresponding test(s) ? If not, why do we need this ?
>

I keep failing to find any reference to this requirement in
documentation, and the way we populate the YUV stream combinations has
an impact on the AE_AVAILABLE_TARGET_FPS_RANGE content as

android.control.aeAvailableTargetFpsRanges:
For devices at the LIMITED level or above:
For YUV_420_888 burst capture use case, this list will always include
(min, max) and (max, max) where min <= 15 and max = the maximum output
frame rate of the maximum YUV_420_888 output size.

I think I do now populate AE_AVAILABLE_TARGET_FPS_RANGE correctly
since "android: capabilties: Fix ANDROID_CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES"
in this series.

I'll try to revert this patch and add here a reference to which tests
is not pleased

Thanks
  j

> > +		 *
> > +		 * Calculate FPS as CTS does: see
> > +		 * Camera2SurfaceViewTestCase.java:getSuitableFpsRangeForDuration()
> > +		 */
> > +		unsigned int fps = static_cast<unsigned int>
> > +				   (floor(1e9 / entry.minFrameDurationNsec + 0.05f));
> > +		if (entry.androidFormat != HAL_PIXEL_FORMAT_BLOB && fps < 30)
> > +			continue;
> > +
> >  		availableStreamConfigurations.push_back(entry.androidFormat);
> >  		availableStreamConfigurations.push_back(entry.resolution.width);
> >  		availableStreamConfigurations.push_back(entry.resolution.height);
> > @@ -1271,6 +1286,11 @@ int CameraCapabilities::initializeStaticMetadata()
> >  	std::vector<int64_t> minFrameDurations;
> >  	minFrameDurations.reserve(streamConfigurations_.size() * 4);
> >  	for (const auto &entry : streamConfigurations_) {
> > +		unsigned int fps = static_cast<unsigned int>
> > +				   (floor(1e9 / entry.minFrameDurationNsec + 0.05f));
> > +		if (entry.androidFormat != HAL_PIXEL_FORMAT_BLOB && fps < 30)
> > +			continue;
> > +
> >  		minFrameDurations.push_back(entry.androidFormat);
> >  		minFrameDurations.push_back(entry.resolution.width);
> >  		minFrameDurations.push_back(entry.resolution.height);
>
> --
> Regards,
>
> Laurent Pinchart


More information about the libcamera-devel mailing list