Searched refs:b_width_log2_lookup (Results 1 – 17 of 17) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_common_data.h | 21 extern const uint8_t b_width_log2_lookup[BLOCK_SIZES];
|
D | vp9_common_data.c | 15 const uint8_t b_width_log2_lookup[BLOCK_SIZES] = { 0, 0, 1, 1, 1, 2, 2, variable
|
D | vp9_onyxc_int.h | 408 assert(b_width_log2_lookup[bsize] == b_height_log2_lookup[bsize]); in partition_plane_context()
|
D | vp9_mfqe.c | 217 const int bsl = b_width_log2_lookup[bs]; in mfqe_partition()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_skin_detection.c | 27 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()
|
D | vp9_pickmode.c | 319 const int nw = 1 << (bw - b_width_log2_lookup[unit_size]); in calculate_variance() 330 (b_width_log2_lookup[unit_size] + in calculate_variance() 400 const int bw = b_width_log2_lookup[bsize]; in model_rd_for_sb_y_large() 521 const int uv_bw = b_width_log2_lookup[uv_bsize]; in model_rd_for_sb_y_large() 523 const int sf = (uv_bw - b_width_log2_lookup[unit_size]) + in model_rd_for_sb_y_large() 611 (b_width_log2_lookup[bsize] - b_width_log2_lookup[unit_size]) + in model_rd_for_sb_y() 929 8 - (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]); in encode_breakout_test() 1021 vp9_predict_intra_block(xd, b_width_log2_lookup[plane_bsize], tx_size, in estimate_block_intra() 1574 (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]); in search_new_mv() 2237 sse_y >> (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]); in vp9_pick_inter_mode()
|
D | vp9_denoiser.c | 95 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()
|
D | vp9_encodeframe.c | 880 const int bsl = b_width_log2_lookup[bsize]; in copy_partitioning_helper() 955 const int bsl_high = b_width_log2_lookup[bsize]; in scale_partitioning_svc() 1008 const int bsl = b_width_log2_lookup[bsize]; in scale_partitioning_svc() 1054 const int bsl = b_width_log2_lookup[bsize]; in update_partition_svc() 1105 const int bsl = b_width_log2_lookup[bsize]; in update_prev_partition_helper() 2178 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; in encode_sb() 2517 const int bsl = b_width_log2_lookup[bsize], hbs = (1 << bsl) / 4; in encode_sb_rt() 2587 const int bsl = b_width_log2_lookup[bsize]; in rd_use_partition() 3142 assert(b_width_log2_lookup[bsize] == b_height_log2_lookup[bsize]); in ml_pruning_partition() 3700 8 - (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize]); in rd_pick_partition() [all …]
|
D | vp9_rdopt.c | 198 int bw = 1 << (b_width_log2_lookup[bs] - b_width_log2_lookup[unit_size]); in model_rd_for_sb() 199 int bh = 1 << (b_height_log2_lookup[bs] - b_width_log2_lookup[unit_size]); in model_rd_for_sb() 201 int lw = b_width_log2_lookup[unit_size] + 2; in model_rd_for_sb() 1506 const int bw = b_width_log2_lookup[BLOCK_8X8]; in encode_inter_mb_segment() 2436 2 * (b_width_log2_lookup[BLOCK_64X64] - in single_motion_search() 2437 VPXMIN(b_height_log2_lookup[bsize], b_width_log2_lookup[bsize])); in single_motion_search() 2442 int bwl = b_width_log2_lookup[bsize]; in single_motion_search()
|
D | vp9_rd.c | 613 const int bw = b_width_log2_lookup[plane_bsize]; in vp9_raster_block_offset()
|
D | vp9_mcomp.c | 2138 const int bw = 4 << b_width_log2_lookup[bsize]; in vp9_int_pro_motion_estimation() 2206 tmp_mv->col = vector_match(hbuf, src_hbuf, b_width_log2_lookup[bsize]); in vp9_int_pro_motion_estimation() 2719 (8 - (b_width_log2_lookup[bsize] + b_height_log2_lookup[bsize])); in vp9_full_pixel_search()
|
D | vp9_encodemb.c | 767 const int bwl = b_width_log2_lookup[plane_bsize]; in vp9_encode_block_intra()
|
D | vp9_encoder.c | 5646 int bw = 4 << b_width_log2_lookup[bsize]; 5713 const int bw = 4 << b_width_log2_lookup[bsize]; 5878 const int bw = 4 << b_width_log2_lookup[bsize]; 5919 vp9_predict_intra_block(xd, b_width_log2_lookup[bsize], tx_size, mode, src, 6170 const int bw = 4 << b_width_log2_lookup[bsize];
|
D | vp9_bitstream.c | 427 const int bsl = b_width_log2_lookup[bsize]; in write_modes_sb()
|
/external/libvpx/libvpx/test/ |
D | vp9_denoiser_test.cc | 96 for (int w = 0; w < (4 << b_width_log2_lookup[bs_]); ++w) { in TEST_P()
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_denoiser_sse2.c | 231 const int b_width = (4 << b_width_log2_lookup[bs]); in vp9_denoiser_NxM_sse2_big()
|
/external/libvpx/libvpx/vp9/encoder/arm/neon/ |
D | vp9_denoiser_neon.c | 249 const int b_width = (4 << b_width_log2_lookup[bs]); in vp9_denoiser_NxM_neon()
|