Home
last modified time | relevance | path

Searched refs:dc_pred_cache (Results 1 – 2 of 2) sorted by relevance

/external/libaom/libaom/av1/common/
Dcfl.c42 memcpy(xd->cfl.dc_pred_cache[pred_plane], input_16, width << 1); in cfl_store_dc_pred()
46 memcpy(xd->cfl.dc_pred_cache[pred_plane], input, width); in cfl_store_dc_pred()
49 static void cfl_load_dc_pred_lbd(const int16_t *dc_pred_cache, uint8_t *dst, in cfl_load_dc_pred_lbd() argument
52 memcpy(dst, dc_pred_cache, width); in cfl_load_dc_pred_lbd()
57 static void cfl_load_dc_pred_hbd(const int16_t *dc_pred_cache, uint16_t *dst, in cfl_load_dc_pred_hbd() argument
61 memcpy(dst, dc_pred_cache, num_bytes); in cfl_load_dc_pred_hbd()
74 cfl_load_dc_pred_hbd(xd->cfl.dc_pred_cache[pred_plane], dst_16, dst_stride, in cfl_load_dc_pred()
78 cfl_load_dc_pred_lbd(xd->cfl.dc_pred_cache[pred_plane], dst, dst_stride, in cfl_load_dc_pred()
Dblockd.h460 int16_t dc_pred_cache[CFL_PRED_PLANES][CFL_BUF_LINE]; member