Searched refs:above_seg_context (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_alloccommon.c | 107 vpx_free(cm->above_seg_context); in vp9_free_context_buffers() 108 cm->above_seg_context = NULL; in vp9_free_context_buffers() 148 vpx_free(cm->above_seg_context); in vp9_alloc_context_buffers() 149 cm->above_seg_context = (PARTITION_CONTEXT *)vpx_calloc( in vp9_alloc_context_buffers() 150 mi_cols_aligned_to_sb(cm->mi_cols), sizeof(*cm->above_seg_context)); in vp9_alloc_context_buffers() 151 if (!cm->above_seg_context) goto fail; in vp9_alloc_context_buffers()
|
D | vp9_onyxc_int.h | 250 PARTITION_CONTEXT *above_seg_context; member 364 xd->above_seg_context = cm->above_seg_context; in vp9_init_macroblockd() 408 PARTITION_CONTEXT *const above_ctx = xd->above_seg_context + mi_col; in update_partition_context() 423 const PARTITION_CONTEXT *above_ctx = xd->above_seg_context + mi_col; in partition_plane_context()
|
D | vp9_blockd.h | 188 PARTITION_CONTEXT *above_seg_context; member
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1123 const PARTITION_CONTEXT *above_ctx = twd->xd.above_seg_context + mi_col; in dec_partition_plane_context() 1136 PARTITION_CONTEXT *const above_ctx = twd->xd.above_seg_context + mi_col; in dec_update_partition_context() 2054 memset(cm->above_seg_context, 0, in decode_tiles() 2055 sizeof(*cm->above_seg_context) * aligned_cols); in decode_tiles() 2315 memset(cm->above_seg_context, 0, in init_mt() 2316 sizeof(*cm->above_seg_context) * aligned_mi_cols); in init_mt()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 1070 memset(cm->above_seg_context, 0, in encode_tiles() 1071 sizeof(*cm->above_seg_context) * mi_cols_aligned_to_sb(cm->mi_cols)); in encode_tiles()
|
D | vp9_encodeframe.c | 2193 memcpy(xd->above_seg_context + mi_col, sa, in restore_context() 2194 sizeof(*xd->above_seg_context) * mi_width); in restore_context() 2223 memcpy(sa, xd->above_seg_context + mi_col, in save_context() 2224 sizeof(*xd->above_seg_context) * mi_width); in save_context() 4522 memset(xd->above_seg_context, 0, in init_encode_frame_mb_context() 4523 sizeof(*xd->above_seg_context) * aligned_mi_cols); in init_encode_frame_mb_context()
|