Files
external_libcamera/src/ipa/raspberrypi/controller/dpc_status.h
Naushir Patuck de9e95bfcc ipa: raspberrypi: Remove extern "C" declarations
Since the controller header files are now C++ specific, remove the extern "C"
declarations.

Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2022-07-27 18:12:14 +03:00

14 lines
348 B
C

/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2019, Raspberry Pi (Trading) Limited
*
* dpc_status.h - DPC (defective pixel correction) control algorithm status
*/
#pragma once
/* The "DPC" algorithm sets defective pixel correction strength. */
struct DpcStatus {
int strength; /* 0 = "off", 1 = "normal", 2 = "strong" */
};