react-native-vision-camera-spoof-detector 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. package/README.md +442 -442
  2. package/android/.gradle/9.2.0/checksums/checksums.lock +0 -0
  3. package/android/.gradle/9.2.0/fileHashes/fileHashes.bin +0 -0
  4. package/android/.gradle/9.2.0/fileHashes/fileHashes.lock +0 -0
  5. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  6. package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
  7. package/android/build/reports/problems/problems-report.html +659 -0
  8. package/android/build.gradle +12 -4
  9. package/android/src/main/cpp/CMakeLists.txt +101 -94
  10. package/android/src/main/cpp/libyuv/.clang-format +6 -6
  11. package/android/src/main/cpp/libyuv/.gn +40 -40
  12. package/android/src/main/cpp/libyuv/.vpython3 +410 -410
  13. package/android/src/main/cpp/libyuv/AUTHORS +7 -7
  14. package/android/src/main/cpp/libyuv/Android.bp +202 -202
  15. package/android/src/main/cpp/libyuv/Android.mk +106 -106
  16. package/android/src/main/cpp/libyuv/BUILD.gn +490 -490
  17. package/android/src/main/cpp/libyuv/CM_linux_packages.cmake +70 -70
  18. package/android/src/main/cpp/libyuv/CMakeLists.txt +259 -252
  19. package/android/src/main/cpp/libyuv/DEPS +935 -935
  20. package/android/src/main/cpp/libyuv/DIR_METADATA +3 -3
  21. package/android/src/main/cpp/libyuv/LICENSE +29 -29
  22. package/android/src/main/cpp/libyuv/OWNERS +11 -11
  23. package/android/src/main/cpp/libyuv/PATENTS +23 -23
  24. package/android/src/main/cpp/libyuv/PRESUBMIT.py +65 -65
  25. package/android/src/main/cpp/libyuv/README.chromium +11 -11
  26. package/android/src/main/cpp/libyuv/README.md +19 -19
  27. package/android/src/main/cpp/libyuv/build_overrides/build.gni +60 -60
  28. package/android/src/main/cpp/libyuv/build_overrides/gtest.gni +19 -19
  29. package/android/src/main/cpp/libyuv/build_overrides/partition_alloc.gni +17 -17
  30. package/android/src/main/cpp/libyuv/codereview.settings +5 -5
  31. package/android/src/main/cpp/libyuv/docs/deprecated_builds.md +409 -409
  32. package/android/src/main/cpp/libyuv/docs/environment_variables.md +64 -64
  33. package/android/src/main/cpp/libyuv/docs/feature_detection.md +108 -108
  34. package/android/src/main/cpp/libyuv/docs/filtering.md +196 -196
  35. package/android/src/main/cpp/libyuv/docs/formats.md +208 -208
  36. package/android/src/main/cpp/libyuv/docs/getting_started.md +296 -296
  37. package/android/src/main/cpp/libyuv/docs/rotation.md +107 -107
  38. package/android/src/main/cpp/libyuv/download_vs_toolchain.py +29 -29
  39. package/android/src/main/cpp/libyuv/include/libyuv/basic_types.h +68 -68
  40. package/android/src/main/cpp/libyuv/include/libyuv/compare.h +111 -111
  41. package/android/src/main/cpp/libyuv/include/libyuv/compare_row.h +112 -112
  42. package/android/src/main/cpp/libyuv/include/libyuv/convert.h +1117 -1117
  43. package/android/src/main/cpp/libyuv/include/libyuv/convert_argb.h +2335 -2335
  44. package/android/src/main/cpp/libyuv/include/libyuv/convert_from.h +203 -203
  45. package/android/src/main/cpp/libyuv/include/libyuv/convert_from_argb.h +394 -394
  46. package/android/src/main/cpp/libyuv/include/libyuv/cpu_id.h +147 -147
  47. package/android/src/main/cpp/libyuv/include/libyuv/cpu_support.h +99 -99
  48. package/android/src/main/cpp/libyuv/include/libyuv/loongson_intrinsics.h +1949 -1949
  49. package/android/src/main/cpp/libyuv/include/libyuv/mjpeg_decoder.h +195 -195
  50. package/android/src/main/cpp/libyuv/include/libyuv/planar_functions.h +1131 -1131
  51. package/android/src/main/cpp/libyuv/include/libyuv/rotate.h +296 -296
  52. package/android/src/main/cpp/libyuv/include/libyuv/rotate_argb.h +37 -37
  53. package/android/src/main/cpp/libyuv/include/libyuv/rotate_row.h +265 -265
  54. package/android/src/main/cpp/libyuv/include/libyuv/row.h +6738 -6738
  55. package/android/src/main/cpp/libyuv/include/libyuv/row_sve.h +2154 -2154
  56. package/android/src/main/cpp/libyuv/include/libyuv/scale.h +336 -336
  57. package/android/src/main/cpp/libyuv/include/libyuv/scale_argb.h +76 -76
  58. package/android/src/main/cpp/libyuv/include/libyuv/scale_rgb.h +42 -42
  59. package/android/src/main/cpp/libyuv/include/libyuv/scale_row.h +1726 -1726
  60. package/android/src/main/cpp/libyuv/include/libyuv/scale_uv.h +51 -51
  61. package/android/src/main/cpp/libyuv/include/libyuv/version.h +16 -16
  62. package/android/src/main/cpp/libyuv/include/libyuv/video_common.h +222 -222
  63. package/android/src/main/cpp/libyuv/include/libyuv.h +33 -33
  64. package/android/src/main/cpp/libyuv/infra/config/OWNERS +3 -3
  65. package/android/src/main/cpp/libyuv/infra/config/PRESUBMIT.py +17 -17
  66. package/android/src/main/cpp/libyuv/infra/config/README.md +2 -2
  67. package/android/src/main/cpp/libyuv/infra/config/codereview.settings +6 -6
  68. package/android/src/main/cpp/libyuv/infra/config/commit-queue.cfg +144 -144
  69. package/android/src/main/cpp/libyuv/infra/config/cr-buildbucket.cfg +1185 -1185
  70. package/android/src/main/cpp/libyuv/infra/config/luci-logdog.cfg +9 -9
  71. package/android/src/main/cpp/libyuv/infra/config/luci-milo.cfg +246 -246
  72. package/android/src/main/cpp/libyuv/infra/config/luci-scheduler.cfg +385 -385
  73. package/android/src/main/cpp/libyuv/infra/config/main.star +402 -402
  74. package/android/src/main/cpp/libyuv/infra/config/project.cfg +16 -16
  75. package/android/src/main/cpp/libyuv/infra/config/realms.cfg +111 -111
  76. package/android/src/main/cpp/libyuv/libyuv.gni +34 -34
  77. package/android/src/main/cpp/libyuv/libyuv.gyp +149 -149
  78. package/android/src/main/cpp/libyuv/libyuv.gypi +87 -87
  79. package/android/src/main/cpp/libyuv/linux.mk +96 -96
  80. package/android/src/main/cpp/libyuv/public.mk +13 -13
  81. package/android/src/main/cpp/libyuv/pylintrc +49 -49
  82. package/android/src/main/cpp/libyuv/riscv_script/prepare_toolchain_qemu.sh +74 -74
  83. package/android/src/main/cpp/libyuv/riscv_script/riscv-clang.cmake +56 -56
  84. package/android/src/main/cpp/libyuv/riscv_script/run_qemu.sh +15 -15
  85. package/android/src/main/cpp/libyuv/source/compare.cc +435 -435
  86. package/android/src/main/cpp/libyuv/source/compare_common.cc +74 -74
  87. package/android/src/main/cpp/libyuv/source/compare_gcc.cc +362 -362
  88. package/android/src/main/cpp/libyuv/source/compare_neon.cc +96 -96
  89. package/android/src/main/cpp/libyuv/source/compare_neon64.cc +223 -223
  90. package/android/src/main/cpp/libyuv/source/compare_win.cc +241 -241
  91. package/android/src/main/cpp/libyuv/source/convert.cc +4746 -4746
  92. package/android/src/main/cpp/libyuv/source/convert_argb.cc +9179 -9179
  93. package/android/src/main/cpp/libyuv/source/convert_from.cc +866 -866
  94. package/android/src/main/cpp/libyuv/source/convert_from_argb.cc +3671 -3671
  95. package/android/src/main/cpp/libyuv/source/convert_jpeg.cc +602 -602
  96. package/android/src/main/cpp/libyuv/source/convert_to_argb.cc +391 -391
  97. package/android/src/main/cpp/libyuv/source/convert_to_i420.cc +288 -288
  98. package/android/src/main/cpp/libyuv/source/cpu_id.cc +496 -496
  99. package/android/src/main/cpp/libyuv/source/mjpeg_decoder.cc +580 -580
  100. package/android/src/main/cpp/libyuv/source/mjpeg_validate.cc +71 -71
  101. package/android/src/main/cpp/libyuv/source/planar_functions.cc +5663 -5663
  102. package/android/src/main/cpp/libyuv/source/rotate.cc +1241 -1241
  103. package/android/src/main/cpp/libyuv/source/rotate_any.cc +76 -76
  104. package/android/src/main/cpp/libyuv/source/rotate_argb.cc +259 -259
  105. package/android/src/main/cpp/libyuv/source/rotate_common.cc +208 -208
  106. package/android/src/main/cpp/libyuv/source/rotate_gcc.cc +505 -505
  107. package/android/src/main/cpp/libyuv/source/rotate_lsx.cc +233 -233
  108. package/android/src/main/cpp/libyuv/source/rotate_neon.cc +219 -219
  109. package/android/src/main/cpp/libyuv/source/rotate_neon64.cc +273 -273
  110. package/android/src/main/cpp/libyuv/source/rotate_sme.cc +174 -174
  111. package/android/src/main/cpp/libyuv/source/rotate_win.cc +253 -253
  112. package/android/src/main/cpp/libyuv/source/row_any.cc +2519 -2519
  113. package/android/src/main/cpp/libyuv/source/row_common.cc +4461 -4461
  114. package/android/src/main/cpp/libyuv/source/row_gcc.cc +9570 -9570
  115. package/android/src/main/cpp/libyuv/source/row_lasx.cc +2343 -2343
  116. package/android/src/main/cpp/libyuv/source/row_lsx.cc +3030 -3030
  117. package/android/src/main/cpp/libyuv/source/row_neon.cc +4026 -4026
  118. package/android/src/main/cpp/libyuv/source/row_neon64.cc +5617 -5617
  119. package/android/src/main/cpp/libyuv/source/row_rvv.cc +2599 -2599
  120. package/android/src/main/cpp/libyuv/source/row_sme.cc +1183 -1183
  121. package/android/src/main/cpp/libyuv/source/row_sve.cc +1088 -1088
  122. package/android/src/main/cpp/libyuv/source/row_win.cc +6453 -6453
  123. package/android/src/main/cpp/libyuv/source/scale.cc +2710 -2710
  124. package/android/src/main/cpp/libyuv/source/scale_any.cc +991 -991
  125. package/android/src/main/cpp/libyuv/source/scale_argb.cc +1158 -1158
  126. package/android/src/main/cpp/libyuv/source/scale_common.cc +1977 -1977
  127. package/android/src/main/cpp/libyuv/source/scale_gcc.cc +2947 -2947
  128. package/android/src/main/cpp/libyuv/source/scale_lsx.cc +739 -739
  129. package/android/src/main/cpp/libyuv/source/scale_neon.cc +1449 -1449
  130. package/android/src/main/cpp/libyuv/source/scale_neon64.cc +1552 -1552
  131. package/android/src/main/cpp/libyuv/source/scale_rgb.cc +82 -82
  132. package/android/src/main/cpp/libyuv/source/scale_rvv.cc +1971 -1971
  133. package/android/src/main/cpp/libyuv/source/scale_sme.cc +555 -555
  134. package/android/src/main/cpp/libyuv/source/scale_uv.cc +1159 -1159
  135. package/android/src/main/cpp/libyuv/source/scale_win.cc +1392 -1392
  136. package/android/src/main/cpp/libyuv/source/test.sh +35 -35
  137. package/android/src/main/cpp/libyuv/source/video_common.cc +62 -62
  138. package/android/src/main/cpp/libyuv/tools_libyuv/OWNERS +4 -4
  139. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/roll_deps.py +931 -931
  140. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/roll_deps_test.py +164 -164
  141. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS +21 -21
  142. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium.new +13 -13
  143. package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium.old +13 -13
  144. package/android/src/main/cpp/libyuv/tools_libyuv/get_landmines.py +38 -38
  145. package/android/src/main/cpp/libyuv/tools_libyuv/msan/OWNERS +3 -3
  146. package/android/src/main/cpp/libyuv/tools_libyuv/msan/blacklist.txt +9 -9
  147. package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/OWNERS +3 -3
  148. package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/blacklist.txt +15 -15
  149. package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/vptr_blacklist.txt +25 -25
  150. package/android/src/main/cpp/libyuv/unit_test/basictypes_test.cc +43 -43
  151. package/android/src/main/cpp/libyuv/unit_test/color_test.cc +848 -848
  152. package/android/src/main/cpp/libyuv/unit_test/compare_test.cc +739 -739
  153. package/android/src/main/cpp/libyuv/unit_test/convert_argb_test.cc +2867 -2867
  154. package/android/src/main/cpp/libyuv/unit_test/convert_test.cc +2133 -2133
  155. package/android/src/main/cpp/libyuv/unit_test/cpu_test.cc +427 -427
  156. package/android/src/main/cpp/libyuv/unit_test/cpu_thread_test.cc +63 -63
  157. package/android/src/main/cpp/libyuv/unit_test/math_test.cc +160 -160
  158. package/android/src/main/cpp/libyuv/unit_test/planar_test.cc +4731 -4731
  159. package/android/src/main/cpp/libyuv/unit_test/rotate_argb_test.cc +334 -334
  160. package/android/src/main/cpp/libyuv/unit_test/rotate_test.cc +962 -962
  161. package/android/src/main/cpp/libyuv/unit_test/scale_argb_test.cc +590 -590
  162. package/android/src/main/cpp/libyuv/unit_test/scale_plane_test.cc +465 -465
  163. package/android/src/main/cpp/libyuv/unit_test/scale_rgb_test.cc +280 -280
  164. package/android/src/main/cpp/libyuv/unit_test/scale_test.cc +1135 -1135
  165. package/android/src/main/cpp/libyuv/unit_test/scale_uv_test.cc +249 -249
  166. package/android/src/main/cpp/libyuv/unit_test/testdata/arm_v7.txt +12 -12
  167. package/android/src/main/cpp/libyuv/unit_test/testdata/mips.txt +7 -7
  168. package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson2k.txt +5 -5
  169. package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson3.txt +10 -10
  170. package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson_mmi.txt +7 -7
  171. package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64.txt +3 -3
  172. package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64_rvv.txt +3 -3
  173. package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64_rvv_zvfh.txt +3 -3
  174. package/android/src/main/cpp/libyuv/unit_test/testdata/tegra3.txt +23 -23
  175. package/android/src/main/cpp/libyuv/unit_test/unit_test.cc +581 -581
  176. package/android/src/main/cpp/libyuv/unit_test/unit_test.h +232 -232
  177. package/android/src/main/cpp/libyuv/unit_test/video_common_test.cc +112 -112
  178. package/android/src/main/cpp/libyuv/util/Makefile +9 -9
  179. package/android/src/main/cpp/libyuv/util/color.cc +120 -120
  180. package/android/src/main/cpp/libyuv/util/compare.cc +67 -67
  181. package/android/src/main/cpp/libyuv/util/cpuid.c +211 -211
  182. package/android/src/main/cpp/libyuv/util/i444tonv12_eg.cc +27 -27
  183. package/android/src/main/cpp/libyuv/util/psnr.cc +291 -291
  184. package/android/src/main/cpp/libyuv/util/psnr.h +47 -47
  185. package/android/src/main/cpp/libyuv/util/psnr_main.cc +620 -620
  186. package/android/src/main/cpp/libyuv/util/ssim.cc +364 -364
  187. package/android/src/main/cpp/libyuv/util/ssim.h +38 -38
  188. package/android/src/main/cpp/libyuv/util/yuvconstants.c +114 -114
  189. package/android/src/main/cpp/libyuv/util/yuvconvert.cc +367 -367
  190. package/android/src/main/cpp/libyuv/winarm.mk +47 -47
  191. package/index.js +17 -1
  192. package/ios/FaceAntiSpoofFrameProcessor.swift +283 -0
  193. package/ios/FaceAntiSpoofJSI.h +12 -0
  194. package/ios/FaceAntiSpoofJSI.mm +92 -0
  195. package/ios/FaceAntiSpoofManager.swift +63 -0
  196. package/ios/FaceAntiSpoofModule.m +191 -0
  197. package/ios/FaceAntiSpoofPluginRegister.m +42 -0
  198. package/ios/models/FaceAntiSpoofing.tflite +0 -0
  199. package/ios/models/model_spec.json +16 -0
  200. package/package.json +87 -86
  201. package/.gitignore +0 -27
  202. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  203. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  204. package/android/.gradle/8.9/gc.properties +0 -0
  205. /package/android/.gradle/{8.9 → 9.2.0}/fileChanges/last-build.bin +0 -0
  206. /package/android/.gradle/{8.9/dependencies-accessors → 9.2.0}/gc.properties +0 -0
