libcamera
v0.3.1+12-19bbca3c
Supporting cameras in Linux since 2019
|
Abstract Base Class for converter. More...
Public Member Functions | |
Converter (MediaDevice *media) | |
Construct a Converter instance. More... | |
virtual int | loadConfiguration (const std::string &filename)=0 |
Load converter configuration from file. More... | |
virtual bool | isValid () const =0 |
Check if the converter configuration is valid. More... | |
virtual std::vector< PixelFormat > | formats (PixelFormat input)=0 |
Retrieve the list of supported pixel formats for an input pixel format. More... | |
virtual SizeRange | sizes (const Size &input)=0 |
Retrieve the range of minimum and maximum output sizes for an input size. More... | |
virtual std::tuple< unsigned int, unsigned int > | strideAndFrameSize (const PixelFormat &pixelFormat, const Size &size)=0 |
Retrieve the output stride and frame size for an input configutation. More... | |
virtual int | configure (const StreamConfiguration &inputCfg, const std::vector< std::reference_wrapper< StreamConfiguration >> &outputCfgs)=0 |
Configure a set of output stream conversion from an input stream. More... | |
virtual int | exportBuffers (const Stream *stream, unsigned int count, std::vector< std::unique_ptr< FrameBuffer >> *buffers)=0 |
Export buffers from the converter device. More... | |
virtual int | start ()=0 |
Start the converter streaming operation. More... | |
virtual void | stop ()=0 |
Stop the converter streaming operation. | |
virtual int | queueBuffers (FrameBuffer *input, const std::map< const Stream *, FrameBuffer *> &outputs)=0 |
Queue buffers to converter device. More... | |
const std::string & | deviceNode () const |
The converter device node attribute accessor. More... | |
Public Attributes | |
Signal< FrameBuffer * > | inputBufferReady |
A signal emitted when the input frame buffer completes. | |
Signal< FrameBuffer * > | outputBufferReady |
A signal emitted on each frame buffer completion of the output queue. | |
Abstract Base Class for converter.
The Converter class is an Abstract Base Class defining the interfaces of converter implementations.
Converters offer scaling and pixel format conversion services on an input stream. The converter can output multiple streams with individual conversion parameters from the same input stream.
libcamera::Converter::Converter | ( | MediaDevice * | media | ) |
Construct a Converter instance.
[in] | media | The media device implementing the converter |
This searches for the entity implementing the data streaming function in the media graph entities and use its device node as the converter device node.
|
pure virtual |
Configure a set of output stream conversion from an input stream.
[in] | inputCfg | Input stream configuration |
[out] | outputCfgs | A list of output stream configurations |
Implemented in libcamera::V4L2M2MConverter.
|
inline |
The converter device node attribute accessor.
|
pure virtual |
Export buffers from the converter device.
[in] | stream | Output stream pointer exporting the buffers |
[in] | count | Number of buffers to allocate |
[out] | buffers | Vector to store allocated buffers |
This function operates similarly to V4L2VideoDevice::exportBuffers() on the output stream indicated by the output.
Implemented in libcamera::V4L2M2MConverter.
|
pure virtual |
Retrieve the list of supported pixel formats for an input pixel format.
[in] | input | Input pixel format to retrieve output pixel format list for |
Implemented in libcamera::V4L2M2MConverter.
|
pure virtual |
Check if the converter configuration is valid.
Implemented in libcamera::V4L2M2MConverter.
|
pure virtual |
Load converter configuration from file.
[in] | filename | The file name path |
Load converter dependent configuration parameters to apply on the hardware.
|
pure virtual |
Queue buffers to converter device.
[in] | input | The frame buffer to apply the conversion |
[out] | outputs | The container holding the output stream pointers and their respective frame buffer outputs. |
This function queues the input frame buffer on the output streams of the outputs map key and retrieve the output frame buffer indicated by the buffer map value.
Implemented in libcamera::V4L2M2MConverter.
|
pure virtual |
Retrieve the range of minimum and maximum output sizes for an input size.
[in] | input | Input stream size to retrieve range for |
Implemented in libcamera::V4L2M2MConverter.
|
pure virtual |
Start the converter streaming operation.
Implemented in libcamera::V4L2M2MConverter.
|
pure virtual |
Retrieve the output stride and frame size for an input configutation.
[in] | pixelFormat | Input stream pixel format |
[in] | size | Input stream size |
Implemented in libcamera::V4L2M2MConverter.