Home
last modified time | relevance | path

Searched refs:BLOCK_SIZES (Results 1 – 13 of 13) 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] =
17 const uint8_t b_height_log2_lookup[BLOCK_SIZES] =
19 const uint8_t num_4x4_blocks_wide_lookup[BLOCK_SIZES] =
21 const uint8_t num_4x4_blocks_high_lookup[BLOCK_SIZES] =
24 const uint8_t mi_width_log2_lookup[BLOCK_SIZES] =
26 const uint8_t num_8x8_blocks_wide_lookup[BLOCK_SIZES] =
28 const uint8_t num_8x8_blocks_high_lookup[BLOCK_SIZES] =
32 const uint8_t size_group_lookup[BLOCK_SIZES] =
35 const uint8_t num_pels_log2_lookup[BLOCK_SIZES] =
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.c164 sf->comp_inter_joint_search_thresh = BLOCK_SIZES; in set_good_speed_feature()
296 sf->comp_inter_joint_search_thresh = BLOCK_SIZES; in set_rt_speed_feature()
375 for (i = 0; i < BLOCK_SIZES; ++i) in set_rt_speed_feature()
378 for (i = 0; i < BLOCK_SIZES; ++i) in set_rt_speed_feature()
478 sf->use_square_only_threshold = BLOCK_SIZES; in vp9_set_speed_features_framesize_independent()
507 for (i = 0; i < BLOCK_SIZES; ++i) in vp9_set_speed_features_framesize_independent()
Dvp9_speed_features.h348 int intra_y_mode_bsize_mask[BLOCK_SIZES];
372 int inter_mode_mask[BLOCK_SIZES];
Dvp9_encoder.h254 int thresh_freq_fact[BLOCK_SIZES][MAX_MODES];
255 int mode_map[BLOCK_SIZES][MAX_MODES];
393 vp9_variance_fn_ptr_t fn_ptr[BLOCK_SIZES];
Dvp9_rd.h103 int threshes[MAX_SEGMENTS][BLOCK_SIZES][MAX_MODES];
Dvp9_rd.c65 static const uint8_t rd_thresh_block_size_factor[BLOCK_SIZES] = {
245 for (bsize = 0; bsize < BLOCK_SIZES; ++bsize) { in set_block_thresholds()
Dvp9_encodeframe.c2100 static const BLOCK_SIZE min_partition_size[BLOCK_SIZES] = {
2108 static const BLOCK_SIZE max_partition_size[BLOCK_SIZES] = {
2127 int bs_hist[BLOCK_SIZES]) { in get_sb_partition_size_range() argument
2147 static const BLOCK_SIZE next_square_size[BLOCK_SIZES] = {
2171 int bs_hist[BLOCK_SIZES] = {0}; in rd_auto_partition_range()
2296 const int num_16x16_blocks_wide_lookup[BLOCK_SIZES] =
2298 const int num_16x16_blocks_high_lookup[BLOCK_SIZES] =
2300 const int qindex_skip_threshold_lookup[BLOCK_SIZES] =
2302 const int qindex_split_threshold_lookup[BLOCK_SIZES] =
2304 const int complexity_16x16_blocks_threshold[BLOCK_SIZES] =
[all …]
/external/libvpx/libvpx/test/
Dvp9_subtract_test.cc42 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES; in TEST_P()