Home
last modified time | relevance | path

Searched refs:BLOCK_SIZES (Results 1 – 15 of 15) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_common_data.h21 extern const uint8_t b_width_log2_lookup[BLOCK_SIZES];
22 extern const uint8_t b_height_log2_lookup[BLOCK_SIZES];
23 extern const uint8_t mi_width_log2_lookup[BLOCK_SIZES];
24 extern const uint8_t num_8x8_blocks_wide_lookup[BLOCK_SIZES];
25 extern const uint8_t num_8x8_blocks_high_lookup[BLOCK_SIZES];
26 extern const uint8_t num_4x4_blocks_high_lookup[BLOCK_SIZES];
27 extern const uint8_t num_4x4_blocks_wide_lookup[BLOCK_SIZES];
28 extern const uint8_t size_group_lookup[BLOCK_SIZES];
29 extern const uint8_t num_pels_log2_lookup[BLOCK_SIZES];
30 extern const PARTITION_TYPE partition_lookup[][BLOCK_SIZES];
[all …]
Dvp9_common_data.c15 const uint8_t b_width_log2_lookup[BLOCK_SIZES] = { 0, 0, 1, 1, 1, 2, 2,
17 const uint8_t b_height_log2_lookup[BLOCK_SIZES] = { 0, 1, 0, 1, 2, 1, 2,
19 const uint8_t num_4x4_blocks_wide_lookup[BLOCK_SIZES] = { 1, 1, 2, 2, 2, 4, 4,
21 const uint8_t num_4x4_blocks_high_lookup[BLOCK_SIZES] = { 1, 2, 1, 2, 4, 2, 4,
24 const uint8_t mi_width_log2_lookup[BLOCK_SIZES] = { 0, 0, 0, 0, 0, 1, 1,
26 const uint8_t num_8x8_blocks_wide_lookup[BLOCK_SIZES] = { 1, 1, 1, 1, 1, 2, 2,
28 const uint8_t num_8x8_blocks_high_lookup[BLOCK_SIZES] = { 1, 1, 1, 1, 2, 1, 2,
32 const uint8_t size_group_lookup[BLOCK_SIZES] = { 0, 0, 0, 1, 1, 1, 2,
35 const uint8_t num_pels_log2_lookup[BLOCK_SIZES] = { 4, 5, 5, 6, 7, 7, 8,
38 const PARTITION_TYPE partition_lookup[][BLOCK_SIZES] = {
[all …]
Dvp9_enums.h57 #define BLOCK_SIZES 13 macro
58 #define BLOCK_INVALID BLOCK_SIZES
Dvp9_mvref_common.h89 static const POSITION mv_ref_blocks[BLOCK_SIZES][MVREF_NEIGHBOURS] = {
Dvp9_loopfilter.c85 static const uint64_t left_prediction_mask[BLOCK_SIZES] = {
102 static const uint64_t above_prediction_mask[BLOCK_SIZES] = {
120 static const uint64_t size_mask[BLOCK_SIZES] = {
156 static const uint16_t left_prediction_mask_uv[BLOCK_SIZES] = {
172 static const uint16_t above_prediction_mask_uv[BLOCK_SIZES] = {
189 static const uint16_t size_mask_uv[BLOCK_SIZES] = {
Dvp9_onyxc_int.h56 } partition_context_lookup[BLOCK_SIZES];
/external/libvpx/libvpx/vp9/encoder/
Dvp9_speed_features.h382 int intra_y_mode_bsize_mask[BLOCK_SIZES];
406 int inter_mode_mask[BLOCK_SIZES];
Dvp9_speed_features.c241 sf->comp_inter_joint_search_thresh = BLOCK_SIZES; in set_good_speed_feature_framesize_independent()
418 sf->comp_inter_joint_search_thresh = BLOCK_SIZES; in set_rt_speed_feature_framesize_independent()
502 for (i = 0; i < BLOCK_SIZES; ++i) in set_rt_speed_feature_framesize_independent()
505 for (i = 0; i < BLOCK_SIZES; ++i) in set_rt_speed_feature_framesize_independent()
588 for (i = 0; i < BLOCK_SIZES; ++i) in set_rt_speed_feature_framesize_independent()
698 sf->use_square_only_threshold = BLOCK_SIZES; in vp9_set_speed_features_framesize_independent()
732 for (i = 0; i < BLOCK_SIZES; ++i) sf->inter_mode_mask[i] = INTER_ALL; in vp9_set_speed_features_framesize_independent()
Dvp9_multi_thread.c90 (int *)vpx_calloc(sb_rows * BLOCK_SIZES * MAX_MODES, in vp9_row_mt_mem_alloc()
92 for (i = 0; i < sb_rows * BLOCK_SIZES * MAX_MODES; i++) in vp9_row_mt_mem_alloc()
Dvp9_encoder.h282 int thresh_freq_fact[BLOCK_SIZES][MAX_MODES];
283 int mode_map[BLOCK_SIZES][MAX_MODES];
553 vp9_variance_fn_ptr_t fn_ptr[BLOCK_SIZES];
Dvp9_rd.h106 int threshes[MAX_SEGMENTS][BLOCK_SIZES][MAX_MODES];
Dvp9_rd.c64 static const uint8_t rd_thresh_block_size_factor[BLOCK_SIZES] = {
236 for (bsize = 0; bsize < BLOCK_SIZES; ++bsize) { in set_block_thresholds()
Dvp9_encodeframe.c2570 static const BLOCK_SIZE min_partition_size[BLOCK_SIZES] = {
2576 static const BLOCK_SIZE max_partition_size[BLOCK_SIZES] = {
2592 int bs_hist[BLOCK_SIZES]) { in get_sb_partition_size_range() argument
2612 static const BLOCK_SIZE next_square_size[BLOCK_SIZES] = {
2633 int bs_hist[BLOCK_SIZES] = { 0 }; in rd_auto_partition_range()
2757 const int num_16x16_blocks_wide_lookup[BLOCK_SIZES] = { 1, 1, 1, 1, 1, 1, 1,
2759 const int num_16x16_blocks_high_lookup[BLOCK_SIZES] = { 1, 1, 1, 1, 1, 1, 1,
2761 const int qindex_skip_threshold_lookup[BLOCK_SIZES] = {
2764 const int qindex_split_threshold_lookup[BLOCK_SIZES] = {
2767 const int complexity_16x16_blocks_threshold[BLOCK_SIZES] = {
[all …]
Dvp9_pickmode.c1445 int thresh_freq_fact_idx = (sb_row * BLOCK_SIZES + bsize) * MAX_MODES; in vp9_pick_inter_mode()
/external/libvpx/libvpx/test/
Dvp9_subtract_test.cc40 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES; in TEST_P()