Searched refs:above_seg_context (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_alloccommon.c | 116 vpx_free(cm->above_seg_context); in vp9_free_context_buffers() 117 cm->above_seg_context = NULL; in vp9_free_context_buffers() 147 vpx_free(cm->above_seg_context); in vp9_alloc_context_buffers() 148 cm->above_seg_context = (PARTITION_CONTEXT *)vpx_calloc( in vp9_alloc_context_buffers() 149 mi_cols_aligned_to_sb(cm->mi_cols), sizeof(*cm->above_seg_context)); in vp9_alloc_context_buffers() 150 if (!cm->above_seg_context) goto fail; in vp9_alloc_context_buffers()
|
D | vp9_onyxc_int.h | 282 PARTITION_CONTEXT *above_seg_context; member 369 xd->above_seg_context = cm->above_seg_context; in vp9_init_macroblockd() 432 PARTITION_CONTEXT *const above_ctx = xd->above_seg_context + mi_col; in update_partition_context() 448 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 | 908 const PARTITION_CONTEXT *above_ctx = xd->above_seg_context + mi_col; in dec_partition_plane_context() 921 PARTITION_CONTEXT *const above_ctx = xd->above_seg_context + mi_col; in dec_update_partition_context() 1466 memset(cm->above_seg_context, 0, in decode_tiles() 1467 sizeof(*cm->above_seg_context) * aligned_cols); in decode_tiles() 1684 memset(cm->above_seg_context, 0, in decode_tiles_mt() 1685 sizeof(*cm->above_seg_context) * aligned_mi_cols); in decode_tiles_mt()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_bitstream.c | 937 memset(cm->above_seg_context, 0, in encode_tiles() 938 sizeof(*cm->above_seg_context) * mi_cols_aligned_to_sb(cm->mi_cols)); in encode_tiles()
|
D | vp9_encodeframe.c | 1363 memcpy(xd->above_seg_context + mi_col, sa, in restore_context() 1364 sizeof(*xd->above_seg_context) * mi_width); in restore_context() 1395 memcpy(sa, xd->above_seg_context + mi_col, in save_context() 1396 sizeof(*xd->above_seg_context) * mi_width); in save_context() 2871 memset(xd->above_seg_context, 0, in init_encode_frame_mb_context() 2872 sizeof(*xd->above_seg_context) * aligned_mi_cols); in init_encode_frame_mb_context()
|