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:
parent
62ee701d19
commit
9caee4c662
6 changed files with 7 additions and 7 deletions
|
@ -51,7 +51,7 @@ private:
|
||||||
bool updated;
|
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;
|
static constexpr int listSize = 16;
|
||||||
class ControlRingBuffer : public std::array<Info, listSize>
|
class ControlRingBuffer : public std::array<Info, listSize>
|
||||||
{
|
{
|
||||||
|
|
|
@ -229,7 +229,7 @@ void Agc::computeExposure(IPAContext &context, IPAFrameContext *frameContext,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Filter the exposure.
|
* Filter the exposure.
|
||||||
* \todo: estimate if we need to desaturate
|
* \todo estimate if we need to desaturate
|
||||||
*/
|
*/
|
||||||
exposureValue = filterExposure(exposureValue);
|
exposureValue = filterExposure(exposureValue);
|
||||||
|
|
||||||
|
|
|
@ -184,12 +184,12 @@ void CameraConfiguration::addConfiguration(const StreamConfiguration &cfg)
|
||||||
* This function adjusts the camera configuration to the closest valid
|
* This function adjusts the camera configuration to the closest valid
|
||||||
* configuration and returns the validation status.
|
* 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 ?
|
* 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
|
* 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 ?
|
* 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
|
* \return A CameraConfiguration::Status value that describes the validation
|
||||||
* status.
|
* status.
|
||||||
|
|
|
@ -908,7 +908,7 @@ ControlList::ControlList(const ControlInfoMap &infoMap,
|
||||||
void ControlList::merge(const ControlList &source)
|
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
|
* from a compatible ControlIdMap, to prevent undefined behaviour due to
|
||||||
* id collisions.
|
* id collisions.
|
||||||
*
|
*
|
||||||
|
|
|
@ -552,7 +552,7 @@ int PipelineHandlerIPU3::configure(Camera *camera, CameraConfiguration *c)
|
||||||
return ret;
|
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.
|
* As of now, enable all links unconditionally.
|
||||||
* \todo Don't configure the ImgU at all if we only have a single
|
* \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
|
* stream which is for raw capture, in which case no buffers will
|
||||||
|
|
|
@ -349,7 +349,7 @@ Request::Request(Camera *camera, uint64_t cookie)
|
||||||
camera->_d()->validator());
|
camera->_d()->validator());
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \todo: Add a validator for metadata controls.
|
* \todo Add a validator for metadata controls.
|
||||||
*/
|
*/
|
||||||
metadata_ = new ControlList(controls::controls);
|
metadata_ = new ControlList(controls::controls);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue