summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-06-02 19:58:33 -0700
committerJames Zern <jzern@google.com>2017-06-02 19:58:33 -0700
commit86c756929c67d0c6771d35a5c076d170c2fa4c47 (patch)
treed1d7fed54c7a0d89caaea9da4350553394978ce5
parent50d1a848bc56554af8413cfe681f94286a6371b3 (diff)
downloadlibwebp-sandbox/jzern@google.com/mips-testing.tar.gz
rescaler_mips32: disable ImportRowShrinksandbox/jzern@google.com/mips-testing
this function is failing the 'accum == 0' assert on skia bots for rescaling to 13x13 BUG=skia:6682 Change-Id: I9f9f3adf28cec63ad6e38ed3128f18825d5b70cc
-rw-r--r--src/dsp/rescaler_mips32.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dsp/rescaler_mips32.c b/src/dsp/rescaler_mips32.c
index e09ad5d1..6b14b532 100644
--- a/src/dsp/rescaler_mips32.c
+++ b/src/dsp/rescaler_mips32.c
@@ -279,7 +279,8 @@ extern void WebPRescalerDspInitMIPS32(void);
WEBP_TSAN_IGNORE_FUNCTION void WebPRescalerDspInitMIPS32(void) {
WebPRescalerImportRowExpand = ImportRowExpand;
- WebPRescalerImportRowShrink = ImportRowShrink;
+ // WebPRescalerImportRowShrink = ImportRowShrink;
+ (void)ImportRowShrink;
WebPRescalerExportRowExpand = ExportRowExpand;
WebPRescalerExportRowShrink = ExportRowShrink;
}