HomeSort by relevance Sort by last modified time
    Searched full:pic_hdr (Results 1 - 1 of 1) sorted by null

  /external/webp/src/dec/
vp8.c 256 VP8PictureHeader* pic_hdr; local
324 pic_hdr = &dec->pic_hdr_;
335 pic_hdr->width_ = ((buf[4] << 8) | buf[3]) & 0x3fff;
336 pic_hdr->xscale_ = buf[4] >> 6; // ratio: 1, 5/4 5/3 or 2
337 pic_hdr->height_ = ((buf[6] << 8) | buf[5]) & 0x3fff;
338 pic_hdr->yscale_ = buf[6] >> 6;
342 dec->mb_w_ = (pic_hdr->width_ + 15) >> 4;
343 dec->mb_h_ = (pic_hdr->height_ + 15) >> 4;
345 io->width = pic_hdr->width_;
346 io->height = pic_hdr->height_
    [all...]

Completed in 159 milliseconds