Index: include/libyuv/rotate_row.h |
diff --git a/include/libyuv/rotate_row.h b/include/libyuv/rotate_row.h |
index e3838295ce1eb3d3faf9d2e034b8c53dc8e137a0..d46daec24dc6c36f7dd26cbe5179cf6858ad70e1 100644 |
--- a/include/libyuv/rotate_row.h |
+++ b/include/libyuv/rotate_row.h |
@@ -51,8 +51,8 @@ extern "C" { |
#if !defined(LIBYUV_DISABLE_MIPS) && !defined(__native_client__) && \ |
defined(__mips__) && \ |
defined(__mips_dsp) && (__mips_dsp_rev >= 2) |
-#define HAS_TRANSPOSEWX8_MIPS_DSPR2 |
-#define HAS_TRANSPOSEUVWX8_MIPS_DSPR2 |
+#define HAS_TRANSPOSEWX8_DSPR2 |
+#define HAS_TRANSPOSEUVWX8_DSPR2 |
#endif // defined(__mips__) |
void TransposeWxH_C(const uint8* src, int src_stride, |
@@ -66,9 +66,9 @@ void TransposeWx8_SSSE3(const uint8* src, int src_stride, |
uint8* dst, int dst_stride, int width); |
void TransposeWx8_Fast_SSSE3(const uint8* src, int src_stride, |
uint8* dst, int dst_stride, int width); |
-void TransposeWx8_MIPS_DSPR2(const uint8* src, int src_stride, |
+void TransposeWx8_DSPR2(const uint8* src, int src_stride, |
uint8* dst, int dst_stride, int width); |
-void TransposeWx8_Fast_MIPS_DSPR2(const uint8* src, int src_stride, |
+void TransposeWx8_Fast_DSPR2(const uint8* src, int src_stride, |
uint8* dst, int dst_stride, int width); |
void TransposeWx8_Any_NEON(const uint8* src, int src_stride, |
@@ -77,7 +77,7 @@ void TransposeWx8_Any_SSSE3(const uint8* src, int src_stride, |
uint8* dst, int dst_stride, int width); |
void TransposeWx8_Fast_Any_SSSE3(const uint8* src, int src_stride, |
uint8* dst, int dst_stride, int width); |
-void TransposeWx8_Any_MIPS_DSPR2(const uint8* src, int src_stride, |
+void TransposeWx8_Any_DSPR2(const uint8* src, int src_stride, |
uint8* dst, int dst_stride, int width); |
void TransposeUVWxH_C(const uint8* src, int src_stride, |
@@ -94,7 +94,7 @@ void TransposeUVWx8_SSE2(const uint8* src, int src_stride, |
void TransposeUVWx8_NEON(const uint8* src, int src_stride, |
uint8* dst_a, int dst_stride_a, |
uint8* dst_b, int dst_stride_b, int width); |
-void TransposeUVWx8_MIPS_DSPR2(const uint8* src, int src_stride, |
+void TransposeUVWx8_DSPR2(const uint8* src, int src_stride, |
uint8* dst_a, int dst_stride_a, |
uint8* dst_b, int dst_stride_b, int width); |
@@ -104,7 +104,7 @@ void TransposeUVWx8_Any_SSE2(const uint8* src, int src_stride, |
void TransposeUVWx8_Any_NEON(const uint8* src, int src_stride, |
uint8* dst_a, int dst_stride_a, |
uint8* dst_b, int dst_stride_b, int width); |
-void TransposeUVWx8_Any_MIPS_DSPR2(const uint8* src, int src_stride, |
+void TransposeUVWx8_Any_DSPR2(const uint8* src, int src_stride, |
uint8* dst_a, int dst_stride_a, |
uint8* dst_b, int dst_stride_b, int width); |