| Index: third_party/libwebp/dec/frame_dec.c
|
| diff --git a/third_party/libwebp/dec/frame.c b/third_party/libwebp/dec/frame_dec.c
|
| similarity index 99%
|
| rename from third_party/libwebp/dec/frame.c
|
| rename to third_party/libwebp/dec/frame_dec.c
|
| index 22d291d2cd8a0b3f451aed8f1acb2d154890efbf..f91e27f7c8b9e979e210c685fbae9de14f1c7447 100644
|
| --- a/third_party/libwebp/dec/frame.c
|
| +++ b/third_party/libwebp/dec/frame_dec.c
|
| @@ -12,7 +12,7 @@
|
| // Author: Skal (pascal.massimino@gmail.com)
|
|
|
| #include <stdlib.h>
|
| -#include "./vp8i.h"
|
| +#include "./vp8i_dec.h"
|
| #include "../utils/utils.h"
|
|
|
| //------------------------------------------------------------------------------
|
| @@ -723,7 +723,7 @@ static int AllocateMemory(VP8Decoder* const dec) {
|
| return VP8SetError(dec, VP8_STATUS_OUT_OF_MEMORY,
|
| "no memory during frame initialization.");
|
| }
|
| - // down-cast is ok, thanks to WebPSafeAlloc() above.
|
| + // down-cast is ok, thanks to WebPSafeMalloc() above.
|
| dec->mem_size_ = (size_t)needed;
|
| }
|
|
|
|
|