libcamera: v4l2_subdevice: Replace ImageFormats with a map
Replace the V4L2Subdevice usage of the ImageFormats class with a std::map and the utils::map_keys() helper. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
d9295552b1
commit
dcda73ec14
5 changed files with 29 additions and 22 deletions
|
@ -16,13 +16,11 @@
|
||||||
|
|
||||||
#include "libcamera/internal/formats.h"
|
#include "libcamera/internal/formats.h"
|
||||||
#include "libcamera/internal/log.h"
|
#include "libcamera/internal/log.h"
|
||||||
|
#include "libcamera/internal/v4l2_subdevice.h"
|
||||||
|
|
||||||
namespace libcamera {
|
namespace libcamera {
|
||||||
|
|
||||||
class MediaEntity;
|
class MediaEntity;
|
||||||
class V4L2Subdevice;
|
|
||||||
|
|
||||||
struct V4L2SubdeviceFormat;
|
|
||||||
|
|
||||||
struct CameraSensorInfo {
|
struct CameraSensorInfo {
|
||||||
std::string model;
|
std::string model;
|
||||||
|
@ -75,7 +73,7 @@ private:
|
||||||
|
|
||||||
std::string model_;
|
std::string model_;
|
||||||
|
|
||||||
ImageFormats formats_;
|
V4L2Subdevice::Formats formats_;
|
||||||
Size resolution_;
|
Size resolution_;
|
||||||
std::vector<unsigned int> mbusCodes_;
|
std::vector<unsigned int> mbusCodes_;
|
||||||
std::vector<Size> sizes_;
|
std::vector<Size> sizes_;
|
||||||
|
|
|
@ -32,6 +32,8 @@ struct V4L2SubdeviceFormat {
|
||||||
class V4L2Subdevice : public V4L2Device
|
class V4L2Subdevice : public V4L2Device
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
using Formats = std::map<unsigned int, std::vector<SizeRange>>;
|
||||||
|
|
||||||
enum Whence {
|
enum Whence {
|
||||||
ActiveFormat,
|
ActiveFormat,
|
||||||
TryFormat,
|
TryFormat,
|
||||||
|
@ -51,7 +53,7 @@ public:
|
||||||
int setSelection(unsigned int pad, unsigned int target,
|
int setSelection(unsigned int pad, unsigned int target,
|
||||||
Rectangle *rect);
|
Rectangle *rect);
|
||||||
|
|
||||||
ImageFormats formats(unsigned int pad);
|
Formats formats(unsigned int pad);
|
||||||
|
|
||||||
int getFormat(unsigned int pad, V4L2SubdeviceFormat *format,
|
int getFormat(unsigned int pad, V4L2SubdeviceFormat *format,
|
||||||
Whence whence = ActiveFormat);
|
Whence whence = ActiveFormat);
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
|
|
||||||
#include "libcamera/internal/formats.h"
|
#include "libcamera/internal/formats.h"
|
||||||
#include "libcamera/internal/utils.h"
|
#include "libcamera/internal/utils.h"
|
||||||
#include "libcamera/internal/v4l2_subdevice.h"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \file camera_sensor.h
|
* \file camera_sensor.h
|
||||||
|
@ -245,15 +244,15 @@ int CameraSensor::init()
|
||||||
|
|
||||||
/* Enumerate, sort and cache media bus codes and sizes. */
|
/* Enumerate, sort and cache media bus codes and sizes. */
|
||||||
formats_ = subdev_->formats(pad_);
|
formats_ = subdev_->formats(pad_);
|
||||||
if (formats_.isEmpty()) {
|
if (formats_.empty()) {
|
||||||
LOG(CameraSensor, Error) << "No image format found";
|
LOG(CameraSensor, Error) << "No image format found";
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbusCodes_ = formats_.formats();
|
mbusCodes_ = utils::map_keys(formats_);
|
||||||
std::sort(mbusCodes_.begin(), mbusCodes_.end());
|
std::sort(mbusCodes_.begin(), mbusCodes_.end());
|
||||||
|
|
||||||
for (const auto &format : formats_.data()) {
|
for (const auto &format : formats_) {
|
||||||
const std::vector<SizeRange> &ranges = format.second;
|
const std::vector<SizeRange> &ranges = format.second;
|
||||||
std::transform(ranges.begin(), ranges.end(), std::back_inserter(sizes_),
|
std::transform(ranges.begin(), ranges.end(), std::back_inserter(sizes_),
|
||||||
[](const SizeRange &range) { return range.max; });
|
[](const SizeRange &range) { return range.max; });
|
||||||
|
@ -359,9 +358,11 @@ V4L2SubdeviceFormat CameraSensor::getFormat(const std::vector<unsigned int> &mbu
|
||||||
uint32_t bestCode = 0;
|
uint32_t bestCode = 0;
|
||||||
|
|
||||||
for (unsigned int code : mbusCodes) {
|
for (unsigned int code : mbusCodes) {
|
||||||
const std::vector<SizeRange> &ranges = formats_.sizes(code);
|
const auto formats = formats_.find(code);
|
||||||
|
if (formats == formats_.end())
|
||||||
|
continue;
|
||||||
|
|
||||||
for (const SizeRange &range : ranges) {
|
for (const SizeRange &range : formats->second) {
|
||||||
const Size &sz = range.max;
|
const Size &sz = range.max;
|
||||||
|
|
||||||
if (sz.width < size.width || sz.height < size.height)
|
if (sz.width < size.width || sz.height < size.height)
|
||||||
|
|
|
@ -217,6 +217,11 @@ uint8_t V4L2SubdeviceFormat::bitsPerPixel() const
|
||||||
* any device left open will be closed, and any resources released.
|
* any device left open will be closed, and any resources released.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \typedef V4L2Subdevice::Formats
|
||||||
|
* \brief A map of supported media bus formats to frame sizes
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \enum V4L2Subdevice::Whence
|
* \enum V4L2Subdevice::Whence
|
||||||
* \brief Specify the type of format for getFormat() and setFormat() operations
|
* \brief Specify the type of format for getFormat() and setFormat() operations
|
||||||
|
@ -340,9 +345,9 @@ int V4L2Subdevice::setSelection(unsigned int pad, unsigned int target,
|
||||||
*
|
*
|
||||||
* \return A list of the supported device formats
|
* \return A list of the supported device formats
|
||||||
*/
|
*/
|
||||||
ImageFormats V4L2Subdevice::formats(unsigned int pad)
|
V4L2Subdevice::Formats V4L2Subdevice::formats(unsigned int pad)
|
||||||
{
|
{
|
||||||
ImageFormats formats;
|
Formats formats;
|
||||||
|
|
||||||
if (pad >= entity_->pads().size()) {
|
if (pad >= entity_->pads().size()) {
|
||||||
LOG(V4L2, Error) << "Invalid pad: " << pad;
|
LOG(V4L2, Error) << "Invalid pad: " << pad;
|
||||||
|
@ -354,7 +359,8 @@ ImageFormats V4L2Subdevice::formats(unsigned int pad)
|
||||||
if (sizes.empty())
|
if (sizes.empty())
|
||||||
return {};
|
return {};
|
||||||
|
|
||||||
if (formats.addFormat(code, sizes)) {
|
const auto inserted = formats.insert({ code, sizes });
|
||||||
|
if (!inserted.second) {
|
||||||
LOG(V4L2, Error)
|
LOG(V4L2, Error)
|
||||||
<< "Could not add sizes for media bus code "
|
<< "Could not add sizes for media bus code "
|
||||||
<< code << " on pad " << pad;
|
<< code << " on pad " << pad;
|
||||||
|
|
|
@ -47,29 +47,29 @@ void ListFormatsTest::printFormats(unsigned int pad,
|
||||||
int ListFormatsTest::run()
|
int ListFormatsTest::run()
|
||||||
{
|
{
|
||||||
/* List all formats available on existing "Scaler" pads. */
|
/* List all formats available on existing "Scaler" pads. */
|
||||||
ImageFormats formats;
|
V4L2Subdevice::Formats formats;
|
||||||
|
|
||||||
formats = scaler_->formats(0);
|
formats = scaler_->formats(0);
|
||||||
if (formats.isEmpty()) {
|
if (formats.empty()) {
|
||||||
cerr << "Failed to list formats on pad 0 of subdevice "
|
cerr << "Failed to list formats on pad 0 of subdevice "
|
||||||
<< scaler_->entity()->name() << endl;
|
<< scaler_->entity()->name() << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
for (unsigned int code : formats.formats())
|
for (unsigned int code : utils::map_keys(formats))
|
||||||
printFormats(0, code, formats.sizes(code));
|
printFormats(0, code, formats[code]);
|
||||||
|
|
||||||
formats = scaler_->formats(1);
|
formats = scaler_->formats(1);
|
||||||
if (formats.isEmpty()) {
|
if (formats.empty()) {
|
||||||
cerr << "Failed to list formats on pad 1 of subdevice "
|
cerr << "Failed to list formats on pad 1 of subdevice "
|
||||||
<< scaler_->entity()->name() << endl;
|
<< scaler_->entity()->name() << endl;
|
||||||
return TestFail;
|
return TestFail;
|
||||||
}
|
}
|
||||||
for (unsigned int code : formats.formats())
|
for (unsigned int code : utils::map_keys(formats))
|
||||||
printFormats(1, code, formats.sizes(code));
|
printFormats(1, code, formats[code]);
|
||||||
|
|
||||||
/* List format on a non-existing pad, format vector shall be empty. */
|
/* List format on a non-existing pad, format vector shall be empty. */
|
||||||
formats = scaler_->formats(2);
|
formats = scaler_->formats(2);
|
||||||
if (!formats.isEmpty()) {
|
if (!formats.empty()) {
|
||||||
cerr << "Listing formats on non-existing pad 2 of subdevice "
|
cerr << "Listing formats on non-existing pad 2 of subdevice "
|
||||||
<< scaler_->entity()->name()
|
<< scaler_->entity()->name()
|
||||||
<< " should return an empty format list" << endl;
|
<< " should return an empty format list" << endl;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue