[libcamera-devel,v3,0/5] libcamera: Add new Camera devices property
mbox series

Message ID 20230515124550.3601128-1-kieran.bingham@ideasonboard.com
Headers show
Series
  • libcamera: Add new Camera devices property
Related show

Message

Kieran Bingham May 15, 2023, 12:45 p.m. UTC
It can be beneficial to allow reporting the devices used by a camera to
facilitate de-duplication of resources when handling cameras from a
centralised infrastructure such as PipeWire.

Expose a new property on all cameras which reports a list of dev_t
values representing devices used by the camera.

Pipelines supported by media-controller will automatically register an
entry for any video node present in the media graphs registered with the
Pipeline Handler..

As part of supporting this, we move the addCamera and removeCamera
public API calls from the CameraManager class away into an internal
implementation of the CameraManager with the use of the Extensible
class.

This series also now converts include/libcamera/internal/request.h to
use #pragma once which was missed during the original conversions and
noticed as I referenced it when creating
include/libcamera/internal/camera_manager.h.

Kieran Bingham (5):
  libcamera: internal: request: convert to pragma once
  libcamera: camera_manager: Move private implementation to internal
  libcamera: camera_manager: Move {add,remove}Camera to internal
  libcamera: properties: Provide a Devices camera property
  libcamera: pipeline: Register device numbers with camera

 include/libcamera/camera_manager.h          |   4 -
 include/libcamera/internal/camera_manager.h |  63 +++++++++
 include/libcamera/internal/meson.build      |   1 +
 include/libcamera/internal/request.h        |   6 +-
 src/libcamera/camera_manager.cpp            | 145 +++++++-------------
 src/libcamera/pipeline_handler.cpp          |  16 ++-
 src/libcamera/property_ids.yaml             |   7 +
 7 files changed, 134 insertions(+), 108 deletions(-)
 create mode 100644 include/libcamera/internal/camera_manager.h