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

  /external/webp/src/dec/
io.c 32 const int mb_w = io->mb_w; local
34 const int uv_w = (mb_w + 1) / 2;
38 memcpy(y_dst + j * buf->y_stride, io->y + j * io->y_stride, mb_w);
56 const int mb_w = io->mb_w; local
61 dst, dst + buf->stride, mb_w);
68 sample(y_src, y_src, u_src, v_src, dst, dst, mb_w);
85 const int mb_w = io->mb_w;
115 const int mb_w = io->mb_w; local
166 const int mb_w = io->mb_w; local
216 const int mb_w = io->mb_w; local
249 const int mb_w = io->mb_w; local
595 const int mb_w = io->mb_w; local
    [all...]
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
frame.c 232 io->mb_w = io->crop_right - io->crop_left;
410 const int mb_w = dec->mb_w_; local
412 const size_t intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t);
413 const size_t top_size = (16 + 8 + 8) * mb_w;
414 const size_t mb_info_size = (mb_w + 1) * sizeof(VP8MB);
417 mb_w * (dec->use_threads_ ? 2 : 1) * sizeof(VP8FInfo)
451 mem += 16 * mb_w;
453 mem += 8 * mb_w;
455 mem += 8 * mb_w;
468 dec->thread_ctx_.f_info_ += mb_w;
    [all...]
vp8l.c 368 const int in_width = io->mb_w;
438 int mb_w, int mb_h,
444 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out);
547 int mb_w, int num_rows) {
551 ConvertToYUVA((const uint32_t*)row_in, mb_w, y_pos, dec->output_);
561 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
583 io->mb_w = io->crop_right - io->crop_left;
653 io->mb_w, io->mb_h, rgba, buf->stride);
659 EmitRowsYUVA(dec, rows_data, in_stride, io->mb_w, io->mb_h);
    [all...]
webp.c 737 io->mb_w = w;
vp8.c 339 io->mb_w = io->width; // sanity check
  /external/webp/src/enc/
webpenc.c 170 const int mb_w = (picture->width + 15) >> 4; local
172 const int preds_w = 4 * mb_w + 1;
175 const int top_stride = mb_w * 16;
176 const size_t nz_size = (mb_w + 1) * sizeof(uint32_t);
178 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
219 mb_w * mb_h * 384 * sizeof(uint8_t));
231 enc->mb_w_ = mb_w;
vp8l.c 1136 const int mb_w = (width + 15) >> 4; local
    [all...]

Completed in 43 milliseconds