Dactyloidae/gfx/ycbcr
2026-03-09 21:25:11 +00:00
..
chromium_types.h import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
convert.patch Issue #1829 - Revert "Issue #1751" 2022-05-04 09:40:24 +08:00
LICENSE import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
moz.build No Issue - Fix clang builds on 32-bit ARM Linux. The clang integrated assembler can't handle these files. 2026-03-09 21:25:11 +00:00
QuellGccWarnings.patch import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
README import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
scale_yuv_argb.cpp Issue #2101 - Part 4: Add color range support to gfx/ycbcr 2023-02-27 12:09:18 +08:00
scale_yuv_argb.h Issue #2101 - Part 4: Add color range support to gfx/ycbcr 2023-02-27 12:09:18 +08:00
TypeFromSize.patch import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
update.sh import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
win64.patch import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
ycbcr_to_rgb565.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
ycbcr_to_rgb565.h Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
YCbCrUtils.cpp Issue #2357 - VPXDecoder does not decode alpha frames. 2023-10-26 10:49:23 +08:00
YCbCrUtils.h Issue #2357 - VPXDecoder does not decode alpha frames. 2023-10-26 10:49:23 +08:00
yuv_convert.cpp Issue #2357 - VPXDecoder does not decode alpha frames. 2023-10-26 10:49:23 +08:00
yuv_convert.h Issue #2357 - VPXDecoder does not decode alpha frames. 2023-10-26 10:49:23 +08:00
yuv_convert_arm.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_convert_mmx.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_convert_sse2.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_row.h Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_row_arm.s import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo 2018-01-19 03:59:58 +08:00
yuv_row_c.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_row_other.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_row_posix.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_row_table.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_row_win.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00
yuv_row_win64.cpp Issue #2101 - Part 2: Use stdint.h types instead of uint8 and friends 2023-02-27 12:06:38 +08:00

This color conversion code is from the Chromium open source project available here:

http://code.google.com/chromium/

The code comes from svn revision 63840 on 2010-10-26.

If you just want to check out this individual directory, use:

svn co -r 63840 http://src.chromium.org/svn/trunk/src/media/base

The code was copied from a Chromium svn checkout using the 'update.sh' script which then applies patches for our build and to add dynamic CPU detection.

convert.patch contains the following changes:

  * Change Chromium code to build using Mozilla build system.
  * Add runtime CPU detection for MMX
  * Move default C implementation to work on all platforms.
  * Change Chromium code to allow a picture region.
  * The YUV conversion will convert within this picture region only.
  * Add YCbCr 4:4:4 support
  * Bug 619178 - Update CPU detection in yuv_convert to new SSE.h interface.
  * Bug 616778 - Split yuv_convert FilterRows vectorized code into separate files so it can
    be properly guarded with cpuid() calls.

win64.patch: SSE2 optimization for Microsoft Visual C++ x64 version

TypeFromSize.patch: Bug 656185 - Add a method to detect YUVType from plane sizes.

QuellGccWarnings.patch: Bug 711895 - Avoid some GCC compilation warnings.