Home | History | Annotate | Download | only in enc

Lines Matching full:vp8x

29   return !!enc->has_alpha_;  // Currently the only case when VP8X is needed.
57 uint8_t vp8x[CHUNK_HEADER_SIZE + VP8X_CHUNK_SIZE] = {
70 PutLE32(vp8x + TAG_SIZE, VP8X_CHUNK_SIZE);
71 PutLE32(vp8x + CHUNK_HEADER_SIZE, flags);
72 PutLE24(vp8x + CHUNK_HEADER_SIZE + 4, pic->width - 1);
73 PutLE24(vp8x + CHUNK_HEADER_SIZE + 7, pic->height - 1);
74 if (!pic->writer(vp8x, sizeof(vp8x), pic)) {
162 // VP8X.
382 if (IsVP8XNeeded(enc)) { // Add size for: VP8X header + data.