aboutsummaryrefslogtreecommitdiff
path: root/README.chromium
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2023-08-31 10:17:12 -0700
committerlibyuv LUCI CQ <libyuv-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-08-31 18:07:42 +0000
commitf0921806a293e3e008e6325a51d4ea760c39d2c1 (patch)
tree2f47149d6db45e4503553aaf9e95b560211df7a7 /README.chromium
parent6ff369102723dea853b1642649f991d0ca7b292b (diff)
downloadlibyuv-f0921806a293e3e008e6325a51d4ea760c39d2c1.tar.gz
Disable NEON if memory sanitizer is enabled
- MSAN fails on most inline assembly, unaware of what the load and store instructions do. - MSAN is also failing on row_any functions, which memcpy a correct number of pixels into a buffer that is SIMD vector sized, apply SIMD to the full vector, and then memcpy the exact number of resulting pixels to the output buffer. MSAN wants the temporary buffer to be initialized. Which genenerally is done with a memset(buf, 0, sizeof(buf)); to satisify MSAN. - RVV may not require disabling MSAN, since row functions are all 'any' number of elements, and implementation is intrinsics. Bug: b/297979878 Change-Id: Ic21200689c0c7d2c85bb1de3eef38570137d3d8b Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/4832740 Reviewed-by: Mirko Bonadei <mbonadei@chromium.org> Commit-Queue: Frank Barchard <fbarchard@chromium.org> Reviewed-by: Wan-Teh Chang <wtc@google.com>
Diffstat (limited to 'README.chromium')
-rw-r--r--README.chromium2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.chromium b/README.chromium
index 0b9762f5..c68be174 100644
--- a/README.chromium
+++ b/README.chromium
@@ -1,6 +1,6 @@
Name: libyuv
URL: https://chromium.googlesource.com/libyuv/libyuv/
-Version: 1874
+Version: 1875
License: BSD
License File: LICENSE
Shipped: yes