Home
last modified time | relevance | path

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

/external/webp/src/mux/
Dmuxread.c278 mux->canvas_width_ = GetLE24(data + 12) + 1; in WebPMuxCreateInternal()
279 mux->canvas_height_ = GetLE24(data + 15) + 1; in WebPMuxCreateInternal()
337 w = GetLE24(data.bytes + 4) + 1; in MuxGetCanvasInfo()
338 h = GetLE24(data.bytes + 7) + 1; in MuxGetCanvasInfo()
468 frame->x_offset = 2 * GetLE24(frame_data->bytes + 0); in MuxGetFrameInternal()
469 frame->y_offset = 2 * GetLE24(frame_data->bytes + 3); in MuxGetFrameInternal()
472 frame->duration = GetLE24(frame_data->bytes + 12); in MuxGetFrameInternal()
Dmuxedit.c399 *x_offset = 2 * GetLE24(data->bytes + 0); in GetFrameInfo()
400 *y_offset = 2 * GetLE24(data->bytes + 3); in GetFrameInfo()
401 *duration = GetLE24(data->bytes + 12); in GetFrameInfo()
/external/webp/src/utils/
Dutils.h84 static WEBP_INLINE int GetLE24(const uint8_t* const data) { in GetLE24() function
/external/webp/src/dec/
Dwebp_dec.c122 width = 1 + GetLE24(*data + 12); in ParseVP8X()
123 height = 1 + GetLE24(*data + 15); in ParseVP8X()
/external/webp/src/demux/
Ddemux.c162 const int val = GetLE24(data); in ReadLE24s()