summaryrefslogtreecommitdiff
path: root/src/gstreamer/gstlibcamera.cpp
AgeCommit message (Collapse)Author
2020-03-07gst: Turn the top-level plugin file gstlibcamera.c into a C++ fileLaurent Pinchart
The top-level plugin file gstlibcamera.c is the only C source file in the whole libcamera GStreamer element. To avoid specifying both C and C++ compiler arguments in the future, turn it into a C++ file. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
a> 16 17 18 19 20 21 22 23
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2019, Raspberry Pi (Trading) Limited
 *
 * sdn_status.h - SDN (spatial denoise) control algorithm status
 */
#pragma once

// This stores the parameters required for Spatial Denoise (SDN).

#ifdef __cplusplus
extern "C" {
#endif

struct SdnStatus {
	double noise_constant;
	double noise_slope;
	double strength;
};

#ifdef __cplusplus
}
#endif