author | Chris Double <chris.double@double.co.nz> |
Tue, 06 Apr 2010 15:05:36 +1200 | |
changeset 40465 | 4238959a7b0c8cc18410c127f62d04d66d18e4c2 |
parent 40464 | 2b9a4c865737a743e89d81ccff6931abd5ea6137 |
child 40467 | 7447cdd1f11039ad530795302fd58b4d9d5b66aa |
child 40473 | e49a2bda77c2aeda412bc4d05cda7d32d4b0d493 |
push id | 12617 |
push user | cdouble@mozilla.com |
push date | Tue, 06 Apr 2010 03:06:46 +0000 |
treeherder | mozilla-central@4238959a7b0c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 551277 |
milestone | 1.9.3a4pre |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
|
gfx/ycbcr/yuv_row_linux.cpp | file | annotate | diff | comparison | revisions | |
gfx/ycbcr/yuv_row_mac.cpp | file | annotate | diff | comparison | revisions |
--- a/gfx/ycbcr/yuv_row_linux.cpp +++ b/gfx/ycbcr/yuv_row_linux.cpp @@ -13,17 +13,17 @@ extern "C" { #if defined(ARCH_CPU_ARM_FAMILY) // ARM implementation uses C fallback void FastConvertYUVToRGB32Row(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, uint8* rgb_buf, int width) { - FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width); + FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width, 1); } #else #define RGBY(i) { \ static_cast<int16>(1.164 * 64 * (i - 16) + 0.5), \ static_cast<int16>(1.164 * 64 * (i - 16) + 0.5), \ static_cast<int16>(1.164 * 64 * (i - 16) + 0.5), \
--- a/gfx/ycbcr/yuv_row_mac.cpp +++ b/gfx/ycbcr/yuv_row_mac.cpp @@ -10,17 +10,17 @@ extern "C" { #if defined(ARCH_CPU_PPC) // PPC implementation uses C fallback void FastConvertYUVToRGB32Row(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, uint8* rgb_buf, int width) { - FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width); + FastConvertYUVToRGB32Row_C(y_buf, u_buf, v_buf, rgb_buf, width, 1); } #else #define RGBY(i) { \ static_cast<int16>(1.164 * 64 * (i - 16) + 0.5), \ static_cast<int16>(1.164 * 64 * (i - 16) + 0.5), \ static_cast<int16>(1.164 * 64 * (i - 16) + 0.5), \