/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2019, Raspberry Pi Ltd
 *
 * noise_status.h - Noise control algorithm status
 */
#pragma once

/* The "noise" algorithm stores an estimate of the noise profile for this image. */

struct NoiseStatus {
	double noiseConstant;
	double noiseSlope;
};