libcamera  v0.3.1+12-19bbca3c
Supporting cameras in Linux since 2019
v4l2_pixelformat.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /*
3  * Copyright (C) 2019, Google Inc.
4  * Copyright (C) 2020, Raspberry Pi Ltd
5  *
6  * V4L2 Pixel Format
7  */
8 
9 #pragma once
10 
11 #include <functional>
12 #include <ostream>
13 #include <stdint.h>
14 #include <string>
15 #include <vector>
16 
17 #include <linux/videodev2.h>
18 
19 #include <libcamera/pixel_format.h>
20 
21 namespace libcamera {
22 
24 {
25 public:
26  struct Info {
28  const char *description;
29  };
30 
32  : fourcc_(0)
33  {
34  }
35 
36  explicit V4L2PixelFormat(uint32_t fourcc)
37  : fourcc_(fourcc)
38  {
39  }
40 
41  bool isValid() const { return fourcc_ != 0; }
42  uint32_t fourcc() const { return fourcc_; }
43  operator uint32_t() const { return fourcc_; }
44 
45  std::string toString() const;
46  const char *description() const;
47 
48  PixelFormat toPixelFormat(bool warn = true) const;
49  static const std::vector<V4L2PixelFormat> &
50  fromPixelFormat(const PixelFormat &pixelFormat);
51 
52 private:
53  uint32_t fourcc_;
54 };
55 
56 std::ostream &operator<<(std::ostream &out, const V4L2PixelFormat &f);
57 
58 } /* namespace libcamera */
59 
60 namespace std {
61 
62 template<>
63 struct hash<libcamera::V4L2PixelFormat> {
64  size_t operator()(libcamera::V4L2PixelFormat const &format) const noexcept
65  {
66  return format.fourcc();
67  }
68 };
69 
70 } /* namespace std */
libcamera image pixel format
Definition: pixel_format.h:17
V4L2 pixel format FourCC wrapper.
Definition: v4l2_pixelformat.h:23
static const std::vector< V4L2PixelFormat > & fromPixelFormat(const PixelFormat &pixelFormat)
Retrieve the list of V4L2PixelFormat associated with pixelFormat.
Definition: v4l2_pixelformat.cpp:362
Top-level libcamera namespace.
Definition: backtrace.h:17
Definition: v4l2_pixelformat.h:60
PixelFormat format
The corresponding libcamera PixelFormat.
Definition: v4l2_pixelformat.h:27
std::string toString() const
Assemble and return a string describing the pixel format.
Definition: v4l2_pixelformat.cpp:284
uint32_t fourcc() const
Retrieve the pixel format FourCC numerical value.
Definition: v4l2_pixelformat.h:42
const char * description
The human-readable description of the V4L2 pixel format.
Definition: v4l2_pixelformat.h:28
std::ostream & operator<<(std::ostream &out, const Point &p)
Insert a text representation of a Point into an output stream.
Definition: geometry.cpp:91
bool isValid() const
Check if the pixel format is valid.
Definition: v4l2_pixelformat.h:41
Information about a V4L2 pixel format.
Definition: v4l2_pixelformat.h:26
V4L2PixelFormat()
Construct a V4L2PixelFormat with an invalid format.
Definition: v4l2_pixelformat.h:31
V4L2PixelFormat(uint32_t fourcc)
Construct a V4L2PixelFormat from a FourCC value.
Definition: v4l2_pixelformat.h:36
PixelFormat toPixelFormat(bool warn=true) const
Convert the V4L2 pixel format to the corresponding PixelFormat.
Definition: v4l2_pixelformat.cpp:339
libcamera pixel format