mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-11 22:19:56 +08:00
This reverts commit 724dbeba6c2397d99ee30542d80db1ea16d209ee. Reason for revert: bots remain red after revert. Original change's description: > Revert "Fixing libyuv gn check." > > This reverts commit b625f7b932fb93b877e603a1addcf613a5a0c3eb. > > Reason for revert: ios builds broke shortly after this CL, so trying a revert to get builds back to green. > > Original change's description: > > Fixing libyuv gn check. > > > > Starting from [1], GN is able to ensure that the inclusion or headers > > with relative paths is matched by a GN dependency. > > > > This CL fixes the libyuv build graph according to GN. > > > > [1] - https://chromium-review.googlesource.com/c/chromium/src/+/827014 > > > > Bug: webrtc:8850 > > Change-Id: I7e0f9a8bd1ae2d205213dc75bf322be587efd1f5 > > Reviewed-on: https://chromium-review.googlesource.com/903843 > > Reviewed-by: Frank Barchard <fbarchard@chromium.org> > > Commit-Queue: Frank Barchard <fbarchard@chromium.org> > > TBR=fbarchard@chromium.org,mbonadei@chromium.org > > # Not skipping CQ checks because original CL landed > 1 day ago. > > Bug: webrtc:8850 > Change-Id: I8585de252bd83e2c628a37b0a0d5324ed961209e > Reviewed-on: https://chromium-review.googlesource.com/912178 > Reviewed-by: Frank Barchard <fbarchard@chromium.org> > Commit-Queue: Frank Barchard <fbarchard@chromium.org> TBR=fbarchard@chromium.org,mbonadei@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: webrtc:8850 Change-Id: Idfd37e0e20d278b374c57d7e2c5465971aae3a52 Reviewed-on: https://chromium-review.googlesource.com/914529 Reviewed-by: Frank Barchard <fbarchard@chromium.org> |
||
|---|---|---|
| build_overrides | ||
| docs | ||
| include | ||
| infra/config | ||
| source | ||
| tools_libyuv | ||
| unit_test | ||
| util | ||
| .clang-format | ||
| .gitignore | ||
| .gn | ||
| .vpython | ||
| all.gyp | ||
| Android.bp | ||
| Android.mk | ||
| AUTHORS | ||
| BUILD.gn | ||
| cleanup_links.py | ||
| CM_linux_packages.cmake | ||
| CMakeLists.txt | ||
| codereview.settings | ||
| DEPS | ||
| download_vs_toolchain.py | ||
| gyp_libyuv | ||
| gyp_libyuv.py | ||
| libyuv_nacl.gyp | ||
| libyuv_test.gyp | ||
| libyuv.gni | ||
| libyuv.gyp | ||
| libyuv.gypi | ||
| LICENSE | ||
| LICENSE_THIRD_PARTY | ||
| linux.mk | ||
| OWNERS | ||
| PATENTS | ||
| PRESUBMIT.py | ||
| public.mk | ||
| pylintrc | ||
| README.chromium | ||
| README.md | ||
| winarm.mk | ||
libyuv is an open source project that includes YUV scaling and conversion functionality.
- Scale YUV to prepare content for compression, with point, bilinear or box filter.
- Convert to YUV from webcam formats for compression.
- Convert to RGB formats for rendering/effects.
- Rotate by 90/180/270 degrees to adjust for mobile devices in portrait mode.
- Optimized for SSSE3/AVX2 on x86/x64.
- Optimized for Neon on Arm.
- Optimized for MSA on Mips.
Development
See [Getting started] 1 for instructions on how to get started developing.
You can also browse the [docs directory] 2 for more documentation.