mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 13:48:21 +01:00
Merge "cherry-pick decoder fix for 64-bit android devices"
This commit is contained in:
commit
c80b9fc8fc
@ -415,7 +415,8 @@ static VP8StatusCode ParseHeadersInternal(const uint8_t* data,
|
|||||||
}
|
}
|
||||||
|
|
||||||
VP8StatusCode WebPParseHeaders(WebPHeaderStructure* const headers) {
|
VP8StatusCode WebPParseHeaders(WebPHeaderStructure* const headers) {
|
||||||
VP8StatusCode status;
|
// status is marked volatile as a workaround for a clang-3.8 (aarch64) bug
|
||||||
|
volatile VP8StatusCode status;
|
||||||
int has_animation = 0;
|
int has_animation = 0;
|
||||||
assert(headers != NULL);
|
assert(headers != NULL);
|
||||||
// fill out headers, ignore width/height/has_alpha.
|
// fill out headers, ignore width/height/has_alpha.
|
||||||
|
Loading…
Reference in New Issue
Block a user