Home
last modified time | relevance | path

Searched refs:canvas_height_ (Results 1 – 6 of 6) sorted by relevance

/external/webp/src/demux/
Ddemux.c66 int canvas_width_, canvas_height_; member
423 dmux->canvas_height_ = frame->height_; in ParseSingleImage()
547 dmux->canvas_height_ = 1 + ReadLE24s(mem); in ParseVP8X()
548 if (dmux->canvas_width_ * (uint64_t)dmux->canvas_height_ >= MAX_IMAGE_AREA) { in ParseVP8X()
567 if (dmux->canvas_width_ <= 0 || dmux->canvas_height_ <= 0) return 0; in IsValidSimpleFormat()
599 if (dmux->canvas_width_ <= 0 || dmux->canvas_height_ <= 0) return 0; in IsValidExtendedFormat()
638 dmux->canvas_width_, dmux->canvas_height_)) { in IsValidExtendedFormat()
656 dmux->canvas_height_ = -1; in InitDemux()
683 dmux->canvas_height_ = frame->height_; in CreateRawImageDemuxer()
782 case WEBP_FF_CANVAS_HEIGHT: return (uint32_t)dmux->canvas_height_; in WebPDemuxGetI()
/external/webp/src/mux/
Dmuxedit.c26 mux->canvas_height_ = 0; in MuxInit()
370 mux->canvas_height_ = height; in WebPMuxSetCanvasSize()
519 if (mux->canvas_width_ != 0 || mux->canvas_height_ != 0) { in CreateVP8XChunk()
520 if (width > mux->canvas_width_ || height > mux->canvas_height_) { in CreateVP8XChunk()
524 height = mux->canvas_height_; in CreateVP8XChunk()
562 ((mux->canvas_width_ == 0 && mux->canvas_height_ == 0) || in MuxCleanup()
564 frame->height_ == mux->canvas_height_))) { in MuxCleanup()
Dmuxi.h71 int canvas_height_; member
Dmuxread.c279 mux->canvas_height_ = GetLE24(data + 15) + 1; in WebPMuxCreateInternal()
343 h = mux->canvas_height_; in MuxGetCanvasInfo()
Danim_encode.c50 const int canvas_height_; // Canvas height. member
258 *(int*)&enc->canvas_height_ = height; in WebPAnimEncoderNewInternal()
1372 frame->height != enc->canvas_height_) { in WebPAnimEncoderAdd()
1555 err = WebPMuxSetCanvasSize(mux, enc->canvas_width_, enc->canvas_height_); in WebPAnimEncoderAssemble()
Dmuxinternal.c513 images->height_ != mux->canvas_height_) { in MuxValidate()