/external/libvpx/libvpx/test/ |
D | active_map_test.cc | 43 uint8_t active_map[9 * 13] = { in PreEncodeFrameHook() local 59 map.active_map = active_map; in PreEncodeFrameHook() 65 map.active_map = NULL; in PreEncodeFrameHook()
|
D | active_map_refresh_test.cc | 89 uint8_t *active_map = new uint8_t[mb_width * mb_height]; in PreEncodeFrameHook() local 90 GenerateMap(mb_height, mb_width, *current, *previous, active_map); in PreEncodeFrameHook() 93 map.active_map = active_map; in PreEncodeFrameHook() 95 delete[] active_map; in PreEncodeFrameHook()
|
/external/libaom/libaom/test/ |
D | active_map_test.cc | 45 uint8_t active_map[9 * 13] = { in PreEncodeFrameHook() local 61 map.active_map = active_map; in PreEncodeFrameHook() 67 map.active_map = NULL; in PreEncodeFrameHook()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | lookahead.c | 93 unsigned char *active_map) { in vp8_lookahead_push() argument 108 if (ctx->max_sz == 1 && active_map && !flags) { in vp8_lookahead_push() 115 if (active_map[col]) break; in vp8_lookahead_push() 125 if (!active_map[active_end]) break; in vp8_lookahead_push() 136 active_map += mb_cols; in vp8_lookahead_push()
|
D | lookahead.h | 61 unsigned char *active_map);
|
D | onyx_int.h | 484 unsigned char *active_map; member
|
D | onyx_if.c | 424 vpx_free(cpi->active_map); in dealloc_compressor_data() 425 cpi->active_map = 0; in dealloc_compressor_data() 1210 vpx_free(cpi->active_map); in vp8_alloc_compressor_data() 1211 CHECK_MEM_ERROR(cpi->active_map, vpx_calloc(cm->mb_rows * cm->mb_cols, in vp8_alloc_compressor_data() 1212 sizeof(*cpi->active_map))); in vp8_alloc_compressor_data() 1213 memset(cpi->active_map, 1, (cm->mb_rows * cm->mb_cols)); in vp8_alloc_compressor_data() 4782 cpi->active_map_enabled ? cpi->active_map : NULL)) { in vp8_receive_raw_frame() 5367 memcpy(cpi->active_map, map, rows * cols); in vp8_set_active_map()
|
D | ethreading.c | 173 x->active_ptr = cpi->active_map + map_index + mb_col; in thread_encoding_proc()
|
D | encodeframe.c | 450 x->active_ptr = cpi->active_map + map_index + mb_col; in encode_mb_row()
|
/external/libaom/libaom/examples/ |
D | set_maps.c | 71 map.active_map = (uint8_t *)malloc(map.rows * map.cols); in set_active_map() 72 for (i = 0; i < map.rows * map.cols; ++i) map.active_map[i] = i % 2; in set_active_map() 77 free(map.active_map); in set_active_map() 86 map.active_map = NULL; in unset_active_map()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_lookahead.c | 126 if (!new_dimensions && ctx->max_sz == 1 && active_map && !flags) { in vp9_lookahead_push() 133 if (active_map[col]) break; in vp9_lookahead_push() 143 if (!active_map[active_end]) break; in vp9_lookahead_push() 154 active_map += mb_cols; in vp9_lookahead_push()
|
D | vp9_encoder.c | 510 if (cpi->active_map.enabled || cpi->active_map.update) { in suppress_active_map() 524 const unsigned char *const active_map = cpi->active_map.map; in apply_active_map() local 530 cpi->active_map.enabled = 0; in apply_active_map() 531 cpi->active_map.update = 1; in apply_active_map() 534 if (cpi->active_map.update) { in apply_active_map() 535 if (cpi->active_map.enabled) { in apply_active_map() 537 if (seg_map[i] == AM_SEGMENT_ID_ACTIVE) seg_map[i] = active_map[i]; in apply_active_map() 553 cpi->active_map.update = 0; in apply_active_map() 726 unsigned char *const active_map_8x8 = cpi->active_map.map; in vp9_set_active_map() 729 cpi->active_map.update = 1; in vp9_set_active_map() [all …]
|
D | vp9_encoder.h | 677 ActiveMap active_map; member
|
/external/libaom/libaom/av1/encoder/ |
D | lookahead.c | 125 if (!new_dimensions && ctx->max_sz == 1 && active_map && !flags) { in av1_lookahead_push() 132 if (active_map[col]) break; in av1_lookahead_push() 142 if (!active_map[active_end]) break; in av1_lookahead_push() 153 active_map += mb_cols; in av1_lookahead_push()
|
D | encoder.c | 133 if (cpi->active_map.enabled || cpi->active_map.update) in suppress_active_map() 142 const unsigned char *const active_map = cpi->active_map.map; in apply_active_map() local 148 cpi->active_map.enabled = 0; in apply_active_map() 149 cpi->active_map.update = 1; in apply_active_map() 152 if (cpi->active_map.update) { in apply_active_map() 153 if (cpi->active_map.enabled) { in apply_active_map() 155 if (seg_map[i] == AM_SEGMENT_ID_ACTIVE) seg_map[i] = active_map[i]; in apply_active_map() 182 cpi->active_map.update = 0; in apply_active_map() 189 unsigned char *const active_map_8x8 = cpi->active_map.map; in av1_set_active_map() 194 cpi->active_map.update = 1; in av1_set_active_map() [all …]
|
D | encoder.h | 837 ActiveMap active_map; member
|
/external/libvpx/libvpx/examples/ |
D | set_maps.c | 104 map.active_map = (uint8_t *)malloc(map.rows * map.cols); in set_active_map() 105 for (i = 0; i < map.rows * map.cols; ++i) map.active_map[i] = i % 2; in set_active_map() 110 free(map.active_map); in set_active_map() 119 map.active_map = NULL; in unset_active_map()
|
/external/libvpx/libvpx/vpx/ |
D | vp8cx.h | 748 unsigned char *active_map; member
|
/external/libaom/libaom/aom/ |
D | aomcx.h | 1143 unsigned char *active_map; member
|
/external/libvpx/libvpx/vp9/ |
D | vp9_cx_iface.c | 1388 if (!vp9_set_active_map(ctx->cpi, map->active_map, (int)map->rows, in ctrl_set_active_map() 1402 if (!vp9_get_active_map(ctx->cpi, map->active_map, (int)map->rows, in ctrl_get_active_map()
|
/external/libaom/libaom/av1/ |
D | av1_cx_iface.c | 1998 if (!av1_set_active_map(ctx->cpi, map->active_map, (int)map->rows, in ctrl_set_active_map() 2013 if (!av1_get_active_map(ctx->cpi, map->active_map, (int)map->rows, in ctrl_get_active_map()
|
/external/libvpx/libvpx/vp8/ |
D | vp8_cx_iface.c | 1141 if (!vp8_set_active_map(ctx->cpi, map->active_map, map->rows, map->cols)) { in vp8e_set_activemap()
|