mirror of
https://github.com/webmproject/libwebp.git
synced 2025-02-15 16:32:52 +01:00
Merge "format_constants.h: MKFOURCC, correct cast"
This commit is contained in:
commit
93c86ed5b9
@ -15,7 +15,7 @@
|
||||
#define WEBP_WEBP_FORMAT_CONSTANTS_H_
|
||||
|
||||
// Create fourcc of the chunk from the chunk tag characters.
|
||||
#define MKFOURCC(a, b, c, d) ((uint32_t)(a) | (b) << 8 | (c) << 16 | (d) << 24)
|
||||
#define MKFOURCC(a, b, c, d) ((a) | (b) << 8 | (c) << 16 | (uint32_t)(d) << 24)
|
||||
|
||||
// VP8 related constants.
|
||||
#define VP8_SIGNATURE 0x9d012a // Signature in VP8 data.
|
||||
|
Loading…
x
Reference in New Issue
Block a user