| 28 | } |
| 29 | |
| 30 | static WEBP_INLINE int GetLE24(const uint8_t* const data) { |
| 31 | return GetLE16(data) | (data[2] << 16); |
| 32 | } |
| 33 | |
| 34 | static WEBP_INLINE uint32_t GetLE32(const uint8_t* const data) { |
| 35 | return GetLE16(data) | ((uint32_t)GetLE16(data + 2) << 16); |