summaryrefslogtreecommitdiff
path: root/src/qcam/viewfinder.h
blob: 46747c227d0c9f4ee735f54f0265706877cab00c (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
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * viewfinder.h - qcam - Viewfinder base class
 */
#ifndef __QCAM_VIEWFINDER_H__
#define __QCAM_VIEWFINDER_H__

#include <QImage>
#include <QList>
#include <QSize>

#include <libcamera/formats.h>
#include <libcamera/framebuffer.h>

struct MappedBuffer {
	void *memory;
	size_t size;
};

class ViewFinder
{
public:
	virtual ~ViewFinder() = default;

	virtual const QList<libcamera::PixelFormat> &nativeFormats() const = 0;

	virtual int setFormat(const libcamera::PixelFormat &format, const QSize &size) = 0;
	virtual void render(libcamera::FrameBuffer *buffer, MappedBuffer *map) = 0;
	virtual void stop() = 0;

	virtual QImage getCurrentImage() = 0;
};

#endif /* __QCAM_VIEWFINDER_H__ */