@@ -1,208 +1,208 @@
1
- # Introduction
2
-
3
- Formats (FOURCC) supported by libyuv are detailed here.
4
-
5
- # Core Formats
6
-
7
- There are 2 core formats supported by libyuv - I420 and ARGB.
8
- All YUV formats can be converted to/from I420.
9
- All RGB formats can be converted to/from ARGB.
10
-
11
- Filtering functions such as scaling and planar functions work on I420 and/or ARGB.
12
-
13
- # OSX Core Media Pixel Formats
14
-
15
- This is how OSX formats map to libyuv
16
-
17
- enum {
18
- kCMPixelFormat_32ARGB = 32, FOURCC_BGRA
19
- kCMPixelFormat_32BGRA = 'BGRA', FOURCC_ARGB
20
- kCMPixelFormat_24RGB = 24, FOURCC_RAW
21
- kCMPixelFormat_16BE555 = 16, Not supported.
22
- kCMPixelFormat_16BE565 = 'B565', Not supported.
23
- kCMPixelFormat_16LE555 = 'L555', FOURCC_RGBO
24
- kCMPixelFormat_16LE565 = 'L565', FOURCC_RGBP
25
- kCMPixelFormat_16LE5551 = '5551', FOURCC_RGBO
26
- kCMPixelFormat_422YpCbCr8 = '2vuy', FOURCC_UYVY
27
- kCMPixelFormat_422YpCbCr8_yuvs = 'yuvs', FOURCC_YUY2
28
- kCMPixelFormat_444YpCbCr8 = 'v308', FOURCC_I444 ?
29
- kCMPixelFormat_4444YpCbCrA8 = 'v408', Not supported.
30
- kCMPixelFormat_422YpCbCr16 = 'v216', Not supported.
31
- kCMPixelFormat_422YpCbCr10 = 'v210', FOURCC_V210 previously. Removed now.
32
- kCMPixelFormat_444YpCbCr10 = 'v410', Not supported.
33
- kCMPixelFormat_8IndexedGray_WhiteIsZero = 0x00000028, Not supported.
34
- };
35
-
36
-
37
- # FOURCC (Four Charactacter Code) List
38
-
39
- The following is extracted from video_common.h as a complete list of formats supported by libyuv.
40
- enum FourCC {
41
- // 10 Primary YUV formats: 5 planar, 2 biplanar, 2 packed.
42
- FOURCC_I420 = FOURCC('I', '4', '2', '0'),
43
- FOURCC_I422 = FOURCC('I', '4', '2', '2'),
44
- FOURCC_I444 = FOURCC('I', '4', '4', '4'),
45
- FOURCC_I400 = FOURCC('I', '4', '0', '0'),
46
- FOURCC_NV21 = FOURCC('N', 'V', '2', '1'),
47
- FOURCC_NV12 = FOURCC('N', 'V', '1', '2'),
48
- FOURCC_YUY2 = FOURCC('Y', 'U', 'Y', '2'),
49
- FOURCC_UYVY = FOURCC('U', 'Y', 'V', 'Y'),
50
- FOURCC_H010 = FOURCC('H', '0', '1', '0'), // unofficial fourcc. 10 bit lsb
51
- FOURCC_U010 = FOURCC('U', '0', '1', '0'), // bt.2020, unofficial fourcc.
52
- // 10 bit lsb
53
-
54
- // 1 Secondary YUV format: row biplanar.
55
- FOURCC_M420 = FOURCC('M', '4', '2', '0'), // deprecated.
56
-
57
- // 13 Primary RGB formats: 4 32 bpp, 2 24 bpp, 3 16 bpp, 1 10 bpc, 2 64 bpp
58
- FOURCC_ARGB = FOURCC('A', 'R', 'G', 'B'),
59
- FOURCC_BGRA = FOURCC('B', 'G', 'R', 'A'),
60
- FOURCC_ABGR = FOURCC('A', 'B', 'G', 'R'),
61
- FOURCC_AR30 = FOURCC('A', 'R', '3', '0'), // 10 bit per channel. 2101010.
62
- FOURCC_AB30 = FOURCC('A', 'B', '3', '0'), // ABGR version of 10 bit
63
- FOURCC_AR64 = FOURCC('A', 'R', '6', '4'), // 16 bit per channel.
64
- FOURCC_AB64 = FOURCC('A', 'B', '6', '4'), // ABGR version of 16 bit
65
- FOURCC_24BG = FOURCC('2', '4', 'B', 'G'),
66
- FOURCC_RAW = FOURCC('r', 'a', 'w', ' '),
67
- FOURCC_RGBA = FOURCC('R', 'G', 'B', 'A'),
68
- FOURCC_RGBP = FOURCC('R', 'G', 'B', 'P'), // rgb565 LE.
69
- FOURCC_RGBO = FOURCC('R', 'G', 'B', 'O'), // argb1555 LE.
70
- FOURCC_R444 = FOURCC('R', '4', '4', '4'), // argb4444 LE.
71
-
72
- // 1 Primary Compressed YUV format.
73
- FOURCC_MJPG = FOURCC('M', 'J', 'P', 'G'),
74
-
75
- // 11 Auxiliary YUV variations: 3 with U and V planes are swapped, 1 Alias.
76
- FOURCC_YV12 = FOURCC('Y', 'V', '1', '2'),
77
- FOURCC_YV16 = FOURCC('Y', 'V', '1', '6'),
78
- FOURCC_YV24 = FOURCC('Y', 'V', '2', '4'),
79
- FOURCC_YU12 = FOURCC('Y', 'U', '1', '2'), // Linux version of I420.
80
- FOURCC_J420 = FOURCC('J', '4', '2', '0'),
81
- FOURCC_J400 = FOURCC('J', '4', '0', '0'), // unofficial fourcc
82
- FOURCC_H420 = FOURCC('H', '4', '2', '0'), // unofficial fourcc
83
- FOURCC_H422 = FOURCC('H', '4', '2', '2'), // unofficial fourcc
84
- FOURCC_U420 = FOURCC('U', '4', '2', '0'), // bt.2020, unofficial fourcc
85
- FOURCC_U422 = FOURCC('U', '4', '2', '2'), // bt.2020, unofficial fourcc
86
- FOURCC_U444 = FOURCC('U', '4', '4', '4'), // bt.2020, unofficial fourcc
87
-
88
- // 14 Auxiliary aliases. CanonicalFourCC() maps these to canonical fourcc.
89
- FOURCC_IYUV = FOURCC('I', 'Y', 'U', 'V'), // Alias for I420.
90
- FOURCC_YU16 = FOURCC('Y', 'U', '1', '6'), // Alias for I422.
91
- FOURCC_YU24 = FOURCC('Y', 'U', '2', '4'), // Alias for I444.
92
- FOURCC_YUYV = FOURCC('Y', 'U', 'Y', 'V'), // Alias for YUY2.
93
- FOURCC_YUVS = FOURCC('y', 'u', 'v', 's'), // Alias for YUY2 on Mac.
94
- FOURCC_HDYC = FOURCC('H', 'D', 'Y', 'C'), // Alias for UYVY.
95
- FOURCC_2VUY = FOURCC('2', 'v', 'u', 'y'), // Alias for UYVY on Mac.
96
- FOURCC_JPEG = FOURCC('J', 'P', 'E', 'G'), // Alias for MJPG.
97
- FOURCC_DMB1 = FOURCC('d', 'm', 'b', '1'), // Alias for MJPG on Mac.
98
- FOURCC_BA81 = FOURCC('B', 'A', '8', '1'), // Alias for BGGR.
99
- FOURCC_RGB3 = FOURCC('R', 'G', 'B', '3'), // Alias for RAW.
100
- FOURCC_BGR3 = FOURCC('B', 'G', 'R', '3'), // Alias for 24BG.
101
- FOURCC_CM32 = FOURCC(0, 0, 0, 32), // Alias for BGRA kCMPixelFormat_32ARGB
102
- FOURCC_CM24 = FOURCC(0, 0, 0, 24), // Alias for RAW kCMPixelFormat_24RGB
103
- FOURCC_L555 = FOURCC('L', '5', '5', '5'), // Alias for RGBO.
104
- FOURCC_L565 = FOURCC('L', '5', '6', '5'), // Alias for RGBP.
105
- FOURCC_5551 = FOURCC('5', '5', '5', '1'), // Alias for RGBO.
106
-
107
- # Planar YUV
108
- The following formats contains a full size Y plane followed by 1 or 2
109
- planes for UV: I420, I422, I444, I400, NV21, NV12, I400
110
- The size (subsampling) of the UV varies.
111
- I420, NV12 and NV21 are half width, half height
112
- I422, NV16 and NV61 are half width, full height
113
- I444, NV24 and NV42 are full width, full height
114
- I400 and J400 have no chroma channel.
115
-
116
- # Color space
117
- The YUV formats start with a letter to specify the color space. e.g. I420
118
- I = BT.601 limited range
119
- J = BT.601 full range (J = JPEG that uses this)
120
- H = BT.709 limited range (H for HD)
121
- F = BT.709 full range (F for Full range)
122
- U = BT.2020 limited range (U for UHD)
123
- V = BT.2020 full range
124
- For YUV to RGB conversions, a matrix can be passed. See also convert_argh.h
125
-
126
- # HDR formats
127
- Planar formats with 10 or 12 bits use the following fourcc:
128
- I010, I012, P010, P012 are half width, half height
129
- I210, I212, P210, P212 are half width, full height
130
- I410, I412, P410, P412 are full width, full height
131
- where
132
- I is the color space (see above) and 3 planes: Y, U and V.
133
- P is a biplanar format, similar to NV12 but 16 bits, with the valid bits in the high bits. There is a Y plane and a UV plane.
134
- 0, 2 or 4 is the last digit of subsampling: 4:2:0, 4:2:2, or 4:4:4
135
- 10 or 12 is the bits per channel. The bits are in the low bits of a 16 bit channel.
136
-
137
- # The ARGB FOURCC
138
-
139
- There are 4 ARGB layouts - ARGB, BGRA, ABGR and RGBA. ARGB is most common by far, used for screen formats, and windows webcam drivers.
140
-
141
- The fourcc describes the order of channels in a ***register***.
142
-
143
- A fourcc provided by capturer, can be thought of string, e.g. "ARGB".
144
-
145
- On little endian machines, as an int, this would have 'A' in the lowest byte. The FOURCC macro reverses the order:
146
-
147
- #define FOURCC(a, b, c, d) (((uint32)(a)) | ((uint32)(b) << 8) | ((uint32)(c) << 16) | ((uint32)(d) << 24))
148
-
149
- So the "ARGB" string, read as an uint32, is
150
-
151
- FOURCC_ARGB = FOURCC('A', 'R', 'G', 'B')
152
-
153
- If you were to read ARGB pixels as uint32's, the alpha would be in the high byte, and the blue in the lowest byte. In memory, these are stored little endian, so 'B' is first, then 'G', 'R' and 'A' last.
154
-
155
- When calling conversion functions, the names match the FOURCC, so in this case it would be I420ToARGB().
156
-
157
- All formats can be converted to/from ARGB.
158
-
159
- Most 'planar_functions' work on ARGB (e.g. ARGBBlend).
160
-
161
- Some are channel order agnostic (e.g. ARGBScale).
162
-
163
- Some functions are symmetric (e.g. ARGBToBGRA is the same as BGRAToARGB, so its a macro).
164
-
165
- ARGBBlend expects preattenuated ARGB. The R,G,B are premultiplied by alpha. Other functions don't care.
166
-
167
- # RGB24 and RAW
168
-
169
- There are 2 RGB layouts - RGB24 (aka 24BG) and RAW
170
-
171
- RGB24 is B,G,R in memory
172
- RAW is R,G,B in memory
173
-
174
- # AR30 and XR30
175
-
176
- AR30 is 2 10 10 10 ARGB stored in little endian order.
177
- The 2 bit alpha has 4 values. Here are the comparable 8 bit alpha values.
178
- 0 - 0. 00000000b = 0x00 = 0
179
- 1 - 33%. 01010101b = 0x55 = 85
180
- 2 - 66%. 10101010b = 0xaa = 170
181
- 3 - 100%. 11111111b = 0xff = 255
182
- The 10 bit RGB values range from 0 to 1023.
183
- XR30 is the same as AR30 but with no alpha channel.
184
-
185
- # AB64 and AR64
186
-
187
- AB64 is similar to ABGR, with 16 bit (2 bytes) per channel. Each channel stores an unsigned short.
188
- In memory R is the lowest and A is the highest.
189
- Each channel has value ranges from 0 to 65535.
190
- AR64 is similar to ARGB.
191
-
192
- # NV12 and NV21
193
-
194
- NV12 is a biplanar format with a full sized Y plane followed by a single
195
- chroma plane with weaved U and V values.
196
- NV21 is the same but with weaved V and U values.
197
- The 12 in NV12 refers to 12 bits per pixel. NV12 has a half width and half
198
- height chroma channel, and therefore is a 420 subsampling.
199
- NV16 is 16 bits per pixel, with half width and full height. aka 422.
200
- NV24 is 24 bits per pixel with full sized chroma channel. aka 444.
201
- Most NV12 functions allow the destination Y pointer to be NULL.
202
-
203
- # YUY2 and UYVY
204
-
205
- YUY2 is a packed YUV format with half width, full height.
206
-
207
- YUY2 is YUYV in memory
208
- UYVY is UYVY in memory
1
+ # Introduction
2
+
3
+ Formats (FOURCC) supported by libyuv are detailed here.
4
+
5
+ # Core Formats
6
+
7
+ There are 2 core formats supported by libyuv - I420 and ARGB.
8
+ All YUV formats can be converted to/from I420.
9
+ All RGB formats can be converted to/from ARGB.
10
+
11
+ Filtering functions such as scaling and planar functions work on I420 and/or ARGB.
12
+
13
+ # OSX Core Media Pixel Formats
14
+
15
+ This is how OSX formats map to libyuv
16
+
17
+ enum {
18
+ kCMPixelFormat_32ARGB = 32, FOURCC_BGRA
19
+ kCMPixelFormat_32BGRA = 'BGRA', FOURCC_ARGB
20
+ kCMPixelFormat_24RGB = 24, FOURCC_RAW
21
+ kCMPixelFormat_16BE555 = 16, Not supported.
22
+ kCMPixelFormat_16BE565 = 'B565', Not supported.
23
+ kCMPixelFormat_16LE555 = 'L555', FOURCC_RGBO
24
+ kCMPixelFormat_16LE565 = 'L565', FOURCC_RGBP
25
+ kCMPixelFormat_16LE5551 = '5551', FOURCC_RGBO
26
+ kCMPixelFormat_422YpCbCr8 = '2vuy', FOURCC_UYVY
27
+ kCMPixelFormat_422YpCbCr8_yuvs = 'yuvs', FOURCC_YUY2
28
+ kCMPixelFormat_444YpCbCr8 = 'v308', FOURCC_I444 ?
29
+ kCMPixelFormat_4444YpCbCrA8 = 'v408', Not supported.
30
+ kCMPixelFormat_422YpCbCr16 = 'v216', Not supported.
31
+ kCMPixelFormat_422YpCbCr10 = 'v210', FOURCC_V210 previously. Removed now.
32
+ kCMPixelFormat_444YpCbCr10 = 'v410', Not supported.
33
+ kCMPixelFormat_8IndexedGray_WhiteIsZero = 0x00000028, Not supported.
34
+ };
35
+
36
+
37
+ # FOURCC (Four Charactacter Code) List
38
+
39
+ The following is extracted from video_common.h as a complete list of formats supported by libyuv.
40
+ enum FourCC {
41
+ // 10 Primary YUV formats: 5 planar, 2 biplanar, 2 packed.
42
+ FOURCC_I420 = FOURCC('I', '4', '2', '0'),
43
+ FOURCC_I422 = FOURCC('I', '4', '2', '2'),
44
+ FOURCC_I444 = FOURCC('I', '4', '4', '4'),
45
+ FOURCC_I400 = FOURCC('I', '4', '0', '0'),
46
+ FOURCC_NV21 = FOURCC('N', 'V', '2', '1'),
47
+ FOURCC_NV12 = FOURCC('N', 'V', '1', '2'),
48
+ FOURCC_YUY2 = FOURCC('Y', 'U', 'Y', '2'),
49
+ FOURCC_UYVY = FOURCC('U', 'Y', 'V', 'Y'),
50
+ FOURCC_H010 = FOURCC('H', '0', '1', '0'), // unofficial fourcc. 10 bit lsb
51
+ FOURCC_U010 = FOURCC('U', '0', '1', '0'), // bt.2020, unofficial fourcc.
52
+ // 10 bit lsb
53
+
54
+ // 1 Secondary YUV format: row biplanar.
55
+ FOURCC_M420 = FOURCC('M', '4', '2', '0'), // deprecated.
56
+
57
+ // 13 Primary RGB formats: 4 32 bpp, 2 24 bpp, 3 16 bpp, 1 10 bpc, 2 64 bpp
58
+ FOURCC_ARGB = FOURCC('A', 'R', 'G', 'B'),
59
+ FOURCC_BGRA = FOURCC('B', 'G', 'R', 'A'),
60
+ FOURCC_ABGR = FOURCC('A', 'B', 'G', 'R'),
61
+ FOURCC_AR30 = FOURCC('A', 'R', '3', '0'), // 10 bit per channel. 2101010.
62
+ FOURCC_AB30 = FOURCC('A', 'B', '3', '0'), // ABGR version of 10 bit
63
+ FOURCC_AR64 = FOURCC('A', 'R', '6', '4'), // 16 bit per channel.
64
+ FOURCC_AB64 = FOURCC('A', 'B', '6', '4'), // ABGR version of 16 bit
65
+ FOURCC_24BG = FOURCC('2', '4', 'B', 'G'),
66
+ FOURCC_RAW = FOURCC('r', 'a', 'w', ' '),
67
+ FOURCC_RGBA = FOURCC('R', 'G', 'B', 'A'),
68
+ FOURCC_RGBP = FOURCC('R', 'G', 'B', 'P'), // rgb565 LE.
69
+ FOURCC_RGBO = FOURCC('R', 'G', 'B', 'O'), // argb1555 LE.
70
+ FOURCC_R444 = FOURCC('R', '4', '4', '4'), // argb4444 LE.
71
+
72
+ // 1 Primary Compressed YUV format.
73
+ FOURCC_MJPG = FOURCC('M', 'J', 'P', 'G'),
74
+
75
+ // 11 Auxiliary YUV variations: 3 with U and V planes are swapped, 1 Alias.
76
+ FOURCC_YV12 = FOURCC('Y', 'V', '1', '2'),
77
+ FOURCC_YV16 = FOURCC('Y', 'V', '1', '6'),
78
+ FOURCC_YV24 = FOURCC('Y', 'V', '2', '4'),
79
+ FOURCC_YU12 = FOURCC('Y', 'U', '1', '2'), // Linux version of I420.
80
+ FOURCC_J420 = FOURCC('J', '4', '2', '0'),
81
+ FOURCC_J400 = FOURCC('J', '4', '0', '0'), // unofficial fourcc
82
+ FOURCC_H420 = FOURCC('H', '4', '2', '0'), // unofficial fourcc
83
+ FOURCC_H422 = FOURCC('H', '4', '2', '2'), // unofficial fourcc
84
+ FOURCC_U420 = FOURCC('U', '4', '2', '0'), // bt.2020, unofficial fourcc
85
+ FOURCC_U422 = FOURCC('U', '4', '2', '2'), // bt.2020, unofficial fourcc
86
+ FOURCC_U444 = FOURCC('U', '4', '4', '4'), // bt.2020, unofficial fourcc
87
+
88
+ // 14 Auxiliary aliases. CanonicalFourCC() maps these to canonical fourcc.
89
+ FOURCC_IYUV = FOURCC('I', 'Y', 'U', 'V'), // Alias for I420.
90
+ FOURCC_YU16 = FOURCC('Y', 'U', '1', '6'), // Alias for I422.
91
+ FOURCC_YU24 = FOURCC('Y', 'U', '2', '4'), // Alias for I444.
92
+ FOURCC_YUYV = FOURCC('Y', 'U', 'Y', 'V'), // Alias for YUY2.
93
+ FOURCC_YUVS = FOURCC('y', 'u', 'v', 's'), // Alias for YUY2 on Mac.
94
+ FOURCC_HDYC = FOURCC('H', 'D', 'Y', 'C'), // Alias for UYVY.
95
+ FOURCC_2VUY = FOURCC('2', 'v', 'u', 'y'), // Alias for UYVY on Mac.
96
+ FOURCC_JPEG = FOURCC('J', 'P', 'E', 'G'), // Alias for MJPG.
97
+ FOURCC_DMB1 = FOURCC('d', 'm', 'b', '1'), // Alias for MJPG on Mac.
98
+ FOURCC_BA81 = FOURCC('B', 'A', '8', '1'), // Alias for BGGR.
99
+ FOURCC_RGB3 = FOURCC('R', 'G', 'B', '3'), // Alias for RAW.
100
+ FOURCC_BGR3 = FOURCC('B', 'G', 'R', '3'), // Alias for 24BG.
101
+ FOURCC_CM32 = FOURCC(0, 0, 0, 32), // Alias for BGRA kCMPixelFormat_32ARGB
102
+ FOURCC_CM24 = FOURCC(0, 0, 0, 24), // Alias for RAW kCMPixelFormat_24RGB
103
+ FOURCC_L555 = FOURCC('L', '5', '5', '5'), // Alias for RGBO.
104
+ FOURCC_L565 = FOURCC('L', '5', '6', '5'), // Alias for RGBP.
105
+ FOURCC_5551 = FOURCC('5', '5', '5', '1'), // Alias for RGBO.
106
+
107
+ # Planar YUV
108
+ The following formats contains a full size Y plane followed by 1 or 2
109
+ planes for UV: I420, I422, I444, I400, NV21, NV12, I400
110
+ The size (subsampling) of the UV varies.
111
+ I420, NV12 and NV21 are half width, half height
112
+ I422, NV16 and NV61 are half width, full height
113
+ I444, NV24 and NV42 are full width, full height
114
+ I400 and J400 have no chroma channel.
115
+
116
+ # Color space
117
+ The YUV formats start with a letter to specify the color space. e.g. I420
118
+ I = BT.601 limited range
119
+ J = BT.601 full range (J = JPEG that uses this)
120
+ H = BT.709 limited range (H for HD)
121
+ F = BT.709 full range (F for Full range)
122
+ U = BT.2020 limited range (U for UHD)
123
+ V = BT.2020 full range
124
+ For YUV to RGB conversions, a matrix can be passed. See also convert_argh.h
125
+
126
+ # HDR formats
127
+ Planar formats with 10 or 12 bits use the following fourcc:
128
+ I010, I012, P010, P012 are half width, half height
129
+ I210, I212, P210, P212 are half width, full height
130
+ I410, I412, P410, P412 are full width, full height
131
+ where
132
+ I is the color space (see above) and 3 planes: Y, U and V.
133
+ P is a biplanar format, similar to NV12 but 16 bits, with the valid bits in the high bits. There is a Y plane and a UV plane.
134
+ 0, 2 or 4 is the last digit of subsampling: 4:2:0, 4:2:2, or 4:4:4
135
+ 10 or 12 is the bits per channel. The bits are in the low bits of a 16 bit channel.
136
+
137
+ # The ARGB FOURCC
138
+
139
+ There are 4 ARGB layouts - ARGB, BGRA, ABGR and RGBA. ARGB is most common by far, used for screen formats, and windows webcam drivers.
140
+
141
+ The fourcc describes the order of channels in a ***register***.
142
+
143
+ A fourcc provided by capturer, can be thought of string, e.g. "ARGB".
144
+
145
+ On little endian machines, as an int, this would have 'A' in the lowest byte. The FOURCC macro reverses the order:
146
+
147
+ #define FOURCC(a, b, c, d) (((uint32)(a)) | ((uint32)(b) << 8) | ((uint32)(c) << 16) | ((uint32)(d) << 24))
148
+
149
+ So the "ARGB" string, read as an uint32, is
150
+
151
+ FOURCC_ARGB = FOURCC('A', 'R', 'G', 'B')
152
+
153
+ If you were to read ARGB pixels as uint32's, the alpha would be in the high byte, and the blue in the lowest byte. In memory, these are stored little endian, so 'B' is first, then 'G', 'R' and 'A' last.
154
+
155
+ When calling conversion functions, the names match the FOURCC, so in this case it would be I420ToARGB().
156
+
157
+ All formats can be converted to/from ARGB.
158
+
159
+ Most 'planar_functions' work on ARGB (e.g. ARGBBlend).
160
+
161
+ Some are channel order agnostic (e.g. ARGBScale).
162
+
163
+ Some functions are symmetric (e.g. ARGBToBGRA is the same as BGRAToARGB, so its a macro).
164
+
165
+ ARGBBlend expects preattenuated ARGB. The R,G,B are premultiplied by alpha. Other functions don't care.
166
+
167
+ # RGB24 and RAW
168
+
169
+ There are 2 RGB layouts - RGB24 (aka 24BG) and RAW
170
+
171
+ RGB24 is B,G,R in memory
172
+ RAW is R,G,B in memory
173
+
174
+ # AR30 and XR30
175
+
176
+ AR30 is 2 10 10 10 ARGB stored in little endian order.
177
+ The 2 bit alpha has 4 values. Here are the comparable 8 bit alpha values.
178
+ 0 - 0. 00000000b = 0x00 = 0
179
+ 1 - 33%. 01010101b = 0x55 = 85
180
+ 2 - 66%. 10101010b = 0xaa = 170
181
+ 3 - 100%. 11111111b = 0xff = 255
182
+ The 10 bit RGB values range from 0 to 1023.
183
+ XR30 is the same as AR30 but with no alpha channel.
184
+
185
+ # AB64 and AR64
186
+
187
+ AB64 is similar to ABGR, with 16 bit (2 bytes) per channel. Each channel stores an unsigned short.
188
+ In memory R is the lowest and A is the highest.
189
+ Each channel has value ranges from 0 to 65535.
190
+ AR64 is similar to ARGB.
191
+
192
+ # NV12 and NV21
193
+
194
+ NV12 is a biplanar format with a full sized Y plane followed by a single
195
+ chroma plane with weaved U and V values.
196
+ NV21 is the same but with weaved V and U values.
197
+ The 12 in NV12 refers to 12 bits per pixel. NV12 has a half width and half
198
+ height chroma channel, and therefore is a 420 subsampling.
199
+ NV16 is 16 bits per pixel, with half width and full height. aka 422.
200
+ NV24 is 24 bits per pixel with full sized chroma channel. aka 444.
201
+ Most NV12 functions allow the destination Y pointer to be NULL.
202
+
203
+ # YUY2 and UYVY
204
+
205
+ YUY2 is a packed YUV format with half width, full height.
206
+
207
+ YUY2 is YUYV in memory
208
+ UYVY is UYVY in memory