Home
last modified time | relevance | path

Searched refs:RIFF_HEADER_SIZE (Results 1 – 11 of 11) sorted by relevance

/external/webp/src/mux/
Dmuxread.c199 if (size < RIFF_HEADER_SIZE + CHUNK_HEADER_SIZE) return NULL; in WebPMuxCreateInternal()
208 tag = GetLE32(data + RIFF_HEADER_SIZE); in WebPMuxCreateInternal()
229 data += RIFF_HEADER_SIZE; in WebPMuxCreateInternal()
230 size -= RIFF_HEADER_SIZE; in WebPMuxCreateInternal()
396 const size_t size = RIFF_HEADER_SIZE + vp8x_size + alpha_size + in SynthesizeBitstream()
Dmuxinternal.c417 return data + RIFF_HEADER_SIZE; in MuxEmitRiffHeader()
Dmuxedit.c626 + ChunkListDiskSize(mux->unknown_) + RIFF_HEADER_SIZE; in WebPMuxAssemble()
/external/webp/include/webp/
Dformat_constants.h72 #define RIFF_HEADER_SIZE 12 // Size of the RIFF header ("RIFFnnnnWEBP"). macro
/external/webp/src/webp/
Dformat_constants.h72 #define RIFF_HEADER_SIZE 12 // Size of the RIFF header ("RIFFnnnnWEBP"). macro
/external/webp/src/dec/
Dwebp_dec.c62 if (*data_size >= RIFF_HEADER_SIZE && !memcmp(*data, "RIFF", TAG_SIZE)) { in ParseRIFF()
79 *data += RIFF_HEADER_SIZE; in ParseRIFF()
80 *data_size -= RIFF_HEADER_SIZE; in ParseRIFF()
297 if (data == NULL || data_size < RIFF_HEADER_SIZE) { in ParseHeadersInternal()
/external/webp/src/enc/
Dsyntax_enc.c40 uint8_t riff[RIFF_HEADER_SIZE] = { in PutRIFFHeader()
Dvp8l_enc.c1139 uint8_t riff[RIFF_HEADER_SIZE + CHUNK_HEADER_SIZE + VP8L_SIGNATURE_SIZE] = { in WriteRiffHeader()
1144 PutLE32(riff + RIFF_HEADER_SIZE + TAG_SIZE, (uint32_t)vp8l_size); in WriteRiffHeader()
Dframe_enc.c28 #define HEADER_SIZE_ESTIMATE (RIFF_HEADER_SIZE + CHUNK_HEADER_SIZE + \
/external/ImageMagick/coders/
Dwebp.c174 #define RIFF_HEADER_SIZE 12 in IsWEBPImageLossless() macro
194 offset=RIFF_HEADER_SIZE+TAG_SIZE+CHUNK_SIZE_BYTES+VP8X_CHUNK_SIZE; in IsWEBPImageLossless()
/external/webp/src/demux/
Ddemux.c373 const size_t min_size = RIFF_HEADER_SIZE + CHUNK_HEADER_SIZE; in ReadHeader()
393 Skip(mem, RIFF_HEADER_SIZE); in ReadHeader()