Index: trunk/src/media/base/simd/convert_yuv_to_rgb.h |
=================================================================== |
--- trunk/src/media/base/simd/convert_yuv_to_rgb.h (revision 194468) |
+++ trunk/src/media/base/simd/convert_yuv_to_rgb.h (working copy) |
@@ -21,19 +21,6 @@ |
int, |
YUVType); |
-typedef void (*ConvertYUVAToARGBProc)(const uint8*, |
- const uint8*, |
- const uint8*, |
- const uint8*, |
- uint8*, |
- int, |
- int, |
- int, |
- int, |
- int, |
- int, |
- YUVType); |
- |
void ConvertYUVToRGB32_C(const uint8* yplane, |
const uint8* uplane, |
const uint8* vplane, |
@@ -45,19 +32,6 @@ |
int rgbstride, |
YUVType yuv_type); |
-void ConvertYUVAToARGB_C(const uint8* yplane, |
- const uint8* uplane, |
- const uint8* vplane, |
- const uint8* aplane, |
- uint8* rgbframe, |
- int width, |
- int height, |
- int ystride, |
- int uvstride, |
- int avstride, |
- int rgbstride, |
- YUVType yuv_type); |
- |
void ConvertYUVToRGB32_SSE(const uint8* yplane, |
const uint8* uplane, |
const uint8* vplane, |
@@ -80,19 +54,6 @@ |
int rgbstride, |
YUVType yuv_type); |
-void ConvertYUVAToARGB_MMX(const uint8* yplane, |
- const uint8* uplane, |
- const uint8* vplane, |
- const uint8* aplane, |
- uint8* rgbframe, |
- int width, |
- int height, |
- int ystride, |
- int uvstride, |
- int avstride, |
- int rgbstride, |
- YUVType yuv_type); |
- |
} // namespace media |
// Assembly functions are declared without namespace. |
@@ -111,13 +72,6 @@ |
uint8*, |
ptrdiff_t); |
-typedef void (*ConvertYUVAToARGBRowProc)(const uint8*, |
- const uint8*, |
- const uint8*, |
- const uint8*, |
- uint8*, |
- ptrdiff_t); |
- |
typedef void (*ScaleYUVToRGB32RowProc)(const uint8*, |
const uint8*, |
const uint8*, |
@@ -131,26 +85,12 @@ |
uint8* rgbframe, |
ptrdiff_t width); |
-void ConvertYUVAToARGBRow_C(const uint8* yplane, |
- const uint8* uplane, |
- const uint8* vplane, |
- const uint8* aplane, |
- uint8* rgbframe, |
- ptrdiff_t width); |
- |
void ConvertYUVToRGB32Row_MMX(const uint8* yplane, |
const uint8* uplane, |
const uint8* vplane, |
uint8* rgbframe, |
ptrdiff_t width); |
-void ConvertYUVAToARGBRow_MMX(const uint8* yplane, |
- const uint8* uplane, |
- const uint8* vplane, |
- const uint8* aplane, |
- uint8* rgbframe, |
- ptrdiff_t width); |
- |
void ConvertYUVToRGB32Row_SSE(const uint8* yplane, |
const uint8* uplane, |
const uint8* vplane, |