2010-04-19 01:17:06 +00:00
This color conversion code is from the Chromium open source project available here:
http://code.google.com/chromium/
2011-01-13 03:08:17 +00:00
The code comes from svn revision 63840 on 2010-10-26.
2010-04-19 01:17:06 +00:00
2011-04-08 18:59:22 +00:00
If you just want to check out this individual directory, use:
svn co -r 63840 http://src.chromium.org/svn/trunk/src/media/base
2010-04-19 01:17:06 +00:00
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.
2011-01-13 03:08:17 +00:00
convert.patch contains the following changes:
2010-12-15 18:17:26 +00:00
2011-01-13 03:08:17 +00:00
* 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.
2011-04-18 00:51:18 +00:00
win64.patch: SSE2 optimization for Microsoft Visual C++ x64 version
2011-07-05 02:52:00 +00:00
TypeFromSize.patch: Bug 656185 - Add a method to detect YUVType from plane sizes.
2012-03-22 05:21:16 +00:00
QuellGccWarnings.patch: Bug 711895 - Avoid some GCC compilation warnings.