Searched refs:mb_w (Results 1 - 8 of 8) sorted by relevance

/external/webp/src/dec/
H A Dio.c32 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
251 const int mb_w = io->mb_w; local
599 const int mb_w = io->mb_w; local
[all...]
H A Ddecode_vp8.h50 // 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
H A Dframe.c235 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...]
H A Dvp8l.c377 const int in_width = io->mb_w;
447 int mb_w, int mb_h,
453 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out);
556 int mb_w, int num_rows) {
560 ConvertToYUVA((const uint32_t*)row_in, mb_w, y_pos, dec->output_);
570 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
592 io->mb_w = io->crop_right - io->crop_left;
662 io->mb_w, io->mb_h, rgba, buf->stride);
668 EmitRowsYUVA(dec, rows_data, in_stride, io->mb_w, io->mb_h);
445 EmitRows(WEBP_CSP_MODE colorspace, const uint32_t* const data, int in_stride, int mb_w, int mb_h, uint8_t* const out, int out_stride) argument
554 EmitRowsYUVA(const VP8LDecoder* const dec, const uint32_t* const data, int in_stride, int mb_w, int num_rows) argument
H A Dwebp.c737 io->mb_w = w;
H A Dvp8.c353 io->mb_w = io->width; // sanity check
/external/webp/src/enc/
H A Dwebpenc.c151 const int mb_w = (picture->width + 15) >> 4; local
153 const int preds_w = 4 * mb_w + 1;
156 const int top_stride = mb_w * 16;
157 const size_t nz_size = (mb_w + 1) * sizeof(uint32_t);
159 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
200 mb_w * mb_h * 384 * sizeof(uint8_t));
212 enc->mb_w_ = mb_w;
H A Dvp8l.c1131 const int mb_w = (width + 15) >> 4; local
1133 memset(picture->extra_info, 0, mb_w * mb_h * sizeof(*picture->extra_info));

Completed in 207 milliseconds