mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 07:19:45 +03:00
ipa: rkisp1: cproc: Drop incorrect [[maybe_unused]]
A few function parameters are marked with [[maybe_unused]] but are actually used. Drop the attribute. Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
c2fad17ad0
commit
1b91725618
1 changed files with 3 additions and 3 deletions
|
@ -54,7 +54,7 @@ int convertContrastOrSaturation(const float v)
|
||||||
/**
|
/**
|
||||||
* \copydoc libcamera::ipa::Algorithm::init
|
* \copydoc libcamera::ipa::Algorithm::init
|
||||||
*/
|
*/
|
||||||
int ColorProcessing::init([[maybe_unused]] IPAContext &context,
|
int ColorProcessing::init(IPAContext &context,
|
||||||
[[maybe_unused]] const YamlObject &tuningData)
|
[[maybe_unused]] const YamlObject &tuningData)
|
||||||
{
|
{
|
||||||
auto &cmap = context.ctrlMap;
|
auto &cmap = context.ctrlMap;
|
||||||
|
@ -69,7 +69,7 @@ int ColorProcessing::init([[maybe_unused]] IPAContext &context,
|
||||||
/**
|
/**
|
||||||
* \copydoc libcamera::ipa::Algorithm::configure
|
* \copydoc libcamera::ipa::Algorithm::configure
|
||||||
*/
|
*/
|
||||||
int ColorProcessing::configure([[maybe_unused]] IPAContext &context,
|
int ColorProcessing::configure(IPAContext &context,
|
||||||
[[maybe_unused]] const IPACameraSensorInfo &configInfo)
|
[[maybe_unused]] const IPACameraSensorInfo &configInfo)
|
||||||
{
|
{
|
||||||
auto &cproc = context.activeState.cproc;
|
auto &cproc = context.activeState.cproc;
|
||||||
|
@ -85,7 +85,7 @@ int ColorProcessing::configure([[maybe_unused]] IPAContext &context,
|
||||||
* \copydoc libcamera::ipa::Algorithm::queueRequest
|
* \copydoc libcamera::ipa::Algorithm::queueRequest
|
||||||
*/
|
*/
|
||||||
void ColorProcessing::queueRequest(IPAContext &context,
|
void ColorProcessing::queueRequest(IPAContext &context,
|
||||||
[[maybe_unused]] const uint32_t frame,
|
const uint32_t frame,
|
||||||
IPAFrameContext &frameContext,
|
IPAFrameContext &frameContext,
|
||||||
const ControlList &controls)
|
const ControlList &controls)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue