Home
last modified time | relevance | path

Searched refs:active_map (Results 1 – 16 of 16) sorted by relevance

/external/libvpx/libvpx/test/
Dactive_map_test.cc42 uint8_t active_map[9 * 13] = { in PreEncodeFrameHook() local
57 map.active_map = active_map; in PreEncodeFrameHook()
63 map.active_map = NULL; in PreEncodeFrameHook()
Dactive_map_refresh_test.cc88 uint8_t *active_map = new uint8_t[mb_width * mb_height]; in PreEncodeFrameHook() local
89 GenerateMap(mb_height, mb_width, *current, *previous, active_map); in PreEncodeFrameHook()
92 map.active_map = active_map; in PreEncodeFrameHook()
94 delete[] active_map; in PreEncodeFrameHook()
/external/libvpx/libvpx/vp8/encoder/
Dlookahead.c109 unsigned char *active_map) in vp8_lookahead_push() argument
126 if (ctx->max_sz == 1 && active_map && !flags) in vp8_lookahead_push()
137 if (active_map[col]) in vp8_lookahead_push()
150 if (!active_map[active_end]) in vp8_lookahead_push()
164 active_map += mb_cols; in vp8_lookahead_push()
Dlookahead.h70 unsigned char *active_map);
Donyx_int.h502 unsigned char *active_map; member
Donyx_if.c456 vpx_free(cpi->active_map); in dealloc_compressor_data()
457 cpi->active_map = 0; in dealloc_compressor_data()
1256 vpx_free(cpi->active_map); in vp8_alloc_compressor_data()
1257 CHECK_MEM_ERROR(cpi->active_map, in vp8_alloc_compressor_data()
1259 sizeof(*cpi->active_map))); in vp8_alloc_compressor_data()
1260 memset(cpi->active_map , 1, (cm->mb_rows * cm->mb_cols)); in vp8_alloc_compressor_data()
5231 frame_flags, cpi->active_map_enabled ? cpi->active_map : NULL)) in vp8_receive_raw_frame()
5908 memcpy(cpi->active_map, map, rows * cols); in vp8_set_active_map()
Dethreading.c180 x->active_ptr = cpi->active_map + map_index + mb_col; in thread_encoding_proc()
Dencodeframe.c500 x->active_ptr = cpi->active_map + map_index + mb_col; in encode_mb_row()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_lookahead.c135 if (!new_dimensions && ctx->max_sz == 1 && active_map && !flags) { in vp9_lookahead_push()
142 if (active_map[col]) in vp9_lookahead_push()
154 if (!active_map[active_end]) in vp9_lookahead_push()
168 active_map += mb_cols; in vp9_lookahead_push()
Dvp9_encoder.c120 if (cpi->active_map.enabled || cpi->active_map.update) in suppress_active_map()
129 const unsigned char *const active_map = cpi->active_map.map; in apply_active_map() local
135 cpi->active_map.enabled = 0; in apply_active_map()
136 cpi->active_map.update = 1; in apply_active_map()
139 if (cpi->active_map.update) { in apply_active_map()
140 if (cpi->active_map.enabled) { in apply_active_map()
142 if (seg_map[i] == AM_SEGMENT_ID_ACTIVE) seg_map[i] = active_map[i]; in apply_active_map()
158 cpi->active_map.update = 0; in apply_active_map()
167 unsigned char *const active_map_8x8 = cpi->active_map.map; in vp9_set_active_map()
170 cpi->active_map.update = 1; in vp9_set_active_map()
[all …]
Dvp9_encoder.h388 ActiveMap active_map; member
/external/libvpx/libvpx/examples/
Dset_maps.c106 map.active_map = (uint8_t *)malloc(map.rows * map.cols); in set_active_map()
108 map.active_map[i] = i % 2; in set_active_map()
113 free(map.active_map); in set_active_map()
122 map.active_map = NULL; in unset_active_map()
/external/libvpx/libvpx/vpx/
Dvp8cx.h625 unsigned char *active_map; /**< specify an on (1) or off (0) each 16x16 region within a frame */ member
/external/v8/test/cctest/
Dtest-field-type-tracking.cc917 Handle<Map> active_map = maps[kPropCount - 1]; in TEST() local
918 CHECK(!active_map->is_deprecated()); in TEST()
922 CHECK_EQ(*active_map, *updated_map); in TEST()
925 CHECK_EQ(*active_map, *updated_map); in TEST()
1984 Handle<Map> active_map = maps[kPropCount - 1]; in TestGeneralizeRepresentationWithSpecialTransition() local
1985 CHECK(!active_map->is_deprecated()); in TestGeneralizeRepresentationWithSpecialTransition()
1989 CHECK_EQ(*active_map, *updated_map); in TestGeneralizeRepresentationWithSpecialTransition()
1992 CHECK_EQ(*active_map, *updated_map); in TestGeneralizeRepresentationWithSpecialTransition()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c1285 if (!vp9_set_active_map(ctx->cpi, map->active_map, in ctrl_set_active_map()
1300 if (!vp9_get_active_map(ctx->cpi, map->active_map, in ctrl_get_active_map()
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c1238 if (!vp8_set_active_map(ctx->cpi, map->active_map, map->rows, map->cols)) in vp8e_set_activemap()