blob: 4e85996107972a6c7ba0ed4e80e0de4ed4f5d9ec (
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
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2020, Google Inc.
*
* encoder.h - Image encoding interface
*/
#ifndef __ANDROID_JPEG_ENCODER_H__
#define __ANDROID_JPEG_ENCODER_H__
#include <libcamera/buffer.h>
#include <libcamera/span.h>
#include <libcamera/stream.h>
class Encoder
{
public:
virtual ~Encoder() {}
virtual int configure(const libcamera::StreamConfiguration &cfg) = 0;
virtual int encode(const libcamera::FrameBuffer *source,
const libcamera::Span<uint8_t> &destination,
const libcamera::Span<const uint8_t> &exifData) = 0;
};
#endif /* __ANDROID_JPEG_ENCODER_H__ */
|