This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:

Subject: v4l-utils: sync with latest media-committers/next branch
Author:  Hans Verkuil <[email protected]>
Date:    Thu Jan 15 15:59:49 2026 +0100

Sync with the latest next branch of the media-committers
git repo.

Signed-off-by: Hans Verkuil <[email protected]>

 contrib/freebsd/include/linux/input-event-codes.h | 13 +++++
 contrib/freebsd/include/linux/input.h             | 22 ++++++++-
 contrib/freebsd/include/linux/v4l2-controls.h     |  6 +++
 contrib/freebsd/include/linux/videodev2.h         |  5 ++
 include/linux/bpf.h                               | 59 +++++++++++++++++++++--
 include/linux/fb.h                                |  2 +-
 include/linux/media-bus-format.h                  |  9 +++-
 include/linux/v4l2-controls.h                     |  6 +++
 include/linux/videodev2.h                         |  5 ++
 utils/common/v4l2-pix-formats.h                   |  3 ++
 utils/keytable/parse.h                            |  2 +
 utils/v4l2-tracer/v4l2-tracer-info-gen.h          |  1 +
 12 files changed, 124 insertions(+), 9 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=39346c59bbff4c3e5288c7c71d6d1f1343f4bb9a
diff --git a/contrib/freebsd/include/linux/input-event-codes.h 
b/contrib/freebsd/include/linux/input-event-codes.h
index 90295adc64c5..94db4e485e98 100644
--- a/contrib/freebsd/include/linux/input-event-codes.h
+++ b/contrib/freebsd/include/linux/input-event-codes.h
@@ -27,6 +27,7 @@
 #define INPUT_PROP_TOPBUTTONPAD                0x04    /* softbuttons at top 
of pad */
 #define INPUT_PROP_POINTING_STICK      0x05    /* is a pointing stick */
 #define INPUT_PROP_ACCELEROMETER       0x06    /* has accelerometer */
+#define INPUT_PROP_PRESSUREPAD         0x07    /* pressure triggers clicks */
 
 #define INPUT_PROP_MAX                 0x1f
 #define INPUT_PROP_CNT                 (INPUT_PROP_MAX + 1)
@@ -630,6 +631,18 @@
 #define KEY_BRIGHTNESS_MIN             0x250   /* Set Brightness to Minimum */
 #define KEY_BRIGHTNESS_MAX             0x251   /* Set Brightness to Maximum */
 
+/*
+ * Keycodes for hotkeys toggling the electronic privacy screen found on some
+ * laptops on/off. Note when the embedded-controller turns on/off the eprivacy
+ * screen itself then the state should be reported through drm connecter props:
+ * 
https://www.kernel.org/doc/html/latest/gpu/drm-kms.html#standard-connector-properties
+ * Except when implementing the drm connecter properties API is not possible
+ * because e.g. the firmware does not allow querying the presence and/or status
+ * of the eprivacy screen at boot.
+ */
+#define KEY_EPRIVACY_SCREEN_ON         0x252
+#define KEY_EPRIVACY_SCREEN_OFF                0x253
+
 #define KEY_KBDINPUTASSIST_PREV                0x260
 #define KEY_KBDINPUTASSIST_NEXT                0x261
 #define KEY_KBDINPUTASSIST_PREVGROUP           0x262
diff --git a/contrib/freebsd/include/linux/input.h 
b/contrib/freebsd/include/linux/input.h
index 93b8f640115f..d8bd045a1f99 100644
--- a/contrib/freebsd/include/linux/input.h
+++ b/contrib/freebsd/include/linux/input.h
@@ -463,6 +463,24 @@ struct ff_rumble_effect {
        __u16 weak_magnitude;
 };
 
+/**
+ * struct ff_haptic_effect
+ * @hid_usage: hid_usage according to Haptics page (WAVEFORM_CLICK, etc.)
+ * @vendor_id: the waveform vendor ID if hid_usage is in the vendor-defined 
range
+ * @vendor_waveform_page: the vendor waveform page if hid_usage is in the 
vendor-defined range
+ * @intensity: strength of the effect as percentage
+ * @repeat_count: number of times to retrigger effect
+ * @retrigger_period: time before effect is retriggered (in ms)
+ */
+struct ff_haptic_effect {
+       __u16 hid_usage;
+       __u16 vendor_id;
+       __u8  vendor_waveform_page;
+       __u16 intensity;
+       __u16 repeat_count;
+       __u16 retrigger_period;
+};
+
 /**
  * struct ff_effect - defines force feedback effect
  * @type: type of the effect (FF_CONSTANT, FF_PERIODIC, FF_RAMP, FF_SPRING,
@@ -499,6 +517,7 @@ struct ff_effect {
                struct ff_periodic_effect periodic;
                struct ff_condition_effect condition[2]; /* One for each axis */
                struct ff_rumble_effect rumble;
