HomeSort by relevance Sort by last modified time
    Searched refs:GetLE24 (Results 1 - 7 of 7) sorted by null

  /external/opencv3/3rdparty/libwebp/utils/
utils.h 51 static WEBP_INLINE int GetLE24(const uint8_t* const data) {
  /external/webp/src/utils/
utils.h 84 static WEBP_INLINE int GetLE24(const uint8_t* const data) {
  /external/opencv3/3rdparty/libwebp/mux/
muxread.c 393 frame->x_offset = 2 * GetLE24(frame_frgm_data->bytes + 0);
394 frame->y_offset = 2 * GetLE24(frame_frgm_data->bytes + 3);
395 frame->duration = is_frame ? GetLE24(frame_frgm_data->bytes + 12) : 1;
muxedit.c 421 *x_offset = 2 * GetLE24(data->bytes + 0);
422 *y_offset = 2 * GetLE24(data->bytes + 3);
423 if (is_frame) *duration = GetLE24(data->bytes + 12);
  /external/webp/src/dec/
webp.c 122 width = 1 + GetLE24(*data + 12);
123 height = 1 + GetLE24(*data + 15);
  /external/opencv3/3rdparty/libwebp/demux/
demux.c 164 const int val = GetLE24(data);
  /external/webp/src/demux/
demux.c 162 const int val = GetLE24(data);

Completed in 452 milliseconds