/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_scan.c | 311 int16_t *neighbors) { in init_scan_neighbors() argument 316 neighbors[MAX_NEIGHBORS * 0 + 0] = 0; in init_scan_neighbors() 317 neighbors[MAX_NEIGHBORS * 0 + 1] = 0; in init_scan_neighbors() 340 neighbors[MAX_NEIGHBORS * n + 0] = in init_scan_neighbors() 341 neighbors[MAX_NEIGHBORS * n + 1] = a; in init_scan_neighbors() 344 neighbors[MAX_NEIGHBORS * n + 0] = in init_scan_neighbors() 345 neighbors[MAX_NEIGHBORS * n + 1] = b; in init_scan_neighbors() 347 neighbors[MAX_NEIGHBORS * n + 0] = a; in init_scan_neighbors() 348 neighbors[MAX_NEIGHBORS * n + 1] = b; in init_scan_neighbors() 351 neighbors[MAX_NEIGHBORS * n + 0] = in init_scan_neighbors() [all …]
|
D | vp9_scan.h | 31 const int16_t *neighbors; member 37 static INLINE int get_coef_context(const int16_t *neighbors, in get_coef_context() argument 39 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] + in get_coef_context() 40 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> 1; in get_coef_context()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
D | error_concealment.c | 434 EC_BLOCK *neighbors, in find_neighboring_blocks() argument 445 assign_neighbor(&neighbors[i], mi - mi_stride - 1, 15); in find_neighboring_blocks() 449 assign_neighbor(&neighbors[i], mi - mi_stride, j); in find_neighboring_blocks() 457 assign_neighbor(&neighbors[i], mi - mi_stride + 1, 12); in find_neighboring_blocks() 461 assign_neighbor(&neighbors[i], mi + 1, j); in find_neighboring_blocks() 469 assign_neighbor(&neighbors[i], mi + mi_stride + 1, 0); in find_neighboring_blocks() 473 assign_neighbor(&neighbors[i], mi + mi_stride, j); in find_neighboring_blocks() 481 assign_neighbor(&neighbors[i], mi + mi_stride - 1, 4); in find_neighboring_blocks() 486 assign_neighbor(&neighbors[i], mi - 1, j); in find_neighboring_blocks() 498 EC_BLOCK *neighbors, in interpolate_mvs() argument [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 660 static const MV neighbors[4] = {{0, -1}, { -1, 0}, {1, 0}, {0, 1}}; in vp9_pattern_search() local 666 const MV this_mv = {br + neighbors[i].row, in vp9_pattern_search() 667 bc + neighbors[i].col}; in vp9_pattern_search() 675 const MV this_mv = {br + neighbors[i].row, in vp9_pattern_search() 676 bc + neighbors[i].col}; in vp9_pattern_search() 689 br += neighbors[best_site].row; in vp9_pattern_search() 690 bc += neighbors[best_site].col; in vp9_pattern_search() 1558 const MV neighbors[4] = {{ -1, 0}, {0, -1}, {0, 1}, {1, 0}}; in vp9_refining_search_sad_c() local 1576 const MV mv = {ref_mv->row + neighbors[j].row, in vp9_refining_search_sad_c() 1577 ref_mv->col + neighbors[j].col}; in vp9_refining_search_sad_c() [all …]
|
D | vp9_tokenize.c | 246 nb = so->neighbors; in tokenize_b()
|
D | vp9_encodemb.c | 135 const int16_t *nb = so->neighbors; in optimize_b()
|
D | vp9_rdopt.c | 657 args->so->scan, args->so->neighbors, in rate_block() 1115 so->scan, so->neighbors, in rd_pick_intra4x4block() 1128 so->scan, so->neighbors, in rd_pick_intra4x4block() 1596 so->scan, so->neighbors, in encode_inter_mb_segment()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | mcomp.c | 865 MV neighbors[4] = {{0, -1}, { -1, 0}, {1, 0}, {0, 1}} ; in vp8_hex_search() local 1003 this_mv.as_mv.row = br + neighbors[i].row; in vp8_hex_search() 1004 this_mv.as_mv.col = bc + neighbors[i].col; in vp8_hex_search() 1013 this_mv.as_mv.row = br + neighbors[i].row; in vp8_hex_search() 1014 this_mv.as_mv.col = bc + neighbors[i].col; in vp8_hex_search() 1026 br += neighbors[best_site].row; in vp8_hex_search() 1027 bc += neighbors[best_site].col; in vp8_hex_search() 1730 MV neighbors[4] = {{-1, 0}, {0, -1}, {0, 1}, {1, 0}}; in vp8_refining_search_sad_c() local 1764 this_row_offset = ref_mv->as_mv.row + neighbors[j].row; in vp8_refining_search_sad_c() 1765 this_col_offset = ref_mv->as_mv.col + neighbors[j].col; in vp8_refining_search_sad_c() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
D | vp9_detokenize.c | 206 pd->dequant, ctx, so->scan, so->neighbors, r); in vp9_decode_block_tokens()
|