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

  /external/webp/src/demux/
demux.c 66 int canvas_width_, canvas_height_; member in struct:WebPDemuxer
422 dmux->canvas_width_ = frame->width_;
546 dmux->canvas_width_ = 1 + ReadLE24s(mem);
548 if (dmux->canvas_width_ * (uint64_t)dmux->canvas_height_ >= MAX_IMAGE_AREA) {
567 if (dmux->canvas_width_ <= 0 || dmux->canvas_height_ <= 0) return 0;
599 if (dmux->canvas_width_ <= 0 || dmux->canvas_height_ <= 0) return 0;
638 dmux->canvas_width_, dmux->canvas_height_)) {
655 dmux->canvas_width_ = -1;
682 dmux->canvas_width_ = frame->width_;
781 case WEBP_FF_CANVAS_WIDTH: return (uint32_t)dmux->canvas_width_;
    [all...]
  /external/webp/src/mux/
muxedit.c 25 mux->canvas_width_ = 0; // just to be explicit
369 mux->canvas_width_ = width;
519 if (mux->canvas_width_ != 0 || mux->canvas_height_ != 0) {
520 if (width > mux->canvas_width_ || height > mux->canvas_height_) {
523 width = mux->canvas_width_;
562 ((mux->canvas_width_ == 0 && mux->canvas_height_ == 0) ||
563 (frame->width_ == mux->canvas_width_ &&
muxi.h 69 int canvas_width_; member in struct:WebPMux
muxinternal.c 514 if (mux->canvas_width_ > 0) {
515 if (images->width_ != mux->canvas_width_ ||
muxread.c 263 mux->canvas_width_ = GetLE24(data + 12) + 1;
327 w = mux->canvas_width_;
anim_encode.c 49 const int canvas_width_; // Canvas width. member in struct:WebPAnimEncoder
257 *(int*)&enc->canvas_width_ = width;
    [all...]

Completed in 634 milliseconds