libcamera  v0.5.0+10-50d143ad
Supporting cameras in Linux since 2019
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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  bool isGenericLineBasedMetadata() const;
53 
54 private:
55  uint32_t fourcc_;
56 };
57 
58 std::ostream &operator<<(std::ostream &out, const V4L2PixelFormat &f);
59 
60 } /* namespace libcamera */
61 
62 namespace std {
63 
64 template<>
65 struct hash<libcamera::V4L2PixelFormat> {
66  size_t operator()(libcamera::V4L2PixelFormat const &format) const noexcept
67  {
68  return format.fourcc();
69  }
70 };
71 
72 } /* namespace std */
libcamera image pixel format
Definition: pixel_format.h:16
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:364
Top-level libcamera namespace.
Definition: backtrace.h:17
Definition: v4l2_pixelformat.h:62
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:286
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
bool isGenericLineBasedMetadata() const
Test if a V4L2PixelFormat is one of the line based generic metadata formats.
Definition: v4l2_pixelformat.cpp:393
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:341
libcamera pixel format