Searched refs:y_size (Results 1 – 12 of 12) sorted by relevance
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | picture_enc.c | 98 uint64_t y_size, uv_size, a_size, total_size; in WebPPictureAllocYUVA() local 113 y_size = (uint64_t)y_stride * height; in WebPPictureAllocYUVA() 117 total_size = y_size + a_size + 2 * uv_size; in WebPPictureAllocYUVA() 138 mem += y_size; in WebPPictureAllocYUVA()
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
D | buffer_dec.c | 56 const uint64_t y_size = MIN_BUFFER_SIZE(width, height, y_stride); in CheckDecBuffer() local 60 ok &= (y_size <= buf->y_size); in CheckDecBuffer() 130 buf->y_size = (size_t)size; in AllocateBuffer()
|
D | webp_dec.c | 588 output.u.YUVA.y_size = luma_size; in WebPDecodeYUVInto()
|
D | idec_dec.c | 746 idec->output_.u.YUVA.y_size = luma_size; in WebPINewYUVA()
|
/third_party/ffmpeg/libavcodec/ |
D | rpzaenc.c | 421 const int y_size = FFMIN(4, bi->image_height - bi->row * 4); in update_block_in_prev_frame() local 423 for (int y = 0; y < y_size; y++) { in update_block_in_prev_frame() 733 int y_size, rgb555; in rpza_encode_stream() local 738 y_size = FFMIN(4, bi.image_height - bi.row * 4); in rpza_encode_stream() 740 for (int y = 0; y < y_size; y++) { in rpza_encode_stream() 749 for (int y = y_size; y < 4; y++) { in rpza_encode_stream()
|
D | mpegvideo.c | 361 int y_size = s->b8_stride * (2 * s->mb_height + 1); in init_duplicate_context() local 363 int yc_size = y_size + 2 * c_size; in init_duplicate_context() 402 s->ac_val[1] = s->ac_val_base + y_size + s->mb_stride + 1; in init_duplicate_context() 718 int y_size, c_size, yc_size, i, mb_array_size, mv_table_size, x, y; in init_context_frame() local 740 y_size = s->b8_stride * (2 * s->mb_height + 1); in init_context_frame() 742 yc_size = y_size + 2 * c_size; in init_context_frame() 802 if (!FF_ALLOCZ_TYPED_ARRAY(s->coded_block_base, y_size + (s->mb_height&1)*2*s->b8_stride) || in init_context_frame() 815 s->dc_val[1] = s->dc_val_base + y_size + s->mb_stride + 1; in init_context_frame()
|
D | h264dec.c | 226 int y_size = (2 * h->mb_width + 1) * (2 * h->mb_height + 1); in ff_h264_slice_context_init() local 228 int yc_size = y_size + 2 * c_size; in ff_h264_slice_context_init() 269 er->dc_val[1] = sl->dc_val_base + y_size + h->mb_stride + 1; in ff_h264_slice_context_init()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
D | dwebp.c | 154 output_buffer->u.YUVA.y_size = stride * h; in AllocateExternalBuffer() 155 tmp += output_buffer->u.YUVA.y_size; in AllocateExternalBuffer()
|
/third_party/ffmpeg/libavfilter/ |
D | af_adeclick.c | 41 int y_size; member 341 av_fast_malloc(&c->y, &c->y_size, n * sizeof(*c->y)); in do_interpolation() 741 c->y_size = 0; in uninit()
|
/third_party/skia/third_party/externals/libwebp/imageio/ |
D | webpdec.c | 207 output_buffer->u.YUVA.y_size = pic->height * pic->y_stride; in ReadWebP()
|
/third_party/skia/third_party/externals/libwebp/src/webp/ |
D | decode.h | 194 size_t y_size; // luma plane size member
|
/third_party/astc-encoder/Source/ |
D | tinyexr.h | 10505 unsigned int x_size, y_size; in ParseEXRHeader() local 10509 memcpy(&y_size, &data.at(4), sizeof(int)); in ParseEXRHeader() 10512 tinyexr::swap4(&y_size); in ParseEXRHeader() 10515 info->tile_size_y = static_cast<int>(y_size); in ParseEXRHeader()
|