summaryrefslogtreecommitdiff
path: root/src/ipa/rpi/controller/tonemap_status.h
blob: 0e6399467869f1eeef7d172c1688f4233dd52108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2022 Raspberry Pi Ltd
 *
 * hdr.h - Tonemap control algorithm status
 */
#pragma once

#include "pwl.h"

struct TonemapStatus {
	uint16_t detailConstant;
	double detailSlope;
	double iirStrength;
	double strength;
	RPiController::Pwl tonemap;
};