gstreamer: Make format_map[] const

format_map[] is the mapping between GstVideoFormat and libcamera's
PixelFormat. Make it const as it is not meant to be changed.

Signed-off-by: Umang Jain <uajain@igalia.com>
Reviewed-by: Barnabás Pőcze <barnabas.pocze@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Umang Jain
2025-07-25 09:46:17 +05:30
committed by Laurent Pinchart
parent 76be047f74
commit 8769279a64

View File

@@ -13,7 +13,7 @@
using namespace libcamera;
static struct {
static const struct {
GstVideoFormat gst_format;
PixelFormat format;
} format_map[] = {