+               struct ff_haptic_effect haptic;
        } u;
 };
 
@@ -506,6 +525,7 @@ struct ff_effect {
  * Force feedback effect types
  */
 
+#define FF_HAPTIC              0x4f
 #define FF_RUMBLE      0x50
 #define FF_PERIODIC    0x51
 #define FF_CONSTANT    0x52
@@ -515,7 +535,7 @@ struct ff_effect {
 #define FF_INERTIA     0x56
 #define FF_RAMP                0x57
 
-#define FF_EFFECT_MIN  FF_RUMBLE
+#define FF_EFFECT_MIN  FF_HAPTIC
 #define FF_EFFECT_MAX  FF_RAMP
 
 /*
diff --git a/contrib/freebsd/include/linux/v4l2-controls.h 
b/contrib/freebsd/include/linux/v4l2-controls.h
index f6854555f848..f1c59fcafc7b 100644
--- a/contrib/freebsd/include/linux/v4l2-controls.h
+++ b/contrib/freebsd/include/linux/v4l2-controls.h
@@ -230,6 +230,12 @@ enum v4l2_colorfx {
  */
 #define V4L2_CID_USER_RKISP1_BASE              (V4L2_CID_USER_BASE + 0x1220)
 
+/*
+ * The base for the Arm Mali-C55 ISP driver controls.
+ * We reserve 16 controls for this driver
+ */
+#define V4L2_CID_USER_MALI_C55_BASE            (V4L2_CID_USER_BASE + 0x1230)
+
 /* MPEG-class control IDs */
 /* The MPEG controls are applicable to all codec controls
  * and the 'MPEG' part of the define is historical */
diff --git a/contrib/freebsd/include/linux/videodev2.h 
b/contrib/freebsd/include/linux/videodev2.h
index 0b1465842b3f..12fefbe55d27 100644
--- a/contrib/freebsd/include/linux/videodev2.h
+++ b/contrib/freebsd/include/linux/videodev2.h
@@ -782,6 +782,7 @@ struct v4l2_pix_format {
 #define V4L2_PIX_FMT_H264_SLICE v4l2_fourcc('S', '2', '6', '4') /* H264 parsed 
slices */
 #define V4L2_PIX_FMT_HEVC_SLICE v4l2_fourcc('S', '2', '6', '5') /* HEVC parsed 
slices */
 #define V4L2_PIX_FMT_AV1_FRAME v4l2_fourcc('A', 'V', '1', 'F') /* AV1 parsed 
frame */
+#define V4L2_PIX_FMT_AV1      v4l2_fourcc('A', 'V', '0', '1') /* AV1 */
 #define V4L2_PIX_FMT_SPK      v4l2_fourcc('S', 'P', 'K', '0') /* Sorenson 
Spark */
 #define V4L2_PIX_FMT_RV30     v4l2_fourcc('R', 'V', '3', '0') /* RealVideo 8 */
 #define V4L2_PIX_FMT_RV40     v4l2_fourcc('R', 'V', '4', '0') /* RealVideo 9 & 
10 */
@@ -891,6 +892,10 @@ struct v4l2_pix_format {
 #define V4L2_META_FMT_RPI_FE_CFG       v4l2_fourcc('R', 'P', 'F', 'C') /* PiSP 
FE configuration */
 #define V4L2_META_FMT_RPI_FE_STATS     v4l2_fourcc('R', 'P', 'F', 'S') /* PiSP 
FE stats */
 
+/* Vendor specific - used for Arm Mali-C55 ISP */
+#define V4L2_META_FMT_MALI_C55_PARAMS  v4l2_fourcc('C', '5', '5', 'P') /* ARM 
Mali-C55 Parameters */
+#define V4L2_META_FMT_MALI_C55_STATS   v4l2_fourcc('C', '5', '5', 'S') /* ARM 
Mali-C55 3A Statistics */
+
 
 /* priv field value to indicates that subsequent fields are valid. */
 #define V4L2_PIX_FMT_PRIV_MAGIC                0xfeedcafe
diff --git a/include/linux/bpf.h b/include/linux/bpf.h
index 936bb1c94c82..22eae247bf35 100644
--- a/include/linux/bpf.h
+++ b/include/linux/bpf.h
@@ -1026,6 +1026,7 @@ enum bpf_map_type {
        BPF_MAP_TYPE_USER_RINGBUF,
        BPF_MAP_TYPE_CGRP_STORAGE,
        BPF_MAP_TYPE_ARENA,
+       BPF_MAP_TYPE_INSN_ARRAY,
        __MAX_BPF_MAP_TYPE
 };
 
@@ -1430,6 +1431,9 @@ enum {
 
 /* Do not translate kernel bpf_arena pointers to user pointers */
        BPF_F_NO_USER_CONV      = (1U << 18),
+
+/* Enable BPF ringbuf overwrite mode */
+       BPF_F_RB_OVERWRITE      = (1U << 19),
 };
 
 /* Flags for BPF_PROG_QUERY. */
@@ -1522,6 +1526,12 @@ union bpf_attr {
                 * If provided, map_flags should have BPF_F_TOKEN_FD flag set.
                 */
                __s32   map_token_fd;
+
+               /* Hash of the program that has exclusive access to the map.
+                */
+               __aligned_u64 excl_prog_hash;
+               /* Size of the passed excl_prog_hash. */
+               __u32 excl_prog_hash_size;
        };
 
        struct { /* anonymous struct used by BPF_MAP_*_ELEM and BPF_MAP_FREEZE 
commands */
@@ -1605,6 +1615,16 @@ union bpf_attr {
                 * continuous.
                 */
                __u32           fd_array_cnt;
+               /* Pointer to a buffer containing the signature of the BPF
+                * program.
+                */
+               __aligned_u64   signature;
+               /* Size of the signature buffer in bytes. */
+               __u32           signature_size;
+               /* ID of the kernel keyring to be used for signature
+                * verification.
+                */
+               __s32           keyring_id;
        };
 
        struct { /* anonymous struct used by BPF_OBJ_* commands */
@@ -4875,7 +4895,7 @@ union bpf_attr {
  *
  *             **-ENOENT** if the bpf_local_storage cannot be found.
  *
- * long bpf_d_path(struct path *path, char *buf, u32 sz)
+ * long bpf_d_path(const struct path *path, char *buf, u32 sz)
  *     Description
  *             Return full path for given **struct path** object, which
  *             needs to be the kernel BTF *path* object. The path is
@@ -5602,7 +5622,7 @@ union bpf_attr {
  *     Return
  *             *sk* if casting is valid, or **NULL** otherwise.
  *
- * long bpf_dynptr_from_mem(void *data, u32 size, u64 flags, struct bpf_dynptr 
*ptr)
+ * long bpf_dynptr_from_mem(void *data, u64 size, u64 flags, struct bpf_dynptr 
*ptr)
  *     Description
  *             Get a dynptr to local memory *data*.
  *
@@ -5645,7 +5665,7 @@ union bpf_attr {
  *     Return
  *             Nothing. Always succeeds.
  *
- * long bpf_dynptr_read(void *dst, u32 len, const struct bpf_dynptr *src, u32 
offset, u64 flags)
+ * long bpf_dynptr_read(void *dst, u64 len, const struct bpf_dynptr *src, u64 
offset, u64 flags)
  *     Description
  *             Read *len* bytes from *src* into *dst*, starting from *offset*
  *             into *src*.
@@ -5655,7 +5675,7 @@ union bpf_attr {
  *             of *src*'s data, -EINVAL if *src* is an invalid dynptr or if
  *             *flags* is not 0.
  *
- * long bpf_dynptr_write(const struct bpf_dynptr *dst, u32 offset, void *src, 
u32 len, u64 flags)
+ * long bpf_dynptr_write(const struct bpf_dynptr *dst, u64 offset, void *src, 
u64 len, u64 flags)
  *     Description
  *             Write *len* bytes from *src* into *dst*, starting from *offset*
  *             into *dst*.
@@ -5676,7 +5696,7 @@ union bpf_attr {
  *             is a read-only dynptr or if *flags* is not correct. For 
skb-type dynptrs,
  *             other errors correspond to errors returned by 
**bpf_skb_store_bytes**\ ().
  *
- * void *bpf_dynptr_data(const struct bpf_dynptr *ptr, u32 offset, u32 len)
+ * void *bpf_dynptr_data(const struct bpf_dynptr *ptr, u64 offset, u64 len)
  *     Description
  *             Get a pointer to the underlying dynptr data.
  *
@@ -6215,6 +6235,7 @@ enum {
        BPF_RB_RING_SIZE = 1,
        BPF_RB_CONS_POS = 2,
        BPF_RB_PROD_POS = 3,
+       BPF_RB_OVERWRITE_POS = 4,
 };
 
 /* BPF ring buffer constants */
@@ -6666,6 +6687,8 @@ struct bpf_map_info {
        __u32 btf_value_type_id;
        __u32 btf_vmlinux_id;
        __u64 map_extra;
+       __aligned_u64 hash;
+       __u32 hash_size;
 } __attribute__((aligned(8)));
 
 struct bpf_btf_info {
@@ -7182,6 +7205,8 @@ enum {
        TCP_BPF_SYN_MAC         = 1007, /* Copy the MAC, IP[46], and TCP header 
*/
        TCP_BPF_SOCK_OPS_CB_FLAGS = 1008, /* Get or Set TCP sock ops flags */
        SK_BPF_CB_FLAGS         = 1009, /* Get or set sock ops flags in socket 
*/
+       SK_BPF_BYPASS_PROT_MEM  = 1010, /* Get or Set sk->sk_bypass_prot_mem */
+
 };
 
 enum {
@@ -7418,6 +7443,10 @@ struct bpf_timer {
        __u64 __opaque[2];
 } __attribute__((aligned(8)));
 
+struct bpf_task_work {
+       __u64 __opaque;
+} __attribute__((aligned(8)));
+
 struct bpf_wq {
        __u64 __opaque[2];
 } __attribute__((aligned(8)));
@@ -7623,4 +7652,24 @@ enum bpf_kfunc_flags {
        BPF_F_PAD_ZEROS = (1ULL << 0),
 };
 
+/*
+ * Values of a BPF_MAP_TYPE_INSN_ARRAY entry must be of this type.
+ *
+ * Before the map is used the orig_off field should point to an
+ * instruction inside the program being loaded. The other fields
+ * must be set to 0.
+ *
+ * After the program is loaded, the xlated_off will be adjusted
+ * by the verifier to point to the index of the original instruction
+ * in the xlated program. If the instruction is deleted, it will
+ * be set to (u32)-1. The jitted_off will be set to the corresponding
+ * offset in the jitted image of the program.
+ */
+struct bpf_insn_array_value {
+       __u32 orig_off;
+       __u32 xlated_off;
+       __u32 jitted_off;
+       __u32 :32;
+};
+
 #endif /* __LINUX_BPF_H__ */
diff --git a/include/linux/fb.h b/include/linux/fb.h
index 33c006d2e352..7c7a88cb8d5d 100644
--- a/include/linux/fb.h
+++ b/include/linux/fb.h
@@ -317,7 +317,7 @@ enum {
 #define FB_VBLANK_HAVE_VCOUNT  0x020   /* the vcount field is valid */
 #define FB_VBLANK_HAVE_HCOUNT  0x040   /* the hcount field is valid */
 #define FB_VBLANK_VSYNCING     0x080   /* currently in a vsync */
-#define FB_VBLANK_HAVE_VSYNC   0x100   /* verical syncs can be detected */
+#define FB_VBLANK_HAVE_VSYNC   0x100   /* vertical syncs can be detected */
 
 struct fb_vblank {
        __u32 flags;                    /* FB_VBLANK flags */
diff --git a/include/linux/media-bus-format.h b/include/linux/media-bus-format.h
index ff62056feed5..6005f033e62c 100644
--- a/include/linux/media-bus-format.h
+++ b/include/linux/media-bus-format.h
@@ -34,7 +34,7 @@
 
 #define MEDIA_BUS_FMT_FIXED                    0x0001
 
-/* RGB - next is       0x1028 */
+/* RGB - next is       0x1029 */
 #define MEDIA_BUS_FMT_RGB444_1X12              0x1016
 #define MEDIA_BUS_FMT_RGB444_2X8_PADHI_BE      0x1001
 #define MEDIA_BUS_FMT_RGB444_2X8_PADHI_LE      0x1002
@@ -74,6 +74,7 @@
 #define MEDIA_BUS_FMT_RGB888_1X36_CPADLO       0x1021
 #define MEDIA_BUS_FMT_RGB121212_1X36           0x1019
 #define MEDIA_BUS_FMT_RGB161616_1X48           0x101a
+#define MEDIA_BUS_FMT_RGB202020_1X60           0x1028
 
 /* YUV (including grey) - next is      0x202f */
 #define MEDIA_BUS_FMT_Y8_1X8                   0x2001
@@ -123,7 +124,7 @@
 #define MEDIA_BUS_FMT_YUV16_1X48               0x202a
 #define MEDIA_BUS_FMT_UYYVYY16_0_5X48          0x202b
 
-/* Bayer - next is     0x3021 */
+/* Bayer - next is     0x3025 */
 #define MEDIA_BUS_FMT_SBGGR8_1X8               0x3001
 #define MEDIA_BUS_FMT_SGBRG8_1X8               0x3013
 #define MEDIA_BUS_FMT_SGRBG8_1X8               0x3002
@@ -156,6 +157,10 @@
 #define MEDIA_BUS_FMT_SGBRG16_1X16             0x301e
 #define MEDIA_BUS_FMT_SGRBG16_1X16             0x301f
 #define MEDIA_BUS_FMT_SRGGB16_1X16             0x3020
+#define MEDIA_BUS_FMT_SBGGR20_1X20             0x3021
+#define MEDIA_BUS_FMT_SGBRG20_1X20             0x3022
+#define MEDIA_BUS_FMT_SGRBG20_1X20             0x3023
+#define MEDIA_BUS_FMT_SRGGB20_1X20             0x3024
 
 /* JPEG compressed formats - next is   0x4002 */
 #define MEDIA_BUS_FMT_JPEG_1X8                 0x4001
diff --git a/include/linux/v4l2-controls.h b/include/linux/v4l2-controls.h
index f6854555f848..f1c59fcafc7b 100644
--- a/include/linux/v4l2-controls.h
+++ b/include/linux/v4l2-controls.h
@@ -230,6 +230,12 @@ enum v4l2_colorfx {
  */
 #define V4L2_CID_USER_RKISP1_BASE              (V4L2_CID_USER_BASE + 0x1220)
 
+/*
+ * The base for the Arm Mali-C55 ISP driver controls.
+ * We reserve 16 controls for this driver
+ */
+#define V4L2_CID_USER_MALI_C55_BASE            (V4L2_CID_USER_BASE + 0x1230)
+
 /* MPEG-class control IDs */
 /* The MPEG controls are applicable to all codec controls
  * and the 'MPEG' part of the define is historical */
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h
index a1f30e038291..4f05936cc2a6 100644
--- a/include/linux/videodev2.h
+++ b/include/linux/videodev2.h
@@ -748,6 +748,7 @@ struct v4l2_pix_format {
 #define V4L2_PIX_FMT_H264_SLICE v4l2_fourcc('S', '2', '6', '4') /* H264 parsed 
slices */
 #define V4L2_PIX_FMT_HEVC_SLICE v4l2_fourcc('S', '2', '6', '5') /* HEVC parsed 
slices */
 #define V4L2_PIX_FMT_AV1_FRAME v4l2_fourcc('A', 'V', '1', 'F') /* AV1 parsed 
frame */
+#define V4L2_PIX_FMT_AV1      v4l2_fourcc('A', 'V', '0', '1') /* AV1 */
 #define V4L2_PIX_FMT_SPK      v4l2_fourcc('S', 'P', 'K', '0') /* Sorenson 
Spark */
 #define V4L2_PIX_FMT_RV30     v4l2_fourcc('R', 'V', '3', '0') /* RealVideo 8 */
 #define V4L2_PIX_FMT_RV40     v4l2_fourcc('R', 'V', '4', '0') /* RealVideo 9 & 
10 */
@@ -857,6 +858,10 @@ struct v4l2_pix_format {
 #define V4L2_META_FMT_RPI_FE_CFG       v4l2_fourcc('R', 'P', 'F', 'C') /* PiSP 
FE configuration */
 #define V4L2_META_FMT_RPI_FE_STATS     v4l2_fourcc('R', 'P', 'F', 'S') /* PiSP 
FE stats */
 
+/* Vendor specific - used for Arm Mali-C55 ISP */
+#define V4L2_META_FMT_MALI_C55_PARAMS  v4l2_fourcc('C', '5', '5', 'P') /* ARM 
Mali-C55 Parameters */
+#define V4L2_META_FMT_MALI_C55_STATS   v4l2_fourcc('C', '5', '5', 'S') /* ARM 
Mali-C55 3A Statistics */
+
 
 /* priv field value to indicates that subsequent fields are valid. */
 #define V4L2_PIX_FMT_PRIV_MAGIC                0xfeedcafe
diff --git a/utils/common/v4l2-pix-formats.h b/utils/common/v4l2-pix-formats.h
index b0a7fe10bd5d..efc31d739443 100644
--- a/utils/common/v4l2-pix-formats.h
+++ b/utils/common/v4l2-pix-formats.h
@@ -200,6 +200,8 @@
        case V4L2_META_FMT_RK_ISP1_EXT_PARAMS: return "Rockchip ISP1 Ext 3A 
Params";
        case V4L2_META_FMT_C3ISP_PARAMS: return "Amlogic C3 ISP Parameters";
        case V4L2_META_FMT_C3ISP_STATS: return "Amlogic C3 ISP Statistics";
+       case V4L2_META_FMT_MALI_C55_PARAMS: return "ARM Mali-C55 ISP 
Parameters";
+       case V4L2_META_FMT_MALI_C55_STATS: return "ARM Mali-C55 ISP 3A 
Statistics";
        case V4L2_PIX_FMT_NV12_8L128: return "NV12 (8x128 Linear)";
        case V4L2_PIX_FMT_NV12M_8L128: return "NV12M (8x128 Linear)";
        case V4L2_PIX_FMT_NV12_10BE_8L128: return "10-bit NV12 (8x128 Linear, 
BE)";
@@ -260,6 +262,7 @@
        case V4L2_PIX_FMT_QC10C: return "QCOM Compressed 10-bit Format";
        case V4L2_PIX_FMT_AJPG: return "Aspeed JPEG";
        case V4L2_PIX_FMT_AV1_FRAME: return "AV1 Frame";
+       case V4L2_PIX_FMT_AV1: return "AV1 OBU Stream";
        case V4L2_PIX_FMT_MT2110T: return "Mediatek 10bit Tile Mode";
        case V4L2_PIX_FMT_MT2110R: return "Mediatek 10bit Raster Mode";
        case V4L2_PIX_FMT_HEXTILE: return "Hextile Compressed Format";
diff --git a/utils/keytable/parse.h b/utils/keytable/parse.h
index 62a482e2a610..ac28d7dc1bcc 100644
--- a/utils/keytable/parse.h
+++ b/utils/keytable/parse.h
@@ -542,6 +542,8 @@ struct parse_event key_events[] = {
        {"KEY_DO_NOT_DISTURB", 0x24f},
        {"KEY_BRIGHTNESS_MIN", 0x250},
        {"KEY_BRIGHTNESS_MAX", 0x251},
+       {"KEY_EPRIVACY_SCREEN_ON", 0x252},
+       {"KEY_EPRIVACY_SCREEN_OFF", 0x253},
        {"KEY_KBDINPUTASSIST_PREV", 0x260},
        {"KEY_KBDINPUTASSIST_NEXT", 0x261},
        {"KEY_KBDINPUTASSIST_PREVGROUP", 0x262},
diff --git a/utils/v4l2-tracer/v4l2-tracer-info-gen.h 
b/utils/v4l2-tracer/v4l2-tracer-info-gen.h
index b54ee579166c..bca4556edbd2 100644
--- a/utils/v4l2-tracer/v4l2-tracer-info-gen.h
+++ b/utils/v4l2-tracer/v4l2-tracer-info-gen.h
@@ -1422,6 +1422,7 @@ constexpr val_def v4l2_pix_fmt_val_def[] = {
        { V4L2_PIX_FMT_H264_SLICE,      "V4L2_PIX_FMT_H264_SLICE" },
        { V4L2_PIX_FMT_HEVC_SLICE,      "V4L2_PIX_FMT_HEVC_SLICE" },
        { V4L2_PIX_FMT_AV1_FRAME,       "V4L2_PIX_FMT_AV1_FRAME" },
+       { V4L2_PIX_FMT_AV1,     "V4L2_PIX_FMT_AV1" },
        { V4L2_PIX_FMT_SPK,     "V4L2_PIX_FMT_SPK" },
        { V4L2_PIX_FMT_RV30,    "V4L2_PIX_FMT_RV30" },
        { V4L2_PIX_FMT_RV40,    "V4L2_PIX_FMT_RV40" },
_______________________________________________
linuxtv-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to