| Index: third_party/libwebp/dec/quant_dec.c
|
| diff --git a/third_party/libwebp/dec/quant.c b/third_party/libwebp/dec/quant_dec.c
|
| similarity index 99%
|
| rename from third_party/libwebp/dec/quant.c
|
| rename to third_party/libwebp/dec/quant_dec.c
|
| index 5b648f942c5e7d4ad2aaa7dff16ab9d4e32e94f0..14e31989465ff255318046ed30e8eee0a4669612 100644
|
| --- a/third_party/libwebp/dec/quant.c
|
| +++ b/third_party/libwebp/dec/quant_dec.c
|
| @@ -11,7 +11,7 @@
|
| //
|
| // Author: Skal (pascal.massimino@gmail.com)
|
|
|
| -#include "./vp8i.h"
|
| +#include "./vp8i_dec.h"
|
|
|
| static WEBP_INLINE int clip(int v, int M) {
|
| return v < 0 ? 0 : v > M ? M : v;
|
|
|