Home
last modified time | relevance | path

Searched refs:hstart1 (Results 1 – 6 of 6) sorted by relevance

/external/libaom/libaom/aom_scale/generic/
Dyv12extend.c324 void aom_yv12_partial_copy_y_c(const YV12_BUFFER_CONFIG *src_ybc, int hstart1, in aom_yv12_partial_copy_y_c() argument
334 CONVERT_TO_SHORTPTR(src + vstart1 * src_ybc->y_stride + hstart1); in aom_yv12_partial_copy_y_c()
339 memcpy(dst16, src16, (hend1 - hstart1) * sizeof(uint16_t)); in aom_yv12_partial_copy_y_c()
345 src = (src + vstart1 * src_ybc->y_stride + hstart1); in aom_yv12_partial_copy_y_c()
349 memcpy(dst, src, (hend1 - hstart1)); in aom_yv12_partial_copy_y_c()
362 void aom_yv12_partial_copy_u_c(const YV12_BUFFER_CONFIG *src_bc, int hstart1, in aom_yv12_partial_copy_u_c() argument
372 CONVERT_TO_SHORTPTR(src + vstart1 * src_bc->uv_stride + hstart1); in aom_yv12_partial_copy_u_c()
376 memcpy(dst16, src16, (hend1 - hstart1) * sizeof(uint16_t)); in aom_yv12_partial_copy_u_c()
383 src = (src + vstart1 * src_bc->uv_stride + hstart1); in aom_yv12_partial_copy_u_c()
387 memcpy(dst, src, (hend1 - hstart1)); in aom_yv12_partial_copy_u_c()
[all …]
/external/libaom/config/x86_64/config/
Daom_scale_rtcd.h71 void aom_yv12_partial_copy_u_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
74 void aom_yv12_partial_copy_v_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
77 void aom_yv12_partial_copy_y_c(const struct yv12_buffer_config *src_ybc, int hstart1, int hend1, in…
/external/libaom/config/x86/config/
Daom_scale_rtcd.h71 void aom_yv12_partial_copy_u_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
74 void aom_yv12_partial_copy_v_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
77 void aom_yv12_partial_copy_y_c(const struct yv12_buffer_config *src_ybc, int hstart1, int hend1, in…
/external/libaom/config/arm/config/
Daom_scale_rtcd.h71 void aom_yv12_partial_copy_u_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
74 void aom_yv12_partial_copy_v_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
77 void aom_yv12_partial_copy_y_c(const struct yv12_buffer_config *src_ybc, int hstart1, int hend1, in…
/external/libaom/config/arm64/config/
Daom_scale_rtcd.h71 void aom_yv12_partial_copy_u_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
74 void aom_yv12_partial_copy_v_c(const struct yv12_buffer_config *src_bc, int hstart1, int hend1, int…
77 void aom_yv12_partial_copy_y_c(const struct yv12_buffer_config *src_ybc, int hstart1, int hend1, in…
/external/libaom/libaom/av1/decoder/
Dobu.c391 static void yv12_tile_copy(const YV12_BUFFER_CONFIG *src, int hstart1, in yv12_tile_copy() argument
403 CONVERT_TO_SHORTPTR(src->buffers[plane] + vstart1 * src_stride + hstart1); in yv12_tile_copy()
407 for (col = 0; col < (hend1 - hstart1); ++col) *dst8++ = (uint8_t)(*src16++); in yv12_tile_copy()
408 src16 += src_stride - (hend1 - hstart1); in yv12_tile_copy()
409 dst8 += dst_stride - (hend1 - hstart1); in yv12_tile_copy()
440 int hstart1 = pbi->dec_tile_col * w; in copy_decoded_tile_to_tile_list_buffer() local
441 int hend1 = hstart1 + w; in copy_decoded_tile_to_tile_list_buffer()
448 yv12_tile_copy(cur_frame, hstart1, hend1, vstart1, vend1, in copy_decoded_tile_to_tile_list_buffer()
453 aom_yv12_partial_copy_y(cur_frame, hstart1, hend1, vstart1, vend1, in copy_decoded_tile_to_tile_list_buffer()
457 aom_yv12_partial_copy_u(cur_frame, hstart1, hend1, vstart1, vend1, in copy_decoded_tile_to_tile_list_buffer()
[all …]