MCPcopy Create free account
hub / github.com/Tencent/libpag / GetLE24

Function GetLE24

src/codec/utils/WebpDecoder.cpp:30–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

ParseVP8XFunction · 0.85

Calls 1

GetLE16Function · 0.85

Tested by

no test coverage detected