diff options
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2022-05-09 10:01:14 +0000 |
---|---|---|
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2022-05-09 10:01:14 +0000 |
commit | ee1448019f7f796c2e535d662398390fff044aac (patch) | |
tree | fd16f78ce3e80ad7a580c5222e74f5a309519bb7 | |
parent | 1e2a5b442ed6cbd75ee202c586c4ac98efdbc39b (diff) | |
parent | 0ac6740bd543f72130d7bc11e6baeb64c864f96a (diff) |
Snap for 8559753 from 0ac6740bd543f72130d7bc11e6baeb64c864f96a to t-keystone-qcom-release
Change-Id: I3d612c0e8d34d924bc49c7b6f240041af8d113d3
-rw-r--r-- | libc/kernel/uapi/linux/videodev2.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libc/kernel/uapi/linux/videodev2.h b/libc/kernel/uapi/linux/videodev2.h index 1cae71188..74bd32891 100644 --- a/libc/kernel/uapi/linux/videodev2.h +++ b/libc/kernel/uapi/linux/videodev2.h @@ -24,7 +24,12 @@ #include <linux/types.h> #include <linux/v4l2-common.h> #include <linux/v4l2-controls.h> -#define VIDEO_MAX_FRAME 32 +/* --------------------------------------------------- + * This value manually changed due to b/228783882. + * Next kernel update should keep this value as is. + */ +#define VIDEO_MAX_FRAME 64 +/* --------------------------------------------------- */ #define VIDEO_MAX_PLANES 8 #define v4l2_fourcc(a,b,c,d) ((__u32) (a) | ((__u32) (b) << 8) | ((__u32) (c) << 16) | ((__u32) (d) << 24)) #define v4l2_fourcc_be(a,b,c,d) (v4l2_fourcc(a, b, c, d) | (1U << 31)) |