| Index: third_party/libwebp/dsp/dsp.h | 
| diff --git a/third_party/libwebp/dsp/dsp.h b/third_party/libwebp/dsp/dsp.h | 
| index 01a95891febae907f252b3fc36920ebb65ff40b2..31bda89cc95bc63e61d9977972f96bdbda28d441 100644 | 
| --- a/third_party/libwebp/dsp/dsp.h | 
| +++ b/third_party/libwebp/dsp/dsp.h | 
| @@ -160,8 +160,10 @@ extern WebPUpsampleLinePairFunc WebPUpsamplers[/* MODE_LAST */]; | 
| // Initializes SSE2 version of the fancy upsamplers. | 
| void WebPInitUpsamplersSSE2(void); | 
|  | 
| +#if defined(WEBP_USE_NEON) | 
| // NEON version | 
| void WebPInitUpsamplersNEON(void); | 
| +#endif | 
|  | 
| #endif    // FANCY_UPSAMPLING | 
|  | 
| @@ -204,7 +206,10 @@ extern void (*WebPApplyAlphaMultiply4444)( | 
| void WebPInitPremultiply(void); | 
|  | 
| void WebPInitPremultiplySSE2(void);   // should not be called directly. | 
| + | 
| +#if defined(WEBP_USE_NEON) | 
| void WebPInitPremultiplyNEON(void); | 
| +#endif | 
|  | 
| //------------------------------------------------------------------------------ | 
|  | 
|  |