blob: c9ca98913e0521f9638edfc11070beab6c45310e (
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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* viewfinder.h - qcam - Viewfinder
*/
#ifndef __QCAM_VIEWFINDER_H__
#define __QCAM_VIEWFINDER_H__
#include <QLabel>
#include "format_converter.h"
class QImage;
class ViewFinder : public QLabel
{
public:
ViewFinder(QWidget *parent);
int setFormat(unsigned int format, unsigned int width,
unsigned int height);
void display(const unsigned char *rgb, size_t size);
private:
unsigned int format_;
unsigned int width_;
unsigned int height_;
FormatConverter converter_;
QImage *image_;
};
#endif /* __QCAM_VIEWFINDER__ */
|