1.. Permission is granted to copy, distribute and/or modify this 2.. document under the terms of the GNU Free Documentation License, 3.. Version 1.1 or any later version published by the Free Software 4.. Foundation, with no Invariant Sections, no Front-Cover Texts 5.. and no Back-Cover Texts. A copy of the license is included at 6.. Documentation/userspace-api/media/fdl-appendix.rst. 7.. 8.. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections 9 10.. _V4L2-PIX-FMT-SRGGB16: 11.. _v4l2-pix-fmt-sbggr16: 12.. _v4l2-pix-fmt-sgbrg16: 13.. _v4l2-pix-fmt-sgrbg16: 14 15 16*************************************************************************************************************************** 17V4L2_PIX_FMT_SRGGB16 ('RG16'), V4L2_PIX_FMT_SGRBG16 ('GR16'), V4L2_PIX_FMT_SGBRG16 ('GB16'), V4L2_PIX_FMT_SBGGR16 ('BYR2'), 18*************************************************************************************************************************** 19 20 2116-bit Bayer formats 22 23 24Description 25=========== 26 27These four pixel formats are raw sRGB / Bayer formats with 16 bits per 28sample. Each sample is stored in a 16-bit word. Each n-pixel row contains 29n/2 green samples and n/2 blue or red samples, with alternating red and blue 30rows. Bytes are stored in memory in little endian order. They are 31conventionally described as GRGR... BGBG..., RGRG... GBGB..., etc. Below is 32an example of a small V4L2_PIX_FMT_SBGGR16 image: 33 34**Byte Order.** 35Each cell is one byte. 36 37.. flat-table:: 38 :header-rows: 0 39 :stub-columns: 0 40 41 * - start + 0: 42 - B\ :sub:`00low` 43 - B\ :sub:`00high` 44 - G\ :sub:`01low` 45 - G\ :sub:`01high` 46 - B\ :sub:`02low` 47 - B\ :sub:`02high` 48 - G\ :sub:`03low` 49 - G\ :sub:`03high` 50 * - start + 8: 51 - G\ :sub:`10low` 52 - G\ :sub:`10high` 53 - R\ :sub:`11low` 54 - R\ :sub:`11high` 55 - G\ :sub:`12low` 56 - G\ :sub:`12high` 57 - R\ :sub:`13low` 58 - R\ :sub:`13high` 59 * - start + 16: 60 - B\ :sub:`20low` 61 - B\ :sub:`20high` 62 - G\ :sub:`21low` 63 - G\ :sub:`21high` 64 - B\ :sub:`22low` 65 - B\ :sub:`22high` 66 - G\ :sub:`23low` 67 - G\ :sub:`23high` 68 * - start + 24: 69 - G\ :sub:`30low` 70 - G\ :sub:`30high` 71 - R\ :sub:`31low` 72 - R\ :sub:`31high` 73 - G\ :sub:`32low` 74 - G\ :sub:`32high` 75 - R\ :sub:`33low` 76 - R\ :sub:`33high` 77