blob: 91115d2e9ba5727cca4e3b958d6b2ca2143d5b3b (
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) 2022, Google Inc.
*
* JPEG encoding using CrOS JEA
*/
#pragma once
#include <libcamera/geometry.h>
#include <cros-camera/jpeg_compressor.h>
#include "encoder.h"
class EncoderJea : public Encoder
{
public:
EncoderJea();
~EncoderJea();
int configure(const libcamera::StreamConfiguration &cfg) override;
int encode(Camera3RequestDescriptor::StreamBuffer *buffer,
libcamera::Span<const uint8_t> exifData,
unsigned int quality) override;
private:
libcamera::Size size_;
std::unique_ptr<cros::JpegCompressor> jpegCompressor_;
};
|