blob: bf44c879aff70da8aa6fe0ae320bdfe249c28e4c (
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
|
/* 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 <libcamera/buffer.h>
#include <libcamera/camera.h>
#include <libcamera/controls.h>
#include <libcamera/stream.h>
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__ */
|