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

  /external/chromium_org/third_party/libwebp/enc/
syntax.c 29 return !!enc->has_alpha_; // Currently the only case when VP8X is needed.
57 uint8_t vp8x[CHUNK_HEADER_SIZE + VP8X_CHUNK_SIZE] = { local
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
    [all...]
  /external/webp/src/enc/
syntax.c 29 return !!enc->has_alpha_; // Currently the only case when VP8X is needed.
57 uint8_t vp8x[CHUNK_HEADER_SIZE + VP8X_CHUNK_SIZE] = { local
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
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
webp.c 40 // 12..15 "VP8X": 4-bytes tags, describing the extended-VP8 chunk.
41 // 16..19 size of the VP8X chunk starting at offset 20.
42 // 20..23 VP8X flags bit-map corresponding to the chunk-types present.
45 // There can be extra chunks after the "VP8X" chunk (ICCP, FRGM, ANMF, VP8,
93 // Validates the VP8X header and skips over it.
94 // Returns VP8_STATUS_BITSTREAM_ERROR for invalid VP8X header,
97 // If a VP8X chunk is found, found_vp8x is set to true and *width_ptr,
99 // from the VP8X chunk.
116 if (!memcmp(*data, "VP8X", TAG_SIZE)) {
124 // Verify if enough data is available to validate the VP8X chunk
    [all...]
  /external/webp/src/dec/
webp.c 40 // 12..15 "VP8X": 4-bytes tags, describing the extended-VP8 chunk.
41 // 16..19 size of the VP8X chunk starting at offset 20.
42 // 20..23 VP8X flags bit-map corresponding to the chunk-types present.
45 // There can be extra chunks after the "VP8X" chunk (ICCP, FRGM, ANMF, VP8,
93 // Validates the VP8X header and skips over it.
94 // Returns VP8_STATUS_BITSTREAM_ERROR for invalid VP8X header,
97 // If a VP8X chunk is found, found_vp8x is set to true and *width_ptr,
99 // from the VP8X chunk.
116 if (!memcmp(*data, "VP8X", TAG_SIZE)) {
124 // Verify if enough data is available to validate the VP8X chunk
    [all...]
  /external/chromium_org/third_party/libwebp/webp/
format_constants.h 76 #define VP8X_CHUNK_SIZE 10 // Size of a VP8X chunk.
78 #define MAX_CANVAS_SIZE (1 << 24) // 24-bit max for VP8X width/height.
mux_types.h 32 // VP8X Feature Flags.
mux.h 78 WEBP_CHUNK_VP8X, // VP8X
317 // WEBP_MUX_NOT_FOUND - if VP8X chunk is not present in mux object.
318 // WEBP_MUX_BAD_DATA - if VP8X chunk in mux is invalid.
demux.h 106 WEBP_FF_FORMAT_FLAGS, // Extended format flags present in the 'VP8X' chunk.
  /external/webp/include/webp/
format_constants.h 76 #define VP8X_CHUNK_SIZE 10 // Size of a VP8X chunk.
78 #define MAX_CANVAS_SIZE (1 << 24) // 24-bit max for VP8X width/height.
mux_types.h 32 // VP8X Feature Flags.
demux.h 106 WEBP_FF_FORMAT_FLAGS, // Extended format flags present in the 'VP8X' chunk.
  /external/chromium_org/third_party/libwebp/demux/
demux.c 448 // Use the frame width/height as the canvas values for non-vp8x files.
474 Skip(mem, TAG_SIZE); // VP8X
    [all...]
  /external/webp/src/demux/
demux.c 448 // Use the frame width/height as the canvas values for non-vp8x files.
474 Skip(mem, TAG_SIZE); // VP8X

Completed in 145 milliseconds