/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2022, Google Inc. * * encoder_jea.h - JPEG encoding using CrOS JEA */ #pragma once #include #include #include "encoder.h" class EncoderJea : public Encoder { public: EncoderJea(); ~EncoderJea(); int configure(const libcamera::StreamConfiguration &cfg) override; int encode(Camera3RequestDescriptor::StreamBuffer *buffer, libcamera::Span exifData, unsigned int quality) override; private: libcamera::Size size_; std::unique_ptr jpegCompressor_; }; ain'>index : libcamera/pinchartl/libcamera.git
Laurent Pinchart's clone of libcameragit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
blob: 5024b6835949e90636cf96951fc0e7701df5dfeb (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