libcamera: Remove extra ':' after '\todo'

The doxygen '\todo' directory doesn't need to be followed by a colon,
yet a few strayed occurrences have made their way in. Fix them.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2022-07-19 23:49:25 +03:00
parent 62ee701d19
commit 9caee4c662
6 changed files with 7 additions and 7 deletions

View file

@ -51,7 +51,7 @@ private:
bool updated;
};
/* \todo: Make the listSize configurable at instance creation time. */
/* \todo Make the listSize configurable at instance creation time. */
static constexpr int listSize = 16;
class ControlRingBuffer : public std::array<Info, listSize>
{

View file

@ -229,7 +229,7 @@ void Agc::computeExposure(IPAContext &context, IPAFrameContext *frameContext,
/*
* Filter the exposure.
* \todo: estimate if we need to desaturate
* \todo estimate if we need to desaturate
*/
exposureValue = filterExposure(exposureValue);

View file

@ -184,12 +184,12 @@ void CameraConfiguration::addConfiguration(const StreamConfiguration &cfg)
* This function adjusts the camera configuration to the closest valid
* configuration and returns the validation status.
*
* \todo: Define exactly when to return each status code. Should stream
* \todo Define exactly when to return each status code. Should stream
* parameters set to 0 by the caller be adjusted without returning Adjusted ?
* This would potentially be useful for applications but would get in the way
* in Camera::configure(). Do we need an extra status code to signal this ?
*
* \todo: Handle validation of buffers count when refactoring the buffers API.
* \todo Handle validation of buffers count when refactoring the buffers API.
*
* \return A CameraConfiguration::Status value that describes the validation
* status.

View file

@ -908,7 +908,7 @@ ControlList::ControlList(const ControlInfoMap &infoMap,
void ControlList::merge(const ControlList &source)
{
/**
* \todo: ASSERT that the current and source ControlList are derived
* \todo ASSERT that the current and source ControlList are derived
* from a compatible ControlIdMap, to prevent undefined behaviour due to
* id collisions.
*

View file

@ -552,7 +552,7 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)
return ret;
/*
* \todo: Enable links selectively based on the requested streams.
* \todo Enable links selectively based on the requested streams.
* As of now, enable all links unconditionally.
* \todo Don't configure the ImgU at all if we only have a single
* stream which is for raw capture, in which case no buffers will

View file

@ -349,7 +349,7 @@ Request::Request(Camera *camera, uint64_t cookie)
camera->_d()->validator());
/**
* \todo: Add a validator for metadata controls.
* \todo Add a validator for metadata controls.
*/
metadata_ = new ControlList(controls::controls);