summaryrefslogtreecommitdiff
path: root/include/libcamera/internal/v4l2_pixelformat.h
blob: 44439fff73ebbe5fc69bb1663685c08d4a991d11 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 * Copyright (C) 2020, Raspberry Pi Ltd
 *
 * v4l2_pixelformat.h - V4L2 Pixel Format
 */

#pragma once

#include <functional>
#include <ostream>
#include <stdint.h>
#include <string>
#include <vector>

#include <linux/videodev2.h>

#include <libcamera/pixel_format.h>

namespace libcamera {

class V4L2PixelFormat
{
public:
	struct Info {
		PixelFormat format;
		const char *description;
	};

	V4L2PixelFormat()
		: fourcc_(0)
	{
	}

	explicit V4L2PixelFormat(uint32_t fourcc)
		: fourcc_(fourcc)
	{
	}

	bool isValid() const { return fourcc_ != 0; }
	uint32_t fourcc() const { return fourcc_; }
	operator uint32_t() const { return fourcc_; }

	std::string toString() const;
	const char *description() const;

	PixelFormat toPixelFormat(bool warn = true) const;
	static const std::vector<V4L2PixelFormat> &
	fromPixelFormat(const PixelFormat &pixelFormat);

private:
	uint32_t fourcc_;
};

std::ostream &operator<<(std::ostream &out, const V4L2PixelFormat &f);

} /* namespace libcamera */

namespace std {

template<>
struct hash<libcamera::V4L2PixelFormat> {
	size_t operator()(libcamera::V4L2PixelFormat const &format) const noexcept
	{
		return format.fourcc();
	}
};

} /* namespace std */