summaryrefslogtreecommitdiff
path: root/src/libcamera/pipeline/simple/converter.h
blob: 1f770eb844b59110be0e92c60d6d2aecf0561d5e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2020, Laurent Pinchart
 *
 * converter.h - Format converter for simple pipeline handler
 */

#ifndef __LIBCAMERA_PIPELINE_SIMPLE_CONVERTER_H__
#define __LIBCAMERA_PIPELINE_SIMPLE_CONVERTER_H__

#include <memory>
#include <queue>
#include <vector>

#include <libcamera/pixelformats.h>
#include <libcamera/signal.h>

namespace libcamera {

class FrameBuffer;
class MediaDevice;
struct Size;
class SizeRange;
struct StreamConfiguration;
class V4L2M2MDevice;

class SimpleConverter
{
public:
	SimpleConverter(MediaDevice *media);
	~SimpleConverter();

	int open();
	void close();

	std::vector<PixelFormat> formats(PixelFormat input);
	SizeRange sizes(const Size &input);

	int configure(PixelFormat inputFormat, const Size &inputSize,
		      StreamConfiguration *cfg);
	int exportBuffers(unsigned int count,
			  std::vector<std::unique_ptr<FrameBuffer>> *buffers);

	int start(unsigned int count);
	void stop();

	int queueBuffers(FrameBuffer *input, FrameBuffer *output);

	Signal<FrameBuffer *, FrameBuffer *> bufferReady;

private:
	void captureBufferReady(FrameBuffer *buffer);
	void outputBufferReady(FrameBuffer *buffer);

	V4L2M2MDevice *m2m_;

	std::queue<FrameBuffer *> captureDoneQueue_;
	std::queue<FrameBuffer *> outputDoneQueue_;
};

} /* namespace libcamera */

#endif /* __LIBCAMERA_PIPELINE_SIMPLE_CONVERTER_H__ */