mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-14 07:59:44 +03:00
android: camera_device: Break out size calculation
As the RAW stream sizes needs to be calculated differently from the processed one, break out the procedure to calculate the processed (RGB/YUV) resolutions from initializeStreamConfigurations() in order to prepare for RAW sizes calculation. Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
parent
af264ec750
commit
bfee6316fc
2 changed files with 34 additions and 13 deletions
|
@ -289,6 +289,31 @@ int CameraDevice::initialize()
|
|||
return ret;
|
||||
}
|
||||
|
||||
std::vector<Size> CameraDevice::getYUVResolutions(CameraConfiguration *cameraConfig,
|
||||
const PixelFormat &pixelFormat,
|
||||
const std::vector<Size> &resolutions)
|
||||
{
|
||||
std::vector<Size> supportedResolutions;
|
||||
|
||||
StreamConfiguration &cfg = cameraConfig->at(0);
|
||||
for (const Size &res : resolutions) {
|
||||
cfg.pixelFormat = pixelFormat;
|
||||
cfg.size = res;
|
||||
|
||||
CameraConfiguration::Status status = cameraConfig->validate();
|
||||
if (status != CameraConfiguration::Valid) {
|
||||
LOG(HAL, Debug) << cfg.toString() << " not supported";
|
||||
continue;
|
||||
}
|
||||
|
||||
LOG(HAL, Debug) << cfg.toString() << " supported";
|
||||
|
||||
supportedResolutions.push_back(res);
|
||||
}
|
||||
|
||||
return supportedResolutions;
|
||||
}
|
||||
|
||||
/*
|
||||
* Initialize the format conversion map to translate from Android format
|
||||
* identifier to libcamera pixel formats and fill in the list of supported
|
||||
|
@ -433,19 +458,10 @@ int CameraDevice::initializeStreamConfigurations()
|
|||
<< camera3Format.name << " to "
|
||||
<< mappedFormat.toString();
|
||||
|
||||
for (const Size &res : cameraResolutions) {
|
||||
cfg.pixelFormat = mappedFormat;
|
||||
cfg.size = res;
|
||||
|
||||
CameraConfiguration::Status status = cameraConfig->validate();
|
||||
if (status != CameraConfiguration::Valid) {
|
||||
LOG(HAL, Debug) << cfg.toString()
|
||||
<< " not supported";
|
||||
continue;
|
||||
}
|
||||
|
||||
LOG(HAL, Debug) << cfg.toString() << " supported";
|
||||
|
||||
std::vector<Size> resolutions = getYUVResolutions(cameraConfig.get(),
|
||||
mappedFormat,
|
||||
cameraResolutions);
|
||||
for (const Size &res : resolutions) {
|
||||
streamConfigurations_.push_back({ res, androidFormat });
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue