Home
last modified time | relevance | path

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

/external/webp/src/dec/
Dvp8.c250 VP8PictureHeader* pic_hdr; in VP8GetHeaders() local
287 pic_hdr = &dec->pic_hdr_; in VP8GetHeaders()
298 pic_hdr->width_ = ((buf[4] << 8) | buf[3]) & 0x3fff; in VP8GetHeaders()
299 pic_hdr->xscale_ = buf[4] >> 6; // ratio: 1, 5/4 5/3 or 2 in VP8GetHeaders()
300 pic_hdr->height_ = ((buf[6] << 8) | buf[5]) & 0x3fff; in VP8GetHeaders()
301 pic_hdr->yscale_ = buf[6] >> 6; in VP8GetHeaders()
305 dec->mb_w_ = (pic_hdr->width_ + 15) >> 4; in VP8GetHeaders()
306 dec->mb_h_ = (pic_hdr->height_ + 15) >> 4; in VP8GetHeaders()
308 io->width = pic_hdr->width_; in VP8GetHeaders()
309 io->height = pic_hdr->height_; in VP8GetHeaders()
[all …]