/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2020, Raspberry Pi (Trading) Ltd. * * dng_writer.h - DNG writer */ #ifndef __QCAM_DNG_WRITER_H__ #define __QCAM_DNG_WRITER_H__ #ifdef HAVE_TIFF #define HAVE_DNG #include #include #include #include using namespace libcamera; class DNGWriter { public: static int write(const char *filename, const Camera *camera, const StreamConfiguration &config, const ControlList &metadata, const FrameBuffer *buffer, const void *data); }; #endif /* HAVE_TIFF */ #endif /* __QCAM_DNG_WRITER_H__ */ >index : libcamera/pinchartl/libcamera.git
Laurent Pinchart's clone of libcameragit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
blob: 77c79140eb376f93c4d968dd555780be8db9d926 (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