libcamera: v4l2_subdevice: Drop V4L2SubdeviceFormat::bitsPerPixel()
The V4L2SubdeviceFormat::bitsPerPixel() function is just a wrapper around a MediaBusFormatInfo lookup. It made sense when the MediaBusFormatInfo class was not exposed outside of the compilation unit, but is now redundant. Drop it and use MediaBusFormatInfo in the only caller. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
@@ -1060,7 +1060,8 @@ int CameraSensor::sensorInfo(IPACameraSensorInfo *info) const
|
||||
ret = subdev_->getFormat(pad_, &format);
|
||||
if (ret)
|
||||
return ret;
|
||||
info->bitsPerPixel = format.bitsPerPixel();
|
||||
|
||||
info->bitsPerPixel = MediaBusFormatInfo::info(format.mbus_code).bitsPerPixel;
|
||||
info->outputSize = format.size;
|
||||
|
||||
std::optional<int32_t> cfa = properties_.get(properties::draft::ColorFilterArrangement);
|
||||
|
||||
Reference in New Issue
Block a user