blob: 8de93a01a1e842c55aed173bbf79ff33be4e2220 (
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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* file_sink.h - File Sink
*/
#ifndef __CAM_FILE_SINK_H__
#define __CAM_FILE_SINK_H__
#include <map>
#include <memory>
#include <string>
#include <libcamera/stream.h>
#include "frame_sink.h"
class Image;
class FileSink : public FrameSink
{
public:
FileSink(const std::map<const libcamera::Stream *, std::string> &streamNames,
const std::string &pattern = "");
~FileSink();
int configure(const libcamera::CameraConfiguration &config) override;
void mapBuffer(libcamera::FrameBuffer *buffer) override;
bool processRequest(libcamera::Request *request) override;
private:
void writeBuffer(const libcamera::Stream *stream,
libcamera::FrameBuffer *buffer);
std::map<const libcamera::Stream *, std::string> streamNames_;
std::string pattern_;
std::map<libcamera::FrameBuffer *, std::unique_ptr<Image>> mappedBuffers_;
};
#endif /* __CAM_FILE_SINK_H__ */
|