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

  /external/webp/include/webp/
format_constants.h 69 #define TAG_SIZE 4 // Size of a chunk tag (e.g. "VP8L").
  /external/webp/src/webp/
format_constants.h 69 #define TAG_SIZE 4 // Size of a chunk tag (e.g. "VP8L").
  /external/webp/src/dec/
webp_dec.c 62 if (*data_size >= RIFF_HEADER_SIZE && !memcmp(*data, "RIFF", TAG_SIZE)) {
63 if (memcmp(*data + 8, "WEBP", TAG_SIZE)) {
66 const uint32_t size = GetLE32(*data + TAG_SIZE);
68 if (size < TAG_SIZE + CHUNK_HEADER_SIZE) {
109 if (!memcmp(*data, "VP8X", TAG_SIZE)) {
112 const uint32_t chunk_size = GetLE32(*data + TAG_SIZE);
153 uint32_t total_size = TAG_SIZE + // "WEBP".
177 chunk_size = GetLE32(buf + TAG_SIZE);
194 if (!memcmp(buf, "VP8 ", TAG_SIZE) ||
195 !memcmp(buf, "VP8L", TAG_SIZE)) {
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
TiffHelpers.h 86 TAG_SIZE = 2,
  /external/webp/src/enc/
syntax_enc.c 44 PutLE32(riff + TAG_SIZE, (uint32_t)riff_size);
66 PutLE32(vp8x + TAG_SIZE, VP8X_CHUNK_SIZE);
85 PutLE32(alpha_chunk_hdr + TAG_SIZE, enc->alpha_data_size_);
108 PutLE32(vp8_chunk_hdr + TAG_SIZE, (uint32_t)vp8_size);
337 riff_size = TAG_SIZE + CHUNK_HEADER_SIZE + vp8_size;