/external/chromium_org/third_party/libwebp/dec/ |
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...] |
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...] |
vp8l.c | 371 const int in_width = io->mb_w; 441 int mb_w, int mb_h, 447 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out); 550 int mb_w, int num_rows) { 554 ConvertToYUVA((const uint32_t*)row_in, mb_w, y_pos, dec->output_); 564 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and 586 io->mb_w = io->crop_right - io->crop_left; 670 io->mb_w, io->mb_h, rgba, buf->stride); 676 EmitRowsYUVA(dec, rows_data, in_stride, io->mb_w, io->mb_h); [all...] |
vp8.c | 341 io->mb_w = io->width; // sanity check
|
webp.c | 774 io->mb_w = w;
|
/external/webp/src/dec/ |
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...] |
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...] |
vp8l.c | 370 const int in_width = io->mb_w; 440 int mb_w, int mb_h, 446 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out); 549 int mb_w, int num_rows) { 553 ConvertToYUVA((const uint32_t*)row_in, mb_w, y_pos, dec->output_); 563 // Sets io->mb_y, io->mb_h & io->mb_w according to start row, end row and 585 io->mb_w = io->crop_right - io->crop_left; 669 io->mb_w, io->mb_h, rgba, buf->stride); 675 EmitRowsYUVA(dec, rows_data, in_stride, io->mb_w, io->mb_h); [all...] |
vp8.c | 341 io->mb_w = io->width; // sanity check
|
webp.c | 757 io->mb_w = w;
|
/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...] |