diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-12-10 14:58:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-10 14:58:13 +0100 |
commit | fa024537a39c24bf9fb2e24063acee0daf63dfc1 (patch) | |
tree | 759ef4154a16f572b0782516d641fbb993ff9400 /thirdparty/libwebp/src/dsp/rescaler_mips32.c | |
parent | ca06e656bec5129cc0fc45f83b310976adb752e3 (diff) | |
parent | d4133ac8440321f2ae2e26fb317871bd847b35eb (diff) |
Merge pull request #24258 from volzhs/libwebp-1.0.1
Update libwebp to 1.0.1
Diffstat (limited to 'thirdparty/libwebp/src/dsp/rescaler_mips32.c')
-rw-r--r-- | thirdparty/libwebp/src/dsp/rescaler_mips32.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/thirdparty/libwebp/src/dsp/rescaler_mips32.c b/thirdparty/libwebp/src/dsp/rescaler_mips32.c index 542f7e5970..61f63c616c 100644 --- a/thirdparty/libwebp/src/dsp/rescaler_mips32.c +++ b/thirdparty/libwebp/src/dsp/rescaler_mips32.c @@ -209,6 +209,7 @@ static void ExportRowExpand_MIPS32(WebPRescaler* const wrk) { } } +#if 0 // disabled for now. TODO(skal): make match the C-code static void ExportRowShrink_MIPS32(WebPRescaler* const wrk) { const int x_out_max = wrk->dst_width * wrk->num_channels; uint8_t* dst = wrk->dst; @@ -273,6 +274,7 @@ static void ExportRowShrink_MIPS32(WebPRescaler* const wrk) { ); } } +#endif // 0 //------------------------------------------------------------------------------ // Entry point @@ -283,7 +285,7 @@ WEBP_TSAN_IGNORE_FUNCTION void WebPRescalerDspInitMIPS32(void) { WebPRescalerImportRowExpand = ImportRowExpand_MIPS32; WebPRescalerImportRowShrink = ImportRowShrink_MIPS32; WebPRescalerExportRowExpand = ExportRowExpand_MIPS32; - WebPRescalerExportRowShrink = ExportRowShrink_MIPS32; +// WebPRescalerExportRowShrink = ExportRowShrink_MIPS32; } #else // !WEBP_USE_MIPS32 |