| Index: media/base/simd/convert_yuv_to_rgb.h
|
| diff --git a/media/base/simd/convert_yuv_to_rgb.h b/media/base/simd/convert_yuv_to_rgb.h
|
| index 54337bcd2cbb79b273cd45154819b18c73d6e86e..7feb0079c383e1f75db5f11501e03323939ccc88 100644
|
| --- a/media/base/simd/convert_yuv_to_rgb.h
|
| +++ b/media/base/simd/convert_yuv_to_rgb.h
|
| @@ -29,7 +29,7 @@ MEDIA_EXPORT void ConvertYUVToRGB32Row_C(const uint8* yplane,
|
| const uint8* vplane,
|
| uint8* rgbframe,
|
| ptrdiff_t width,
|
| - const int16 convert_table[1024][4]);
|
| + const int16* convert_table);
|
|
|
| MEDIA_EXPORT void ConvertYUVAToARGB_C(const uint8* yplane,
|
| const uint8* uplane,
|
| @@ -50,7 +50,7 @@ MEDIA_EXPORT void ConvertYUVAToARGBRow_C(const uint8* yplane,
|
| const uint8* aplane,
|
| uint8* rgbframe,
|
| ptrdiff_t width,
|
| - const int16 convert_table[1024][4]);
|
| + const int16* convert_table);
|
|
|
| MEDIA_EXPORT void ConvertYUVToRGB32_SSE(const uint8* yplane,
|
| const uint8* uplane,
|
| @@ -82,16 +82,15 @@ MEDIA_EXPORT void ScaleYUVToRGB32Row_C(const uint8* y_buf,
|
| uint8* rgb_buf,
|
| ptrdiff_t width,
|
| ptrdiff_t source_dx,
|
| - const int16 convert_table[1024][4]);
|
| + const int16* convert_table);
|
|
|
| -MEDIA_EXPORT void LinearScaleYUVToRGB32Row_C(
|
| - const uint8* y_buf,
|
| - const uint8* u_buf,
|
| - const uint8* v_buf,
|
| - uint8* rgb_buf,
|
| - ptrdiff_t width,
|
| - ptrdiff_t source_dx,
|
| - const int16 convert_table[1024][4]);
|
| +MEDIA_EXPORT void LinearScaleYUVToRGB32Row_C(const uint8* y_buf,
|
| + const uint8* u_buf,
|
| + const uint8* v_buf,
|
| + uint8* rgb_buf,
|
| + ptrdiff_t width,
|
| + ptrdiff_t source_dx,
|
| + const int16* convert_table);
|
|
|
| MEDIA_EXPORT void LinearScaleYUVToRGB32RowWithRange_C(
|
| const uint8* y_buf,
|
| @@ -101,7 +100,7 @@ MEDIA_EXPORT void LinearScaleYUVToRGB32RowWithRange_C(
|
| int dest_width,
|
| int source_x,
|
| int source_dx,
|
| - const int16 convert_table[1024][4]);
|
| + const int16* convert_table);
|
|
|
| } // namespace media
|
|
|
| @@ -121,14 +120,14 @@ MEDIA_EXPORT void ConvertYUVAToARGBRow_MMX(const uint8* yplane,
|
| const uint8* aplane,
|
| uint8* rgbframe,
|
| ptrdiff_t width,
|
| - const int16 convert_table[1024][4]);
|
| + const int16* convert_table);
|
|
|
| MEDIA_EXPORT void ConvertYUVToRGB32Row_SSE(const uint8* yplane,
|
| const uint8* uplane,
|
| const uint8* vplane,
|
| uint8* rgbframe,
|
| ptrdiff_t width,
|
| - const int16 convert_table[1024][4]);
|
| + const int16* convert_table);
|
|
|
| MEDIA_EXPORT void ScaleYUVToRGB32Row_SSE(const uint8* y_buf,
|
| const uint8* u_buf,
|
| @@ -136,34 +135,31 @@ MEDIA_EXPORT void ScaleYUVToRGB32Row_SSE(const uint8* y_buf,
|
| uint8* rgb_buf,
|
| ptrdiff_t width,
|
| ptrdiff_t source_dx,
|
| - const int16 convert_table[1024][4]);
|
| -
|
| -MEDIA_EXPORT void ScaleYUVToRGB32Row_SSE2_X64(
|
| - const uint8* y_buf,
|
| - const uint8* u_buf,
|
| - const uint8* v_buf,
|
| - uint8* rgb_buf,
|
| - ptrdiff_t width,
|
| - ptrdiff_t source_dx,
|
| - const int16 convert_table[1024][4]);
|
| -
|
| -MEDIA_EXPORT void LinearScaleYUVToRGB32Row_SSE(
|
| - const uint8* y_buf,
|
| - const uint8* u_buf,
|
| - const uint8* v_buf,
|
| - uint8* rgb_buf,
|
| - ptrdiff_t width,
|
| - ptrdiff_t source_dx,
|
| - const int16 convert_table[1024][4]);
|
| -
|
| -MEDIA_EXPORT void LinearScaleYUVToRGB32Row_MMX_X64(
|
| - const uint8* y_buf,
|
| - const uint8* u_buf,
|
| - const uint8* v_buf,
|
| - uint8* rgb_buf,
|
| - ptrdiff_t width,
|
| - ptrdiff_t source_dx,
|
| - const int16 convert_table[1024][4]);
|
| + const int16* convert_table);
|
| +
|
| +MEDIA_EXPORT void ScaleYUVToRGB32Row_SSE2_X64(const uint8* y_buf,
|
| + const uint8* u_buf,
|
| + const uint8* v_buf,
|
| + uint8* rgb_buf,
|
| + ptrdiff_t width,
|
| + ptrdiff_t source_dx,
|
| + const int16* convert_table);
|
| +
|
| +MEDIA_EXPORT void LinearScaleYUVToRGB32Row_SSE(const uint8* y_buf,
|
| + const uint8* u_buf,
|
| + const uint8* v_buf,
|
| + uint8* rgb_buf,
|
| + ptrdiff_t width,
|
| + ptrdiff_t source_dx,
|
| + const int16* convert_table);
|
| +
|
| +MEDIA_EXPORT void LinearScaleYUVToRGB32Row_MMX_X64(const uint8* y_buf,
|
| + const uint8* u_buf,
|
| + const uint8* v_buf,
|
| + uint8* rgb_buf,
|
| + ptrdiff_t width,
|
| + ptrdiff_t source_dx,
|
| + const int16* convert_table);
|
|
|
| } // extern "C"
|
|
|
|
|