Searched refs:mb_w (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | io_dec.c | 31 const int mb_w = io->mb_w; in EmitYUV() local 33 const int uv_w = (mb_w + 1) / 2; in EmitYUV() 74 const int mb_w = io->mb_w; in EmitFancyRGB() local 75 const int uv_w = (mb_w + 1) / 2; in EmitFancyRGB() 134 const int mb_w = io->mb_w; in EmitAlphaYUV() local 183 const int mb_w = io->mb_w; in EmitAlphaRGB() local 209 const int mb_w = io->mb_w; in EmitAlphaRGBA4444() local 223 for (i = 0; i < mb_w; ++i) { in EmitAlphaRGBA4444() 587 p->tmp_u = p->tmp_y + io->mb_w; in CustomSetup() 615 const int mb_w = io->mb_w; in CustomPut() local [all …]
|
A D | frame_dec.c | 480 io->mb_w = io->crop_right - io->crop_left; in FinishRow() 684 const int mb_w = dec->mb_w_; in AllocateMemory() local 686 const size_t intra_pred_mode_size = 4 * mb_w * sizeof(uint8_t); in AllocateMemory() 687 const size_t top_size = sizeof(VP8TopSamples) * mb_w; in AllocateMemory() 688 const size_t mb_info_size = (mb_w + 1) * sizeof(VP8MB); in AllocateMemory() 691 mb_w * (dec->mt_method_ > 0 ? 2 : 1) * sizeof(VP8FInfo) in AllocateMemory() 695 (dec->mt_method_ == 2 ? 2 : 1) * mb_w * sizeof(*dec->mb_data_); in AllocateMemory() 739 dec->thread_ctx_.f_info_ += mb_w; in AllocateMemory() 750 dec->thread_ctx_.mb_data_ += mb_w; in AllocateMemory() 754 dec->cache_y_stride_ = 16 * mb_w; in AllocateMemory() [all …]
|
A D | vp8_dec.h | 56 int mb_w; // number of columns in the sample member
|
A D | vp8l_dec.c | 540 const int in_width = io->mb_w; in AllocateAndInitRescaler() 622 int mb_w, int mb_h, in EmitRows() argument 627 VP8LConvertFromBGRA((const uint32_t*)row_in, mb_w, colorspace, row_out); in EmitRows() 699 int mb_w, int num_rows) { in EmitRowsYUVA() argument 702 ConvertToYUVA((const uint32_t*)in, mb_w, y_pos, dec->output_); in EmitRowsYUVA() 734 io->mb_w = io->crop_right - io->crop_left; in SetCropWindow() 811 io->mb_w, io->mb_h, rgba, buf->stride); in ProcessRows() 817 EmitRowsYUVA(dec, rows_data, in_stride, io->mb_w, io->mb_h); in ProcessRows()
|
A D | vp8_dec.c | 335 io->mb_w = io->width; // sanity check in VP8GetHeaders()
|
A D | webp_dec.c | 813 io->mb_w = w; in WebPIoInitFromOptions()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | webp_enc.c | 149 const int mb_w = (picture->width + 15) >> 4; in InitVP8Encoder() local 151 const int preds_w = 4 * mb_w + 1; in InitVP8Encoder() 154 const int top_stride = mb_w * 16; in InitVP8Encoder() 155 const size_t nz_size = (mb_w + 1) * sizeof(*enc->nz_) + WEBP_ALIGN_CST; in InitVP8Encoder() 156 const size_t info_size = mb_w * mb_h * sizeof(*enc->mb_info_); in InitVP8Encoder() 164 mb_w * sizeof(*enc->top_derr_) : 0; in InitVP8Encoder() 198 mb_w * mb_h * 384 * sizeof(uint8_t)); in InitVP8Encoder() 210 enc->mb_w_ = mb_w; in InitVP8Encoder() 249 VP8TBufferInit(&enc->tokens_, (int)(mb_w * mb_h * 4 * scale)); in InitVP8Encoder()
|
A D | vp8l_enc.c | 1902 const int mb_w = (width + 15) >> 4; in VP8LEncodeImage() local 1904 memset(picture->extra_info, 0, mb_w * mb_h * sizeof(*picture->extra_info)); in VP8LEncodeImage()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/ |
A D | cwebp.c | 129 const int mb_w = (pic->width + 15) / 16; in AllocExtraInfo() local 131 pic->extra_info = (uint8_t*)malloc(mb_w * mb_h * sizeof(*pic->extra_info)); in AllocExtraInfo() 270 const int mb_w = (pic->width + 15) / 16; in PrintMapInfo() local 275 for (x = 0; x < mb_w; ++x) { in PrintMapInfo() 276 const int c = pic->extra_info[x + y * mb_w]; in PrintMapInfo()
|
Completed in 27 milliseconds