Home
last modified time | relevance | path

Searched refs:GetLE24 (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/libwebp/src/mux/
Dmuxread.c275 mux->canvas_width_ = GetLE24(data + 12) + 1; in WebPMuxCreateInternal()
276 mux->canvas_height_ = GetLE24(data + 15) + 1; in WebPMuxCreateInternal()
334 w = GetLE24(data.bytes + 4) + 1; in MuxGetCanvasInfo()
335 h = GetLE24(data.bytes + 7) + 1; in MuxGetCanvasInfo()
465 frame->x_offset = 2 * GetLE24(frame_data->bytes + 0); in MuxGetFrameInternal()
466 frame->y_offset = 2 * GetLE24(frame_data->bytes + 3); in MuxGetFrameInternal()
469 frame->duration = GetLE24(frame_data->bytes + 12); in MuxGetFrameInternal()
Dmuxedit.c397 *x_offset = 2 * GetLE24(data->bytes + 0); in GetFrameInfo()
398 *y_offset = 2 * GetLE24(data->bytes + 3); in GetFrameInfo()
399 *duration = GetLE24(data->bytes + 12); in GetFrameInfo()
/third_party/skia/third_party/externals/libwebp/src/utils/
Dutils.h88 static WEBP_INLINE int GetLE24(const uint8_t* const data) { in GetLE24() function
/third_party/skia/third_party/externals/libwebp/src/dec/
Dwebp_dec.c122 width = 1 + GetLE24(*data + 12); in ParseVP8X()
123 height = 1 + GetLE24(*data + 15); in ParseVP8X()
/third_party/skia/third_party/externals/libwebp/examples/
Dwebpinfo.c145 static int GetLE24(const uint8_t* const data) { in GetLE24() function
160 const int val = GetLE24(*data); in ReadLE24()
/third_party/skia/third_party/externals/libwebp/src/demux/
Ddemux.c162 const int val = GetLE24(data); in ReadLE24s()