Searched refs:above_seg_context (Results 1 – 10 of 10) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | alloccommon.c | 199 aom_free(cm->above_seg_context[tile_row]); in av1_free_above_context_buffers() 200 cm->above_seg_context[tile_row] = NULL; in av1_free_above_context_buffers() 209 aom_free(cm->above_seg_context); in av1_free_above_context_buffers() 210 cm->above_seg_context = NULL; in av1_free_above_context_buffers() 247 cm->above_seg_context = (PARTITION_CONTEXT **)aom_calloc( in av1_alloc_above_context_buffers() 248 num_alloc_above_contexts, sizeof(cm->above_seg_context)); in av1_alloc_above_context_buffers() 249 if (!cm->above_seg_context) return 1; in av1_alloc_above_context_buffers() 262 cm->above_seg_context[tile_row] = (PARTITION_CONTEXT *)aom_calloc( in av1_alloc_above_context_buffers() 263 aligned_mi_cols, sizeof(*cm->above_seg_context[tile_row])); in av1_alloc_above_context_buffers() 264 if (!cm->above_seg_context[tile_row]) return 1; in av1_alloc_above_context_buffers()
|
D | onyxc_int.h | 517 PARTITION_CONTEXT **above_seg_context; member 754 xd->above_seg_context = cm->above_seg_context[tile_row]; in av1_init_above_context() 908 PARTITION_CONTEXT *const above_ctx = xd->above_seg_context + mi_col; in update_partition_context() 1053 const PARTITION_CONTEXT *above_ctx = xd->above_seg_context + mi_col; in partition_plane_context() 1141 av1_zero_array(cm->above_seg_context[tile_row] + mi_col_start, aligned_width); in av1_zero_above_context()
|
D | blockd.h | 525 PARTITION_CONTEXT *above_seg_context; member
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_alloccommon.c | 98 vpx_free(cm->above_seg_context); in vp9_free_context_buffers() 99 cm->above_seg_context = NULL; in vp9_free_context_buffers() 139 vpx_free(cm->above_seg_context); in vp9_alloc_context_buffers() 140 cm->above_seg_context = (PARTITION_CONTEXT *)vpx_calloc( in vp9_alloc_context_buffers() 141 mi_cols_aligned_to_sb(cm->mi_cols), sizeof(*cm->above_seg_context)); in vp9_alloc_context_buffers() 142 if (!cm->above_seg_context) goto fail; in vp9_alloc_context_buffers()
|
D | vp9_onyxc_int.h | 258 PARTITION_CONTEXT *above_seg_context; member 344 xd->above_seg_context = cm->above_seg_context; in vp9_init_macroblockd() 388 PARTITION_CONTEXT *const above_ctx = xd->above_seg_context + mi_col; in update_partition_context() 403 const PARTITION_CONTEXT *above_ctx = xd->above_seg_context + mi_col; in partition_plane_context()
|
D | vp9_blockd.h | 187 PARTITION_CONTEXT *above_seg_context; member
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1071 const PARTITION_CONTEXT *above_ctx = twd->xd.above_seg_context + mi_col; in dec_partition_plane_context() 1084 PARTITION_CONTEXT *const above_ctx = twd->xd.above_seg_context + mi_col; in dec_update_partition_context() 1730 memset(cm->above_seg_context, 0, in decode_tiles() 1731 sizeof(*cm->above_seg_context) * aligned_cols); in decode_tiles() 2019 memset(cm->above_seg_context, 0, in decode_tiles_mt() 2020 sizeof(*cm->above_seg_context) * aligned_mi_cols); in decode_tiles_mt()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 1065 memset(cm->above_seg_context, 0, in encode_tiles() 1066 sizeof(*cm->above_seg_context) * mi_cols_aligned_to_sb(cm->mi_cols)); in encode_tiles()
|
D | vp9_encodeframe.c | 2114 memcpy(xd->above_seg_context + mi_col, sa, in restore_context() 2115 sizeof(*xd->above_seg_context) * mi_width); in restore_context() 2144 memcpy(sa, xd->above_seg_context + mi_col, in save_context() 2145 sizeof(*xd->above_seg_context) * mi_width); in save_context() 4321 memset(xd->above_seg_context, 0, in init_encode_frame_mb_context() 4322 sizeof(*xd->above_seg_context) * aligned_mi_cols); in init_encode_frame_mb_context()
|
/external/libaom/libaom/av1/encoder/ |
D | encodeframe.c | 1417 memcpy(xd->above_seg_context + mi_col, ctx->sa, in restore_context() 1418 sizeof(*xd->above_seg_context) * mi_width); in restore_context() 1454 memcpy(ctx->sa, xd->above_seg_context + mi_col, in save_context() 1455 sizeof(*xd->above_seg_context) * mi_width); in save_context()
|