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

  /external/chromium_org/third_party/libwebp/dec/
decode_vp8.h 52 // in mb_w / mb_h fields.
56 int mb_w; // number of columns in the sample member in struct:VP8Io
67 // or abort request. The actual size of the area to update is mb_w x mb_h
frame.c 234 io->mb_w = io->crop_right - io->crop_left;
412 const int mb_w = dec->mb_w_; local
414 const size_t intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t);
415 const size_t top_size = (16 + 8 + 8) * mb_w;
416 const size_t mb_info_size = (mb_w + 1) * sizeof(VP8MB);
419 mb_w * (dec->use_threads_ ? 2 : 1) * sizeof(VP8FInfo)
453 mem += 16 * mb_w;
455 mem += 8 * mb_w;
457 mem += 8 * mb_w;
470 dec->thread_ctx_.f_info_ += mb_w;
    [all...]
io.c 34 const int mb_w = io->mb_w; local
36 const int uv_w = (mb_w + 1) / 2;
40 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w);
58 const int mb_w = io->mb_w; local
63 dst, dst + buf->stride, mb_w);
70 sample(y_src, y_src, u_src, v_src, dst, dst, mb_w);
87 const int mb_w = io->mb_w;
117 const int mb_w = io->mb_w; local
168 const int mb_w = io->mb_w; local
218 const int mb_w = io->mb_w; local
251 const int mb_w = io->mb_w; local
597 const int mb_w = io->mb_w; local
    [all...]
  /external/webp/src/dec/
decode_vp8.h 52 // in mb_w / mb_h fields.
56 int mb_w; // number of columns in the sample member in struct:VP8Io
67 // or abort request. The actual size of the area to update is mb_w x mb_h
frame.c 234 io->mb_w = io->crop_right - io->crop_left;
412 const int mb_w = dec->mb_w_; local
414 const size_t intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t);
415 const size_t top_size = (16 + 8 + 8) * mb_w;
416 const size_t mb_info_size = (mb_w + 1) * sizeof(VP8MB);
419 mb_w * (dec->use_threads_ ? 2 : 1) * sizeof(VP8FInfo)
453 mem += 16 * mb_w;
455 mem += 8 * mb_w;
457 mem += 8 * mb_w;
470 dec->thread_ctx_.f_info_ += mb_w;
    [all...]
io.c 34 const int mb_w = io->mb_w; local
36 const int uv_w = (mb_w + 1) / 2;
40 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w);
58 const int mb_w = io->mb_w; local
63 dst, dst + buf->stride, mb_w);
70 sample(y_src, y_src, u_src, v_src, dst, dst, mb_w);
87 const int mb_w = io->mb_w;
117 const int mb_w = io->mb_w; local
168 const int mb_w = io->mb_w; local
218 const int mb_w = io->mb_w; local
251 const int mb_w = io->mb_w; local
597 const int mb_w = io->mb_w; local
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
webpenc.c 172 const int mb_w = (picture->width + 15) >> 4; local
174 const int preds_w = 4 * mb_w + 1;
177 const int top_stride = mb_w * 16;
178 const size_t nz_size = (mb_w + 1) * sizeof(uint32_t);
180 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
221 mb_w * mb_h * 384 * sizeof(uint8_t));
233 enc->mb_w_ = mb_w;
vp8l.c 1156 const int mb_w = (width + 15) >> 4; local
    [all...]
  /external/webp/src/enc/
webpenc.c 172 const int mb_w = (picture->width + 15) >> 4; local
174 const int preds_w = 4 * mb_w + 1;
177 const int top_stride = mb_w * 16;
178 const size_t nz_size = (mb_w + 1) * sizeof(uint32_t);
180 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
221 mb_w * mb_h * 384 * sizeof(uint8_t));
233 enc->mb_w_ = mb_w;
vp8l.c 1156 const int mb_w = (width + 15) >> 4; local
    [all...]

Completed in 73 milliseconds