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

  /external/webp/src/enc/
syntax_enc.c 25 return !!enc->has_alpha_; // Currently the only case when VP8X is needed.
53 uint8_t vp8x[CHUNK_HEADER_SIZE + VP8X_CHUNK_SIZE] = { local
66 PutLE32(vp8x + TAG_SIZE, VP8X_CHUNK_SIZE);
67 PutLE32(vp8x + CHUNK_HEADER_SIZE, flags);
68 PutLE24(vp8x + CHUNK_HEADER_SIZE + 4, pic->width - 1);
69 PutLE24(vp8x + CHUNK_HEADER_SIZE + 7, pic->height - 1);
70 if (!pic->writer(vp8x, sizeof(vp8x), pic)) {
158 // VP8X.
338 if (IsVP8XNeeded(enc)) { // Add size for: VP8X header + data
    [all...]
  /external/webp/src/mux/
muxedit.c 365 // If we already assembled a VP8X chunk, invalidate it.
463 // VP8X format:
474 const WebPData vp8x = { data, VP8X_CHUNK_SIZE }; local
484 // If VP8X chunk(s) is(are) already present, remove them (and later add new
485 // VP8X chunk with updated flags).
528 // For simple file format, VP8X chunk should not be added.
535 // without a VP8X chunk!
539 PutLE32(data + 0, flags); // VP8X chunk flags.
543 return MuxSet(mux, kChunks[IDX_VP8X].tag, 1, &vp8x, 1);

Completed in 86 milliseconds