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

  /external/chromium_org/third_party/libwebp/dec/
vp8.c 249 VP8PictureHeader* pic_hdr; local
312 pic_hdr = &dec->pic_hdr_;
323 pic_hdr->width_ = ((buf[4] << 8) | buf[3]) & 0x3fff;
324 pic_hdr->xscale_ = buf[4] >> 6; // ratio: 1, 5/4 5/3 or 2
325 pic_hdr->height_ = ((buf[6] << 8) | buf[5]) & 0x3fff;
326 pic_hdr->yscale_ = buf[6] >> 6;
330 dec->mb_w_ = (pic_hdr->width_ + 15) >> 4;
331 dec->mb_h_ = (pic_hdr->height_ + 15) >> 4;
333 io->width = pic_hdr->width_;
334 io->height = pic_hdr->height_
    [all...]
  /external/webp/src/dec/
vp8.c 249 VP8PictureHeader* pic_hdr; local
312 pic_hdr = &dec->pic_hdr_;
323 pic_hdr->width_ = ((buf[4] << 8) | buf[3]) & 0x3fff;
324 pic_hdr->xscale_ = buf[4] >> 6; // ratio: 1, 5/4 5/3 or 2
325 pic_hdr->height_ = ((buf[6] << 8) | buf[5]) & 0x3fff;
326 pic_hdr->yscale_ = buf[6] >> 6;
330 dec->mb_w_ = (pic_hdr->width_ + 15) >> 4;
331 dec->mb_h_ = (pic_hdr->height_ + 15) >> 4;
333 io->width = pic_hdr->width_;
334 io->height = pic_hdr->height_
    [all...]

Completed in 360 milliseconds