OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pic_hdr
(Results
1 - 1
of
1
) sorted by null
/external/webp/src/dec/
vp8.c
247
VP8PictureHeader*
pic_hdr
;
local
310
pic_hdr
= &dec->pic_hdr_;
321
pic_hdr
->width_ = ((buf[4] << 8) | buf[3]) & 0x3fff;
322
pic_hdr
->xscale_ = buf[4] >> 6; // ratio: 1, 5/4 5/3 or 2
323
pic_hdr
->height_ = ((buf[6] << 8) | buf[5]) & 0x3fff;
324
pic_hdr
->yscale_ = buf[6] >> 6;
328
dec->mb_w_ = (
pic_hdr
->width_ + 15) >> 4;
329
dec->mb_h_ = (
pic_hdr
->height_ + 15) >> 4;
331
io->width =
pic_hdr
->width_;
332
io->height =
pic_hdr
->height_
[
all
...]
Completed in 50 milliseconds