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

  /external/opencv3/3rdparty/libwebp/mux/
muxedit.c 117 WebPMuxAnimDispose dispose_method, int is_lossless, int is_frame,
122 const size_t frame_frgm_size = kChunks[is_frame ? IDX_ANMF : IDX_FRGM].size;
139 if (is_frame) {
301 int is_frame; local
307 is_frame = (frame->id == WEBP_CHUNK_ANMF);
308 if (!(is_frame || (frame->id == WEBP_CHUNK_FRGM))) {
339 const int duration = is_frame ? frame->duration : 1 /* unused */;
341 is_frame ? frame->dispose_method : 0 /* unused */;
342 const uint32_t tag = kChunks[is_frame ? IDX_ANMF : IDX_FRGM].tag;
353 is_frame, &frame_frgm)
413 const int is_frame = (tag == kChunks[IDX_ANMF].tag); local
    [all...]
muxread.c 382 const int is_frame = (wpi->header_->tag_ == kChunks[IDX_ANMF].tag); local
383 const CHUNK_INDEX idx = is_frame ? IDX_ANMF : IDX_FRGM;
386 if (!is_frame) return WEBP_MUX_INVALID_ARGUMENT;
395 frame->duration = is_frame ? GetLE24(frame_frgm_data->bytes + 12) : 1;
397 is_frame ? (WebPMuxAnimDispose)(frame_frgm_data->bytes[15] & 1)

Completed in 811 milliseconds