blob: 837389eeff987ccecc547b2ba59451a4c05dadb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2024, Ideas On Board
*
* ipa_context.h - Mali-C55 IPA Context
*/
#pragma once
#include <libcamera/controls.h>
#include <libipa/fc_queue.h>
namespace libcamera {
namespace ipa::mali_c55 {
struct IPASessionConfiguration {
};
struct IPAActiveState {
};
struct IPAFrameContext : public FrameContext {
struct {
uint32_t exposure;
double sensorGain;
} agc;
};
struct IPAContext {
IPAContext(unsigned int frameContextSize)
: frameContexts(frameContextSize)
{
}
IPASessionConfiguration configuration;
IPAActiveState activeState;
FCQueue<IPAFrameContext> frameContexts;
ControlInfoMap::Map ctrlMap;
};
} /* namespace ipa::mali_c55 */
} /* namespace libcamera*/
|