gecko/gfx/ycbcr
Tim Terribe cb46080bbf Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec
--HG--
extra : rebase_source : fddd6ccddd083484c8b46a53747fb2058a46463e
2011-04-09 06:59:22 +12:00
..
chromium_types.h Bug 583138 - Update to latest Chromium YCbCr to RGB Conversion code - r=roc a=blocking2.0 2010-11-11 12:54:27 +13:00
convert.patch Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec 2011-04-09 06:59:22 +12:00
LICENSE Bug 551277 - Replace liboggplay YUV to RGB color conversion code - r=roc 2010-04-19 13:17:06 +12:00
Makefile.in Bug 637961 - Crash in [@ yv12_to_rgb565_neon]. r=jmuizelaar a=blocking-fennec 2011-03-08 09:59:44 +09:00
README Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec 2011-04-09 06:59:22 +12:00
update.sh Bug 616778 - Part 2: Update NPOTB files in gfx/ycbcr. r=kinetik, a=NPOTB 2011-01-12 19:08:17 -08:00
ycbcr_to_rgb565.cpp Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec 2011-04-09 06:59:22 +12:00
ycbcr_to_rgb565.h Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec 2011-04-09 06:59:22 +12:00
yuv_convert_arm.cpp Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec 2011-04-09 06:59:22 +12:00
yuv_convert_mmx.cpp Bug 616778 - Part 1: Move vectorized code in FilterRows inside CPUID guards. r=joedrew, a=blocking 2010-12-09 09:59:21 -08:00
yuv_convert_sse2.cpp Bug 616778 - Part 1: Move vectorized code in FilterRows inside CPUID guards. r=joedrew, a=blocking 2010-12-09 09:59:21 -08:00
yuv_convert.cpp Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec 2011-04-09 06:59:22 +12:00
yuv_convert.h Bug 641014 - Fix broken NEO Y'CbCr to RGB conversion - r=doublec 2011-04-09 06:59:22 +12:00
yuv_row_c.cpp Bug 583138 - Update to latest Chromium YCbCr to RGB Conversion code - r=roc a=blocking2.0 2010-11-11 12:54:27 +13:00
yuv_row_other.cpp Bug 583138 - Update to latest Chromium YCbCr to RGB Conversion code - r=roc a=blocking2.0 2010-11-11 12:54:27 +13:00
yuv_row_posix.cpp Bug 619178 - Update gfx/ycbcr to the new SSE.h interface. r=joedrew, a=blocking 2010-12-09 09:59:21 -08:00
yuv_row_table.cpp Bug 583138 - Update to latest Chromium YCbCr to RGB Conversion code - r=roc a=blocking2.0 2010-11-11 12:54:27 +13:00
yuv_row_win.cpp Bug 619178 - Followup for Win64 bustage. Add check for _M_IX86 to FastConvertYUVToRGB32Row in yuv_row_win.cpp. r=m_kato, a=bustage 2011-01-12 22:13:07 -08:00
yuv_row.h Bug 619178 - Update gfx/ycbcr to the new SSE.h interface. r=joedrew, a=blocking 2010-12-09 09:59:21 -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.