Roll chromium_revision c793ec77b2..7950721f08 (454713:454907)

Change log: https://chromium.googlesource.com/chromium/src/+log/c793ec77b2..7950721f08
Full diff: https://chromium.googlesource.com/chromium/src/+/c793ec77b2..7950721f08

Changed dependencies:
* src/base: https://chromium.googlesource.com/chromium/src/base/+log/8fe126945c..d75864a2c5
* src/build: https://chromium.googlesource.com/chromium/src/build/+log/8a0a5a27d4..bf8911f59b
* src/ios: https://chromium.googlesource.com/chromium/src/ios/+log/2c58c1ed6b..8b8111f841
* src/testing: https://chromium.googlesource.com/chromium/src/testing/+log/9cacf531de..c2c74bc1d1
* src/third_party: https://chromium.googlesource.com/chromium/src/third_party/+log/0ea751c2fe..4c0908d22e
* src/third_party/catapult: https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/3c626eaf72..353ee60a45
* src/tools: https://chromium.googlesource.com/chromium/src/tools/+log/41a0ccf0e1..14318cc69b
DEPS diff: https://chromium.googlesource.com/chromium/src/+/c793ec77b2..7950721f08/DEPS

No update to Clang.

TBR=kjellander@chromium.org
BUG=libyuv:689

Change-Id: Ife134b4af1c8c1e63aae2b811342d325abe0b600
Reviewed-on: https://chromium-review.googlesource.com/450317
Reviewed-by: Frank Barchard <fbarchard@google.com>
3 files changed
tree: 36ac7940bf21f2a6412b6b379fded8e3adf62eb4
  1. build_overrides/
  2. docs/
  3. include/
  4. infra/
  5. source/
  6. tools_libyuv/
  7. unit_test/
  8. util/
  9. .clang-format
  10. .gitignore
  11. .gn
  12. all.gyp
  13. Android.mk
  14. AUTHORS
  15. BUILD.gn
  16. cleanup_links.py
  17. CM_linux_packages.cmake
  18. CMakeLists.txt
  19. codereview.settings
  20. DEPS
  21. download_vs_toolchain.py
  22. gyp_libyuv
  23. gyp_libyuv.py
  24. libyuv.gni
  25. libyuv.gyp
  26. libyuv.gypi
  27. libyuv_nacl.gyp
  28. libyuv_test.gyp
  29. LICENSE
  30. LICENSE_THIRD_PARTY
  31. linux.mk
  32. OWNERS
  33. PATENTS
  34. PRESUBMIT.py
  35. public.mk
  36. pylintrc
  37. README.chromium
  38. README.md
  39. winarm.mk
README.md

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.
  • Convert from YUV to formats for rendering/effects.
  • Rotate by 90/180/270 degrees to adjust for mobile devices in portrait mode.
  • Optimized for SSE2/SSSE3/AVX2 on x86/x64.
  • Optimized for Neon on Arm.
  • Optimized for DSP R2 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.