/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2020, Google Inc. * * post_processor_jpeg.h - JPEG Post Processor */ #pragma once #include "../post_processor.h" #include "encoder_libjpeg.h" #include "thumbnailer.h" #include class CameraDevice; class PostProcessorJpeg : public PostProcessor { public: PostProcessorJpeg(CameraDevice *const device); int configure(const libcamera::StreamConfiguration &incfg, const libcamera::StreamConfiguration &outcfg) override; void process(Camera3RequestDescriptor::StreamBuffer *streamBuffer) override; private: void generateThumbnail(const libcamera::FrameBuffer &source, const libcamera::Size &targetSize, unsigned int quality, std::vector *thumbnail); CameraDevice *const cameraDevice_; std::unique_ptr encoder_; libcamera::Size streamSize_; EncoderLibJpeg thumbnailEncoder_; Thumbnailer thumbnailer_; }; t type='submit' value='switch'/> libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
blob: dd5106689f090921b56439af80f0ed0d50180a05 (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
43
44
45
46
47