aboutsummaryrefslogtreecommitdiff
path: root/source/scale_argb.cc
diff options
context:
space:
mode:
authorfbarchard@google.com <fbarchard@google.com>2015-02-07 01:01:30 +0000
committerfbarchard@google.com <fbarchard@google.com>2015-02-07 01:01:30 +0000
commitfd8054791c1cfd7545dc7255849755653923298c (patch)
treef22230dbb5217c6eea61a7efc7277f4741826387 /source/scale_argb.cc
parenta2460862431dc0747e6bba5ffa0b30e922c86018 (diff)
downloadlibyuv-fd8054791c1cfd7545dc7255849755653923298c.tar.gz
build fixe for InterpolateRow_MIPS_DSPR2
BUG=398 TESTED=untested R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/37999004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1268 16f28f9a-4ce2-e073-06de-1de4eb20be90
Diffstat (limited to 'source/scale_argb.cc')
-rw-r--r--source/scale_argb.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/scale_argb.cc b/source/scale_argb.cc
index 851fd3b8..05b58e1b 100644
--- a/source/scale_argb.cc
+++ b/source/scale_argb.cc
@@ -216,7 +216,7 @@ static void ScaleARGBBilinearDown(int src_width, int src_height,
}
}
#endif
-#if defined(HAS_INTERPOLATEROWS_MIPS_DSPR2)
+#if defined(HAS_INTERPOLATEROW_MIPS_DSPR2)
if (TestCpuFlag(kCpuHasMIPS_DSPR2) &&
IS_ALIGNED(src_argb, 4) && IS_ALIGNED(src_stride, 4)) {
InterpolateRow = InterpolateRow_Any_MIPS_DSPR2;
@@ -306,7 +306,7 @@ static void ScaleARGBBilinearUp(int src_width, int src_height,
}
}
#endif
-#if defined(HAS_INTERPOLATEROWS_MIPS_DSPR2)
+#if defined(HAS_INTERPOLATEROW_MIPS_DSPR2)
if (TestCpuFlag(kCpuHasMIPS_DSPR2) &&
IS_ALIGNED(dst_argb, 4) && IS_ALIGNED(dst_stride, 4)) {
InterpolateRow = InterpolateRow_MIPS_DSPR2;
@@ -476,7 +476,7 @@ static void ScaleYUVToARGBBilinearUp(int src_width, int src_height,
}
}
#endif
-#if defined(HAS_INTERPOLATEROWS_MIPS_DSPR2)
+#if defined(HAS_INTERPOLATEROW_MIPS_DSPR2)
if (TestCpuFlag(kCpuHasMIPS_DSPR2) &&
IS_ALIGNED(dst_argb, 4) && IS_ALIGNED(dst_stride_argb, 4)) {
InterpolateRow = InterpolateRow_MIPS_DSPR2;