Home
last modified time | relevance | path

Searched refs:mb_h (Results 1 – 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/libwebp/src/dec/
Dio_dec.c32 const int mb_h = io->mb_h; in EmitYUV() local
34 const int uv_h = (mb_h + 1) / 2; in EmitYUV()
35 WebPCopyPlane(io->y, io->y_stride, y_dst, buf->y_stride, mb_w, mb_h); in EmitYUV()
38 return io->mb_h; in EmitYUV()
48 dst, buf->stride, io->mb_w, io->mb_h, in EmitSampledRGB()
50 return io->mb_h; in EmitSampledRGB()
58 int num_lines_out = io->mb_h; // a priori guess in EmitFancyRGB()
68 const int y_end = io->mb_y + io->mb_h; in EmitFancyRGB()
130 const int mb_h = io->mb_h; in EmitAlphaYUV() local
134 assert(expected_num_lines_out == mb_h); in EmitAlphaYUV()
[all …]
Dvp8l_dec.c539 const int in_height = io->mb_h; in AllocateAndInitRescaler()
595 uint8_t* in, int in_stride, int mb_h, in EmitRescaledRowsRGBA() argument
600 while (num_lines_in < mb_h) { in EmitRescaledRowsRGBA()
603 const int lines_left = mb_h - num_lines_in; in EmitRescaledRowsRGBA()
623 int mb_w, int mb_h, in EmitRows() argument
625 int lines = mb_h; in EmitRows()
632 return mb_h; // Num rows out == num rows in. in EmitRows()
680 uint8_t* in, int in_stride, int mb_h) { in EmitRescaledRowsYUVA() argument
683 while (num_lines_in < mb_h) { in EmitRescaledRowsYUVA()
684 const int lines_left = mb_h - num_lines_in; in EmitRescaledRowsYUVA()
[all …]
Dvp8_dec.h57 int mb_h; // number of rows in the sample member
Dvp8_dec.c339 io->mb_h = io->height; // ditto in VP8GetHeaders()
Dwebp_dec.c821 io->mb_h = h; in WebPIoInitFromOptions()
Dframe_dec.c481 io->mb_h = y_end - y_start; in FinishRow()
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
Dio_dec.c32 const int mb_h = io->mb_h; in EmitYUV() local
34 const int uv_h = (mb_h + 1) / 2; in EmitYUV()
36 for (j = 0; j < mb_h; ++j) { in EmitYUV()
43 return io->mb_h; in EmitYUV()
53 dst, buf->stride, io->mb_w, io->mb_h, in EmitSampledRGB()
55 return io->mb_h; in EmitSampledRGB()
63 int num_lines_out = io->mb_h; // a priori guess in EmitFancyRGB()
73 const int y_end = io->mb_y + io->mb_h; in EmitFancyRGB()
135 const int mb_h = io->mb_h; in EmitAlphaYUV() local
139 assert(expected_num_lines_out == mb_h); in EmitAlphaYUV()
[all …]
Dvp8l_dec.c539 const int in_height = io->mb_h; in AllocateAndInitRescaler()
591 uint8_t* in, int in_stride, int mb_h, in EmitRescaledRowsRGBA() argument
596 while (num_lines_in < mb_h) { in EmitRescaledRowsRGBA()
599 const int lines_left = mb_h - num_lines_in; in EmitRescaledRowsRGBA()
619 int mb_w, int mb_h, in EmitRows() argument
621 int lines = mb_h; in EmitRows()
628 return mb_h; // Num rows out == num rows in. in EmitRows()
676 uint8_t* in, int in_stride, int mb_h) { in EmitRescaledRowsYUVA() argument
679 while (num_lines_in < mb_h) { in EmitRescaledRowsYUVA()
680 const int lines_left = mb_h - num_lines_in; in EmitRescaledRowsYUVA()
[all …]
Dvp8_dec.h57 int mb_h; // number of rows in the sample member
Dvp8_dec.c339 io->mb_h = io->height; // ditto in VP8GetHeaders()
Dwebp_dec.c814 io->mb_h = h; in WebPIoInitFromOptions()
Dframe_dec.c481 io->mb_h = y_end - y_start; in FinishRow()
/third_party/ffmpeg/libavfilter/
Dqp_table.c35 unsigned int mb_h = (frame->height + 15) / 16; in ff_qp_table_extract() local
37 unsigned int nb_mb = mb_h * mb_w; in ff_qp_table_extract()
56 *table_h = mb_h; in ff_qp_table_extract()
/third_party/skia/third_party/externals/libwebp/src/enc/
Dwebp_enc.c150 const int mb_h = (picture->height + 15) >> 4; in InitVP8Encoder() local
152 const int preds_h = 4 * mb_h + 1; in InitVP8Encoder()
156 const size_t info_size = mb_w * mb_h * sizeof(*enc->mb_info_); in InitVP8Encoder()
198 mb_w * mb_h * 384 * sizeof(uint8_t)); in InitVP8Encoder()
211 enc->mb_h_ = mb_h; in InitVP8Encoder()
249 VP8TBufferInit(&enc->tokens_, (int)(mb_w * mb_h * 4 * scale)); in InitVP8Encoder()
Dvp8l_enc.c2124 const int mb_h = (height + 15) >> 4; in VP8LEncodeImage() local
2125 memset(picture->extra_info, 0, mb_w * mb_h * sizeof(*picture->extra_info)); in VP8LEncodeImage()
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/
Dwebp_enc.c150 const int mb_h = (picture->height + 15) >> 4; in InitVP8Encoder() local
152 const int preds_h = 4 * mb_h + 1; in InitVP8Encoder()
156 const size_t info_size = mb_w * mb_h * sizeof(*enc->mb_info_); in InitVP8Encoder()
198 mb_w * mb_h * 384 * sizeof(uint8_t)); in InitVP8Encoder()
211 enc->mb_h_ = mb_h; in InitVP8Encoder()
249 VP8TBufferInit(&enc->tokens_, (int)(mb_w * mb_h * 4 * scale)); in InitVP8Encoder()
Dvp8l_enc.c1903 const int mb_h = (height + 15) >> 4; in VP8LEncodeImage() local
1904 memset(picture->extra_info, 0, mb_w * mb_h * sizeof(*picture->extra_info)); in VP8LEncodeImage()
/third_party/ffmpeg/libavcodec/
Dhqx.c330 int mb_h = (ctx->height + 15) >> 4; in decode_slice() local
332 int grp_h = (mb_h + 4) / 5; in decode_slice()
334 int grp_v_edge = grp_h * (mb_h / grp_h); in decode_slice()
336 int grp_h_rest = mb_h - grp_v_edge; in decode_slice()
337 int num_mbs = mb_w * mb_h; in decode_slice()
Dclearvideo.c54 int mb_h; member
330 bot_mv = ((mvi->mb_h - mb_y - 1) * mvi->mb_size); in mvi_predict()
344 static void mvi_reset(MVInfo *mvi, int mb_w, int mb_h, int mb_size) in mvi_reset() argument
348 mvi->mb_h = mb_h; in mvi_reset()
Dsnowdec.c38 const int mb_h= s->b_height << s->block_max_depth; in predict_slice_buffered() local
51 if(mb_y==mb_h) in predict_slice_buffered()
91 if(s->avmv && mb_y < mb_h && plane_index == 0) in predict_slice_buffered()
540 const int mb_h= s->b_height << s->block_max_depth; in decode_frame() local
550 for(mb_y=0; mb_y<=mb_h; mb_y++){ in decode_frame()
Dsnow.h408 const int mb_h= s->b_height << s->block_max_depth; in predict_slice() local
421 if(mb_y==mb_h) in predict_slice()
457 const int mb_h= s->b_height << s->block_max_depth; in predict_plane() local
459 for(mb_y=0; mb_y<=mb_h; mb_y++) in predict_plane()
Dg2meet.c275 int mb_w, mb_h, mb_x, mb_y, i, j; in jpg_decode_data() local
291 mb_h = (height + 15) >> 4; in jpg_decode_data()
294 num_mbs = mb_w * mb_h * 4; in jpg_decode_data()
301 for (mb_y = 0; mb_y < mb_h; mb_y++) { in jpg_decode_data()
/third_party/mesa3d/src/broadcom/common/
Dv3d_tiling.c175 uint32_t mb_h = align(image_h, 1 << log2_mb_height) >> log2_mb_height; in v3d_get_uif_pixel_offset() local
176 uint32_t mb_id = ((mb_x / 4) * ((mb_h - 1) * 4)) + mb_x + mb_y * 4; in v3d_get_uif_pixel_offset()
/third_party/flutter/skia/third_party/externals/libwebp/examples/
Dcwebp.c130 const int mb_h = (pic->height + 15) / 16; in AllocExtraInfo() local
131 pic->extra_info = (uint8_t*)malloc(mb_w * mb_h * sizeof(*pic->extra_info)); in AllocExtraInfo()
271 const int mb_h = (pic->height + 15) / 16; in PrintMapInfo() local
274 for (y = 0; y < mb_h; ++y) { in PrintMapInfo()
/third_party/skia/third_party/externals/libwebp/examples/
Dcwebp.c132 const int mb_h = (pic->height + 15) / 16; in AllocExtraInfo() local
134 (uint8_t*)WebPMalloc(mb_w * mb_h * sizeof(*pic->extra_info)); in AllocExtraInfo()
274 const int mb_h = (pic->height + 15) / 16; in PrintMapInfo() local
277 for (y = 0; y < mb_h; ++y) { in PrintMapInfo()