/external/libvpx/libvpx/vp9/common/ |
vp9_alloccommon.c | 44 vpx_free(cm->last_frame_seg_map); 50 cm->last_frame_seg_map = NULL; 121 vpx_free(cm->last_frame_seg_map); 122 cm->last_frame_seg_map = vpx_calloc(cm->mi_rows * cm->mi_cols, 1); 123 if (!cm->last_frame_seg_map) 190 cm->last_frame_seg_map = vpx_calloc(cm->mi_rows * cm->mi_cols, 1); 191 if (!cm->last_frame_seg_map) 227 if (cm->last_frame_seg_map) 228 vpx_memset(cm->last_frame_seg_map, 0, cm->mi_rows * cm->mi_cols);
|
vp9_entropymode.c | 455 if (cm->last_frame_seg_map) 456 vpx_memset(cm->last_frame_seg_map, 0, (cm->mi_rows * cm->mi_cols));
|
vp9_onyxc_int.h | 176 unsigned char *last_frame_seg_map; member in struct:VP9Common
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_ratectrl.c | 85 cm->last_frame_seg_map, (cm->mi_rows * cm->mi_cols)); 105 vpx_memcpy(cm->last_frame_seg_map,
|
vp9_segmentation.c | 145 const int pred_segment_id = vp9_get_segment_id(cm, cm->last_frame_seg_map,
|
vp9_onyx_if.c | 292 vpx_free(cpi->common.last_frame_seg_map); 293 cpi->common.last_frame_seg_map = 0; 558 uint8_t *cache_ptr = cm->last_frame_seg_map, *cache; [all...] |
vp9_encodeframe.c | 563 : cm->last_frame_seg_map; [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodemv.c | 102 cm->last_frame_seg_map[mi_offset + y * cm->mi_cols + x] = segment_id; 132 pred_segment_id = vp9_get_segment_id(cm, cm->last_frame_seg_map,
|