08a75925d8
The libcamera source files are named after class names, using snake_case. pixelformats.h and pixelformats.cpp don't comply with that rule. Fix them. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
60 lines
1.1 KiB
C++
60 lines
1.1 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* format_convert.h - qcam - Convert buffer to RGB
|
|
*/
|
|
#ifndef __QCAM_FORMAT_CONVERTER_H__
|
|
#define __QCAM_FORMAT_CONVERTER_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <QSize>
|
|
|
|
#include <libcamera/pixel_format.h>
|
|
|
|
class QImage;
|
|
|
|
class FormatConverter
|
|
{
|
|
public:
|
|
int configure(const libcamera::PixelFormat &format, const QSize &size);
|
|
|
|
void convert(const unsigned char *src, size_t size, QImage *dst);
|
|
|
|
private:
|
|
enum FormatFamily {
|
|
MJPEG,
|
|
NV,
|
|
RGB,
|
|
YUV,
|
|
};
|
|
|
|
void convertNV(const unsigned char *src, unsigned char *dst);
|
|
void convertRGB(const unsigned char *src, unsigned char *dst);
|
|
void convertYUV(const unsigned char *src, unsigned char *dst);
|
|
|
|
libcamera::PixelFormat format_;
|
|
unsigned int width_;
|
|
unsigned int height_;
|
|
|
|
enum FormatFamily formatFamily_;
|
|
|
|
/* NV parameters */
|
|
unsigned int horzSubSample_;
|
|
unsigned int vertSubSample_;
|
|
bool nvSwap_;
|
|
|
|
/* RGB parameters */
|
|
unsigned int bpp_;
|
|
unsigned int r_pos_;
|
|
unsigned int g_pos_;
|
|
unsigned int b_pos_;
|
|
|
|
/* YUV parameters */
|
|
unsigned int y_pos_;
|
|
unsigned int cb_pos_;
|
|
};
|
|
|
|
#endif /* __QCAM_FORMAT_CONVERTER_H__ */
|