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

  /external/chromium_org/third_party/libwebp/enc/
syntax.c 121 uint8_t vp8_frm_hdr[VP8_FRAME_HEADER_SIZE]; local
133 vp8_frm_hdr[0] = (bits >> 0) & 0xff;
134 vp8_frm_hdr[1] = (bits >> 8) & 0xff;
135 vp8_frm_hdr[2] = (bits >> 16) & 0xff;
137 vp8_frm_hdr[3] = (VP8_SIGNATURE >> 16) & 0xff;
138 vp8_frm_hdr[4] = (VP8_SIGNATURE >> 8) & 0xff;
139 vp8_frm_hdr[5] = (VP8_SIGNATURE >> 0) & 0xff;
141 vp8_frm_hdr[6] = pic->width & 0xff;
142 vp8_frm_hdr[7] = pic->width >> 8;
143 vp8_frm_hdr[8] = pic->height & 0xff
    [all...]
  /external/webp/src/enc/
syntax.c 121 uint8_t vp8_frm_hdr[VP8_FRAME_HEADER_SIZE]; local
133 vp8_frm_hdr[0] = (bits >> 0) & 0xff;
134 vp8_frm_hdr[1] = (bits >> 8) & 0xff;
135 vp8_frm_hdr[2] = (bits >> 16) & 0xff;
137 vp8_frm_hdr[3] = (VP8_SIGNATURE >> 16) & 0xff;
138 vp8_frm_hdr[4] = (VP8_SIGNATURE >> 8) & 0xff;
139 vp8_frm_hdr[5] = (VP8_SIGNATURE >> 0) & 0xff;
141 vp8_frm_hdr[6] = pic->width & 0xff;
142 vp8_frm_hdr[7] = pic->width >> 8;
143 vp8_frm_hdr[8] = pic->height & 0xff
    [all...]

Completed in 35 milliseconds