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

/external/chromium_org/third_party/libwebp/dec/
H A Dio.c31 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,
70 const int mb_w = io->mb_w;
74 convert(y_src, u_src, v_src, dst, mb_w);
100 const int mb_w = io->mb_w; local
151 const int mb_w = io->mb_w; local
201 const int mb_w = io->mb_w; local
234 const int mb_w = io->mb_w; local
614 const int mb_w = io->mb_w; local
[all...]
H A Ddecode_vp8.h52 // 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
H A Dframe.c323 io->mb_w = io->crop_right - io->crop_left;
536 const int mb_w = dec->mb_w_; local
538 const size_t intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t);
539 const size_t top_size = sizeof(VP8TopSamples) * mb_w;
540 const size_t mb_info_size = (mb_w + 1) * sizeof(VP8MB);
543 mb_w * (dec->mt_method_ > 0 ? 2 : 1) * sizeof(VP8FInfo)
547 (dec->mt_method_ == 2 ? 2 : 1) * mb_w * sizeof(*dec->mb_data_);
591 dec->thread_ctx_.f_info_ += mb_w;
602 dec->thread_ctx_.mb_data_ += mb_w;
606 dec->cache_y_stride_ = 16 * mb_w;
[all...]
H A Dvp8l.c387 const int in_width = io->mb_w;
462 int mb_w, int mb_h,
467 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out);
574 int mb_w, int num_rows) {
577 ConvertToYUVA((const uint32_t*)in, mb_w, y_pos, dec->output_);
587 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
609 io->mb_w = io->crop_right - io->crop_left;
693 io->mb_w, io->mb_h, rgba, buf->stride);
699 EmitRowsYUVA(dec, rows_data, in_stride, io->mb_w, io->mb_h);
460 EmitRows(WEBP_CSP_MODE colorspace, const uint8_t* row_in, int in_stride, int mb_w, int mb_h, uint8_t* const out, int out_stride) argument
572 EmitRowsYUVA(const VP8LDecoder* const dec, const uint8_t* in, int in_stride, int mb_w, int num_rows) argument
H A Dvp8.c316 io->mb_w = io->width; // sanity check
H A Dwebp.c793 io->mb_w = w;
/external/webp/src/dec/
H A Dio.c31 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,
70 const int mb_w = io->mb_w;
74 convert(y_src, u_src, v_src, dst, mb_w);
100 const int mb_w = io->mb_w; local
151 const int mb_w = io->mb_w; local
201 const int mb_w = io->mb_w; local
234 const int mb_w = io->mb_w; local
614 const int mb_w = io->mb_w; local
[all...]
H A Ddecode_vp8.h52 // 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
H A Dframe.c323 io->mb_w = io->crop_right - io->crop_left;
536 const int mb_w = dec->mb_w_; local
538 const size_t intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t);
539 const size_t top_size = sizeof(VP8TopSamples) * mb_w;
540 const size_t mb_info_size = (mb_w + 1) * sizeof(VP8MB);
543 mb_w * (dec->mt_method_ > 0 ? 2 : 1) * sizeof(VP8FInfo)
547 (dec->mt_method_ == 2 ? 2 : 1) * mb_w * sizeof(*dec->mb_data_);
591 dec->thread_ctx_.f_info_ += mb_w;
602 dec->thread_ctx_.mb_data_ += mb_w;
606 dec->cache_y_stride_ = 16 * mb_w;
[all...]
H A Dvp8l.c387 const int in_width = io->mb_w;
462 int mb_w, int mb_h,
467 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out);
574 int mb_w, int num_rows) {
577 ConvertToYUVA((const uint32_t*)in, mb_w, y_pos, dec->output_);
587 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and
609 io->mb_w = io->crop_right - io->crop_left;
693 io->mb_w, io->mb_h, rgba, buf->stride);
699 EmitRowsYUVA(dec, rows_data, in_stride, io->mb_w, io->mb_h);
460 EmitRows(WEBP_CSP_MODE colorspace, const uint8_t* row_in, int in_stride, int mb_w, int mb_h, uint8_t* const out, int out_stride) argument
572 EmitRowsYUVA(const VP8LDecoder* const dec, const uint8_t* in, int in_stride, int mb_w, int num_rows) argument
H A Dvp8.c316 io->mb_w = io->width; // sanity check
H A Dwebp.c805 io->mb_w = w;
/external/chromium_org/third_party/libwebp/enc/
H A Dwebpenc.c142 const int mb_w = (picture->width + 15) >> 4; local
144 const int preds_w = 4 * mb_w + 1;
147 const int top_stride = mb_w * 16;
148 const size_t nz_size = (mb_w + 1) * sizeof(uint32_t) + ALIGN_CST;
149 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
186 mb_w * mb_h * 384 * sizeof(uint8_t));
198 enc->mb_w_ = mb_w;
236 VP8TBufferInit(&enc->tokens_, (int)(mb_w * mb_h * 4 * scale));
H A Dvp8l.c1229 const int mb_w = (width + 15) >> 4; local
1231 memset(picture->extra_info, 0, mb_w * mb_h * sizeof(*picture->extra_info));
/external/webp/src/enc/
H A Dwebpenc.c142 const int mb_w = (picture->width + 15) >> 4; local
144 const int preds_w = 4 * mb_w + 1;
147 const int top_stride = mb_w * 16;
148 const size_t nz_size = (mb_w + 1) * sizeof(uint32_t) + ALIGN_CST;
149 const size_t info_size = mb_w * mb_h * sizeof(VP8MBInfo);
186 mb_w * mb_h * 384 * sizeof(uint8_t));
198 enc->mb_w_ = mb_w;
236 VP8TBufferInit(&enc->tokens_, (int)(mb_w * mb_h * 4 * scale));
H A Dvp8l.c1229 const int mb_w = (width + 15) >> 4; local
1231 memset(picture->extra_info, 0, mb_w * mb_h * sizeof(*picture->extra_info));

Completed in 208 milliseconds