summaryrefslogtreecommitdiff
path: root/src/libcamera/include/ipa_context_wrapper.h
blob: 0db022ef5a1bc1a0d4f433e375d10e11d8515d07 (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
48
49
50
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * ipa_context_wrapper.h - Image Processing Algorithm context wrapper
 */
#ifndef __LIBCAMERA_IPA_CONTEXT_WRAPPER_H__
#define __LIBCAMERA_IPA_CONTEXT_WRAPPER_H__

#include <ipa/ipa_interface.h>

#include "control_serializer.h"

namespace libcamera {

class IPAContextWrapper final : public IPAInterface
{
public:
	IPAContextWrapper(struct ipa_context *context);
	~IPAContextWrapper();

	int init(const IPASettings &settings) override;
	int start() override;
	void stop() override;
	void configure(const CameraSensorInfo &sensorInfo,
		       const std::map<unsigned int, IPAStream> &streamConfig,
		       const std::map<unsigned int, const ControlInfoMap &> &entityControls) override;

	void mapBuffers(const std::vector<IPABuffer> &buffers) override;
	void unmapBuffers(const std::vector<unsigned int> &ids) override;

	virtual void processEvent(const IPAOperationData &data) override;

private:
	static void queue_frame_action(void *ctx, unsigned int frame,
				       struct ipa_operation_data &data);
	static const struct ipa_callback_ops callbacks_;

	void doQueueFrameAction(unsigned int frame,
				const IPAOperationData &data);

	struct ipa_context *ctx_;
	IPAInterface *intf_;

	ControlSerializer serializer_;
};

} /* namespace libcamera */

#endif /* __LIBCAMERA_IPA_CONTEXT_WRAPPER_H__ */