Home
last modified time | relevance | path

Searched refs:b_width_log2_lookup (Results 1 – 19 of 19) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_common_data.h21 extern const uint8_t b_width_log2_lookup[BLOCK_SIZES];
Dvp9_common_data.c15 const uint8_t b_width_log2_lookup[BLOCK_SIZES] = { 0, 0, 1, 1, 1, 2, 2, variable
Dvp9_onyxc_int.h428 assert(b_width_log2_lookup[bsize] == b_height_log2_lookup[bsize]); in partition_plane_context()
Dvp9_mfqe.c217 const int bsl = b_width_log2_lookup[bs]; in mfqe_partition()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_skin_detection.c27 const int y_width_shift = (4 << b_width_log2_lookup[bsize]) >> 1; in vp9_compute_skin_block()
49 const int y_bsize = 4 << b_width_log2_lookup[bsize]; in vp9_compute_skin_sb()
Dvp9_non_greedy_mv.c423 int bw = 4 << b_width_log2_lookup[bsize]; in vp9_get_smooth_motion_field()
463 const int bw = 4 << b_width_log2_lookup[bsize]; in vp9_get_local_structure()
Dvp9_pickmode.c319 const int nw = 1 << (bw - b_width_log2_lookup[unit_size]); in calculate_variance()
330 (b_width_log2_lookup[unit_size] + in calculate_variance()
415 vp9_predict_intra_block(xd, b_width_log2_lookup[bsize], tx_size, mode, in compute_intra_yprediction()
447 const int bw = b_width_log2_lookup[bsize]; in model_rd_for_sb_y_large()
568 const int uv_bw = b_width_log2_lookup[uv_bsize]; in model_rd_for_sb_y_large()
570 const int sf = (uv_bw - b_width_log2_lookup[unit_size]) + in model_rd_for_sb_y_large()
656 (b_width_log2_lookup[bsize] - b_width_log2_lookup[unit_size]) + in model_rd_for_sb_y()
965 8 - (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]); in encode_breakout_test()
1057 vp9_predict_intra_block(xd, b_width_log2_lookup[plane_bsize], tx_size, in estimate_block_intra()
1635 (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]); in search_new_mv()
[all …]
Dvp9_denoiser.c95 for (c = 0; c < (4 << b_width_log2_lookup[bs]); ++c) { in vp9_denoiser_filter_c()
150 for (c = 0; c < (4 << b_width_log2_lookup[bs]); ++c) { in vp9_denoiser_filter_c()
Dvp9_encodeframe.c939 const int bsl = b_width_log2_lookup[bsize]; in copy_partitioning_helper()
1014 const int bsl_high = b_width_log2_lookup[bsize]; in scale_partitioning_svc()
1067 const int bsl = b_width_log2_lookup[bsize]; in scale_partitioning_svc()
1113 const int bsl = b_width_log2_lookup[bsize]; in update_partition_svc()
1164 const int bsl = b_width_log2_lookup[bsize]; in update_prev_partition_helper()
2263 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; in encode_sb()
2601 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; in encode_sb_rt()
2672 const int bsl = b_width_log2_lookup[bsize]; in rd_use_partition()
3230 assert(b_width_log2_lookup[bsize] == b_height_log2_lookup[bsize]); in ml_pruning_partition()
3623 features[feature_idx++] = (float)b_width_log2_lookup[above_bsize]; in ml_predict_var_rd_paritioning()
[all …]
Dvp9_rdopt.c205 int bw = 1 << (b_width_log2_lookup[bs] - b_width_log2_lookup[unit_size]); in model_rd_for_sb()
206 int bh = 1 << (b_height_log2_lookup[bs] - b_width_log2_lookup[unit_size]); in model_rd_for_sb()
208 int lw = b_width_log2_lookup[unit_size] + 2; in model_rd_for_sb()
1647 const int bw = b_width_log2_lookup[BLOCK_8X8]; in encode_inter_mb_segment()
2542 2 * (b_width_log2_lookup[BLOCK_64X64] - in single_motion_search()
2543 VPXMIN(b_height_log2_lookup[bsize], b_width_log2_lookup[bsize])); in single_motion_search()
2548 int bwl = b_width_log2_lookup[bsize]; in single_motion_search()
Dvp9_rd.c643 const int bw = b_width_log2_lookup[plane_bsize]; in vp9_raster_block_offset()
Dvp9_mcomp.c2311 const int bw = 4 << b_width_log2_lookup[bsize]; in vp9_int_pro_motion_estimation()
2379 tmp_mv->col = vector_match(hbuf, src_hbuf, b_width_log2_lookup[bsize]); in vp9_int_pro_motion_estimation()
2442 (8 - (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize])); in get_exhaustive_threshold()
Dvp9_encodemb.c822 const int bwl = b_width_log2_lookup[plane_bsize]; in vp9_encode_block_intra()
Dvp9_bitstream.c432 const int bsl = b_width_log2_lookup[bsize]; in write_modes_sb()
Dvp9_encoder.c6049 int bw = 4 << b_width_log2_lookup[bsize];
6116 const int bw = 4 << b_width_log2_lookup[bsize];
6256 const int bw = 4 << b_width_log2_lookup[bsize];
6297 vp9_predict_intra_block(xd, b_width_log2_lookup[bsize], tx_size, mode, src,
/external/libvpx/libvpx/test/
Dvp9_denoiser_test.cc96 for (int w = 0; w < (4 << b_width_log2_lookup[bs_]); ++w) { in TEST_P()
/external/libvpx/libvpx/vp9/encoder/arm/neon/
Dvp9_denoiser_neon.c249 const int b_width = (4 << b_width_log2_lookup[bs]); in vp9_denoiser_NxM_neon()
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_denoiser_sse2.c231 const int b_width = (4 << b_width_log2_lookup[bs]); in vp9_denoiser_NxM_sse2_big()
/external/libaom/libaom/av1/encoder/
Dnonrd_pickmode.c475 static const uint8_t b_width_log2_lookup[BLOCK_SIZES] = { 0, 0, 1, 1, 1, 2, variable
509 const int nw = 1 << (bw - b_width_log2_lookup[unit_size]); in calculate_variance()
520 (b_width_log2_lookup[unit_size] + in calculate_variance()
558 const int bw = b_width_log2_lookup[bsize]; in model_skip_for_sb_y_large()
1856 sse_y >> (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]);