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

  /external/webp/include/webp/
mux_types.h 37 ALPHA_FLAG = 0x00000010,
  /external/webp/src/webp/
mux_types.h 37 ALPHA_FLAG = 0x00000010,
  /frameworks/ex/framesequence/jni/
FrameSequence_webp.h 49 return !(mFormatFlags & ALPHA_FLAG);
  /external/webp/src/mux/
muxread.c 336 if (wpi->has_alpha_) f |= ALPHA_FLAG;
392 dst = EmitVP8XChunk(dst, wpi->width_, wpi->height_, ALPHA_FLAG); // VP8X.
muxedit.c 506 flags |= ALPHA_FLAG; // Some images have an alpha channel.
536 flags |= ALPHA_FLAG;
muxinternal.c 531 // ALPHA_FLAG & alpha chunk(s) are consistent.
532 // Note: ALPHA_FLAG can be set when there is actually no Alpha data present.
535 // VP8X chunk is present, so it should contain ALPHA_FLAG.
536 if (!(flags & ALPHA_FLAG)) return WEBP_MUX_INVALID_ARGUMENT;
  /external/webp/src/demux/
demux.c 410 const int has_alpha = !!(dmux->feature_flags_ & ALPHA_FLAG);
419 // Also, set ALPHA_FLAG if this is a lossless image with alpha.
424 dmux->feature_flags_ |= frame->has_alpha_ ? ALPHA_FLAG : 0;
684 dmux->feature_flags_ |= frame->has_alpha_ ? ALPHA_FLAG : 0;
  /external/webp/src/enc/
syntax_enc.c 18 #include "src/webp/mux_types.h" // ALPHA_FLAG
63 flags |= ALPHA_FLAG;
  /external/webp/src/dec/
webp_dec.c 20 #include "src/webp/mux_types.h" // ALPHA_FLAG
325 if (has_alpha != NULL) *has_alpha = !!(flags & ALPHA_FLAG);

Completed in 484 milliseconds