libcamera: formats: Remove unnecessary explicit constructor calls
When initializing the PixelFormatInfo::format field with a PixelFormat, there's no need to call the PixelFormat (copy) constructor explicitly. Remove the unnecessary calls. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
a8a2048ab0
commit
7145d15e04
1 changed files with 3 additions and 3 deletions
|
@ -321,7 +321,7 @@ const std::map<PixelFormat, PixelFormatInfo> pixelFormatInfo{
|
|||
} },
|
||||
{ formats::YUV420, {
|
||||
.name = "YUV420",
|
||||
.format = PixelFormat(formats::YUV420),
|
||||
.format = formats::YUV420,
|
||||
.v4l2Format = V4L2PixelFormat(V4L2_PIX_FMT_YUV420),
|
||||
.bitsPerPixel = 12,
|
||||
.colourEncoding = PixelFormatInfo::ColourEncodingYUV,
|
||||
|
@ -331,7 +331,7 @@ const std::map<PixelFormat, PixelFormatInfo> pixelFormatInfo{
|
|||
} },
|
||||
{ formats::YVU420, {
|
||||
.name = "YVU420",
|
||||
.format = PixelFormat(formats::YVU420),
|
||||
.format = formats::YVU420,
|
||||
.v4l2Format = V4L2PixelFormat(V4L2_PIX_FMT_YVU420),
|
||||
.bitsPerPixel = 12,
|
||||
.colourEncoding = PixelFormatInfo::ColourEncodingYUV,
|
||||
|
@ -341,7 +341,7 @@ const std::map<PixelFormat, PixelFormatInfo> pixelFormatInfo{
|
|||
} },
|
||||
{ formats::YUV422, {
|
||||
.name = "YUV422",
|
||||
.format = PixelFormat(formats::YUV422),
|
||||
.format = formats::YUV422,
|
||||
.v4l2Format = V4L2PixelFormat(V4L2_PIX_FMT_YUV422P),
|
||||
.bitsPerPixel = 16,
|
||||
.colourEncoding = PixelFormatInfo::ColourEncodingYUV,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue