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

  /external/webp/src/dec/
io.c 241 const int mb_w = io->mb_w; local
243 const int uv_w = (mb_w + 1) / 2;
246 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w);
264 const int mb_w = io->mb_w; local
269 dst, dst + buf->stride, mb_w);
276 sample(y_src, y_src, u_src, v_src, dst, dst, mb_w);
293 const int mb_w = io->mb_w;
325 const int mb_w = io->mb_w; local
377 const int mb_w = io->mb_w; local
394 const int mb_w = io->mb_w; local
838 const int mb_w = io->mb_w; local
    [all...]
frame.c 32 const int mb_w = dec->mb_w_; local
33 const int intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t);
34 const int top_size = (16 + 8 + 8) * mb_w;
35 const int info_size = (mb_w + 1) * sizeof(VP8MB);
64 mem += 16 * mb_w;
66 mem += 8 * mb_w;
68 mem += 8 * mb_w;
81 dec->cache_y_stride_ = 16 * mb_w;
82 dec->cache_uv_stride_ = 8 * mb_w;
98 memset(dec->mb_info_ - 1, 0, (mb_w + 1) * sizeof(*dec->mb_info_))
    [all...]
vp8.c 353 io->mb_w = io->width; // sanity check
  /external/webp/src/enc/
webpenc.c 147 const int mb_w = (picture->width + 15) >> 4; local
149 const int preds_w = 4 * mb_w + 1;
152 const int top_stride = mb_w * 16;
153 const size_t nz_size = (mb_w + 1) * sizeof(uint32_t);
155 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
195 mb_w * mb_h * 384 * sizeof(uint8_t));
207 enc->mb_w_ = mb_w;
  /external/webp/include/webp/
decode_vp8.h 50 // in mb_w / mb_h fields.
54 int mb_w; // number of columns in the sample member in struct:VP8Io
65 // or abort request. The actual size of the area to update is mb_w x mb_h

Completed in 1864 milliseconds