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

  /external/webp/src/dec/
vp8_dec.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_dec.c 480 io->mb_w = io->crop_right - io->crop_left;
693 const int mb_w = dec->mb_w_; local
695 const size_t intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t);
696 const size_t top_size = sizeof(VP8TopSamples) * mb_w;
697 const size_t mb_info_size = (mb_w + 1) * sizeof(VP8MB);
700 mb_w * (dec->mt_method_ > 0 ? 2 : 1) * sizeof(VP8FInfo)
704 (dec->mt_method_ == 2 ? 2 : 1) * mb_w * sizeof(*dec->mb_data_);
748 dec->thread_ctx_.f_info_ += mb_w;
759 dec->thread_ctx_.mb_data_ += mb_w;
763 dec->cache_y_stride_ = 16 * mb_w;
    [all...]
io_dec.c 31 const int mb_w = io->mb_w; local
33 const int uv_w = (mb_w + 1) / 2;
37 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w);
53 dst, buf->stride, io->mb_w, io->mb_h,
74 const int mb_w = io->mb_w; local
75 const int uv_w = (mb_w + 1) / 2;
79 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, mb_w);
83 dst - buf->stride, dst, mb_w);
134 const int mb_w = io->mb_w; local
183 const int mb_w = io->mb_w; local
209 const int mb_w = io->mb_w; local
611 const int mb_w = io->mb_w; local
    [all...]
  /external/webp/src/enc/
webp_enc.c 149 const int mb_w = (picture->width + 15) >> 4; local
151 const int preds_w = 4 * mb_w + 1;
154 const int top_stride = mb_w * 16;
155 const size_t nz_size = (mb_w + 1) * sizeof(*enc->nz_) + WEBP_ALIGN_CST;
156 const size_t info_size = mb_w * mb_h * sizeof(*enc->mb_info_);
193 mb_w * mb_h * 384 * sizeof(uint8_t));
205 enc->mb_w_ = mb_w;
242 VP8TBufferInit(&enc->tokens_, (int)(mb_w * mb_h * 4 * scale));
vp8l_enc.c 1652 const int mb_w = (width + 15) >> 4; local
    [all...]

Completed in 76 milliseconds