Index: source/row_mips.cc |
diff --git a/source/row_mips.cc b/source/row_mips.cc |
index d12cf6ab790b0da6d3aa46142e7c9f40d9e0b57e..2c55b786b2a035f270059cc4f16d26696f231b02 100644 |
--- a/source/row_mips.cc |
+++ b/source/row_mips.cc |
@@ -375,12 +375,12 @@ void CopyRow_MIPS(const uint8* src, uint8* dst, int count) { |
} |
#endif // HAS_COPYROW_MIPS |
-// MIPS DSPR2 functions |
+// DSPR2 functions |
#if !defined(LIBYUV_DISABLE_MIPS) && defined(__mips_dsp) && \ |
(__mips_dsp_rev >= 2) && \ |
(_MIPS_SIM == _MIPS_SIM_ABI32) && (__mips_isa_rev < 6) |
-void SplitUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, |
+void SplitUVRow_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, |
int width) { |
__asm__ __volatile__ ( |
".set push \n" |
@@ -446,7 +446,7 @@ void SplitUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, |
); |
} |
-void MirrorRow_MIPS_DSPR2(const uint8* src, uint8* dst, int width) { |
+void MirrorRow_DSPR2(const uint8* src, uint8* dst, int width) { |
__asm__ __volatile__ ( |
".set push \n" |
".set noreorder \n" |
@@ -496,7 +496,7 @@ void MirrorRow_MIPS_DSPR2(const uint8* src, uint8* dst, int width) { |
); |
} |
-void MirrorUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, |
+void MirrorUVRow_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, |
int width) { |
int x = 0; |
int y = 0; |
@@ -653,7 +653,7 @@ void MirrorUVRow_MIPS_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, |
"addu.ph $t1, $t1, $s5 \n" |
// TODO(fbarchard): accept yuv conversion constants. |
-void I422ToARGBRow_MIPS_DSPR2(const uint8* y_buf, |
+void I422ToARGBRow_DSPR2(const uint8* y_buf, |
const uint8* u_buf, |
const uint8* v_buf, |
uint8* rgb_buf, |
@@ -716,7 +716,7 @@ void I422ToARGBRow_MIPS_DSPR2(const uint8* y_buf, |
} |
// Bilinear filter 8x2 -> 8x1 |
-void InterpolateRow_MIPS_DSPR2(uint8* dst_ptr, const uint8* src_ptr, |
+void InterpolateRow_DSPR2(uint8* dst_ptr, const uint8* src_ptr, |
ptrdiff_t src_stride, int dst_width, |
int source_y_fraction) { |
int y0_fraction = 256 - source_y_fraction; |