18#define GL_GLEXT_PROTOTYPES
19#define EGL_EGLEXT_PROTOTYPES
22#include "libcamera/internal/egl.h"
24#include "libcamera/internal/software_isp/benchmark.h"
25#include "libcamera/internal/software_isp/swstats_cpu.h"
28#include <EGL/eglext.h>
29#include <GLES3/gl32.h>
35#define DEBAYER_EGL_MIN_SIMPLE_RGB_GAIN_TEXTURE_UNITS 4
36#define DEBAYER_OPENGL_COORDS 4
47 const std::vector<std::reference_wrapper<const StreamConfiguration>> &outputCfgs,
48 bool ccmEnabled)
override;
65 static int getInputConfig(
PixelFormat inputFormat, DebayerInputConfig &config);
67 int getShaderVariableLocations();
69 int debayerGPU(
FrameBuffer *input,
FrameBuffer *output,
const DebayerParams ¶ms, std::optional<MappedFrameBuffer> *mappedInputBuffer, std::optional<DmaSyncer> *inputBufferDmaSyncer);
71 eGLImage *getCachedInputFrameBuffer(
FrameBuffer *input, std::optional<MappedFrameBuffer> *inMapped, std::optional<DmaSyncer> *inDmaSyncer);
75 GLuint vertexShaderId_ = 0;
76 GLuint fragmentShaderId_ = 0;
77 GLuint programId_ = 0;
80 std::deque<std::pair<SharedFD, std::unique_ptr<eGLImage>>> eglImageInCache_;
81 std::deque<std::pair<SharedFD, std::unique_ptr<eGLImage>>> eglImageOutCache_;
82 unsigned int inputBufferCount_;
83 unsigned int outputBufferCount_;
88 GLint attributeVertex_;
89 GLint attributeTexture_;
90 GLint textureUniformStep_;
91 GLint textureUniformSize_;
92 GLint textureUniformStrideFactor_;
93 GLint textureUniformBayerFirstRed_;
94 GLint textureUniformProjMatrix_;
96 GLint textureUniformBayerDataIn_;
99 GLint awbUniformDataIn_;
102 GLint ccmUniformDataIn_;
105 GLint blackLevelUniformDataIn_;
108 GLint gammaUniformDataIn_;
111 GLint contrastExpUniformDataIn_;
113 Size nativeOutputSize_;
115 std::unique_ptr<SwStatsCpu> stats_;
120 unsigned int bytesPerPixel_;
121 uint32_t shaderStridePixels_;
Provide access and manage all cameras in the system.
Definition camera_manager.h:25
Class for debayering using an EGL Shader.
Definition debayer_egl.h:41
int start() override
Execute a start signal in the debayer object from workerthread context.
Definition debayer_egl.cpp:661
std::tuple< unsigned int, unsigned int > strideAndFrameSize(const PixelFormat &outputFormat, const Size &size) override
Get the stride and the frame size.
Definition debayer_egl.cpp:362
uint32_t preferredInputStride(const PixelFormat &inputFormat, const Size &size) override
Definition debayer_egl.cpp:369
int configure(const StreamConfiguration &inputCfg, const std::vector< std::reference_wrapper< const StreamConfiguration > > &outputCfgs, bool ccmEnabled) override
Configure the debayer object according to the passed in parameters.
Definition debayer_egl.cpp:274
const SharedFD & getStatsFD() override
Get the file descriptor for the statistics.
Definition debayer_egl.h:60
void stop() override
Stop the debayering process and perform cleanup.
Definition debayer_egl.cpp:678
Size patternSize(PixelFormat inputFormat) override
Get the width and height at which the bayer pattern repeats.
Definition debayer_egl.cpp:341
std::vector< PixelFormat > formats(PixelFormat input) override
Get the supported output formats.
Definition debayer_egl.cpp:351
SizeRange sizes(PixelFormat inputFormat, const Size &inputSize) override
Get the supported output sizes for the given input format and size.
Definition debayer_egl.cpp:687
void process(uint32_t frame, FrameBuffer *input, FrameBuffer *output, const DebayerParams ¶ms) override
Process the bayer data into the requested format.
Definition debayer_egl.cpp:609
Base debayering class.
Definition debayer.h:36
Frame buffer data and its associated dynamic metadata.
Definition framebuffer.h:50
Describe a rectangle's position and dimensions.
Definition geometry.h:247
RAII-style wrapper for file descriptors.
Definition shared_fd.h:17
Describe a range of sizes.
Definition geometry.h:205
Describe a two-dimensional size.
Definition geometry.h:51
Helper class for managing EGL image resources.
Definition egl.h:50
Helper class for managing OpenGL ES operations.
Definition egl.h:100
Frame buffer memory mapping support.
Top-level libcamera namespace.
Definition backtrace.h:17
Base object to support automatic signal disconnection.
Struct to hold the debayer parameters.
Definition debayer_params.h:20
Configuration parameters for a stream.
Definition stream.h:40