From 216e93b4e870737eab561cc44cf5bbe3863651a9 Mon Sep 17 00:00:00 2001 From: Frank Barchard Date: Wed, 16 Dec 2015 10:37:42 -0800 Subject: [PATCH] Fix MIPS DSPR2 build failure. Fixing the failure: 'TransposeWx8_Fast_MIPS_DSPR2' was not declared in this scope BUG=none R=fbarchard@chromium.org Review URL: https://codereview.chromium.org/1527243002 . --- README.chromium | 2 +- include/libyuv/rotate_row.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.chromium b/README.chromium index 16accaaf6..28d9699cd 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1555 +Version: 1556 License: BSD License File: LICENSE diff --git a/include/libyuv/rotate_row.h b/include/libyuv/rotate_row.h index 020cf2173..e3838295c 100644 --- a/include/libyuv/rotate_row.h +++ b/include/libyuv/rotate_row.h @@ -68,6 +68,8 @@ 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, uint8* dst, int dst_stride, int width); +void TransposeWx8_Fast_MIPS_DSPR2(const uint8* src, int src_stride, + uint8* dst, int dst_stride, int width); void TransposeWx8_Any_NEON(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width);