From: Eugene Syromyatnikov Date: Sun, 20 Oct 2019 17:05:16 +0000 (+0200) Subject: xlat: update v4l2_format_description_flags X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c82a4baff27f53b886436f32dc43feb0e9a620e;p=strace xlat: update v4l2_format_description_flags * xlat/v4l2_format_description_flags.in (V4L2_FMT_FLAG_COMPRESSED, V4L2_FMT_FLAG_EMULATED): Add fallback definitions. (V4L2_FMT_FLAG_CONTINUOUS_BYTESTREAM): New constant, introduced by Linux commit v5.4-rc1~145^2~69. (V4L2_FMT_FLAG_DYN_RESOLUTION): New constant, introduced by Linux commit v5.4-rc1~145^2~68. --- diff --git a/xlat/v4l2_format_description_flags.in b/xlat/v4l2_format_description_flags.in index ed5a3d38..487fa745 100644 --- a/xlat/v4l2_format_description_flags.in +++ b/xlat/v4l2_format_description_flags.in @@ -1,2 +1,4 @@ -V4L2_FMT_FLAG_COMPRESSED -V4L2_FMT_FLAG_EMULATED +V4L2_FMT_FLAG_COMPRESSED 0x0001 +V4L2_FMT_FLAG_EMULATED 0x0002 +V4L2_FMT_FLAG_CONTINUOUS_BYTESTREAM 0x0004 +V4L2_FMT_FLAG_DYN_RESOLUTION 0x0008