summaryrefslogtreecommitdiff
path: root/src/ipa/rpi/controller/hdr_status.h
blob: 24b1a935887153048e7c3f433dae0a7af7a686e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2023 Raspberry Pi Ltd
 *
 * hdr_status.h - HDR control algorithm status
 */
#pragma once

#include <string>

/*
 * The HDR algorithm process method should post an HdrStatus into the image
 * metadata under the tag "hdr.status".
 */

struct HdrStatus {
	std::string mode;
	std::string channel;
};